From a60cd74ce442f9c2544f1b345eebf9b4d10ef55f Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Oct 29 2019 11:27:21 +0000 Subject: import abrt-2.1.11-57.el7 --- diff --git a/.abrt.metadata b/.abrt.metadata new file mode 100644 index 0000000..155025f --- /dev/null +++ b/.abrt.metadata @@ -0,0 +1 @@ +f48ed7d1deb2ebca94be387deb21ce1902910bf6 SOURCES/abrt-2.1.11.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..edbe2b8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +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/0042-vmcore-start-the-service-after-kdump-service.patch b/SOURCES/0042-vmcore-start-the-service-after-kdump-service.patch new file mode 100644 index 0000000..f6cb177 --- /dev/null +++ b/SOURCES/0042-vmcore-start-the-service-after-kdump-service.patch @@ -0,0 +1,30 @@ +From aa0151e852994dc4ac27a20e49e0db3ddaf5aad3 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 17 Apr 2014 17:20:48 +0200 +Subject: [ABRT PATCH 42/66] vmcore: start the service after kdump service + +kdump must be started first because it has to relabel the vmcore +directories. + +Resolves rhbz#1086642 + +Signed-off-by: Jakub Filak +--- + init-scripts/abrt-vmcore.service | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/init-scripts/abrt-vmcore.service b/init-scripts/abrt-vmcore.service +index 000f0e3..caa3134 100644 +--- a/init-scripts/abrt-vmcore.service ++++ b/init-scripts/abrt-vmcore.service +@@ -1,6 +1,6 @@ + [Unit] + Description=Harvest vmcores for ABRT +-After=abrtd.service ++After=abrtd.service kdump.service + Requisite=abrtd.service + ConditionDirectoryNotEmpty=/var/crash + +-- +1.8.3.1 + diff --git a/SOURCES/0043-configu-UI-use-glade-file-extension-instead-of-ui.patch b/SOURCES/0043-configu-UI-use-glade-file-extension-instead-of-ui.patch new file mode 100644 index 0000000..95dc903 --- /dev/null +++ b/SOURCES/0043-configu-UI-use-glade-file-extension-instead-of-ui.patch @@ -0,0 +1,791 @@ +From 88eebe6a15a640001795da35704e2a4cff9ddbc0 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 15 Apr 2014 09:18:47 +0200 +Subject: [ABRT PATCH 43/66] configu UI: use glade file extension instead of ui + +intltool recognizes translatable strings in XML UI files only if the +file has "glade" extension. + +Resolves rhbz#1087777 + +Signed-off-by: Jakub Filak +--- + po/POTFILES.in | 2 +- + src/configuration-gui/Makefile.am | 2 +- + src/configuration-gui/abrt-config-widget.c | 2 +- + src/configuration-gui/abrt-config-widget.glade | 358 +++++++++++++++++++++++++ + src/configuration-gui/abrt-config-widget.ui | 358 ------------------------- + 5 files changed, 361 insertions(+), 361 deletions(-) + create mode 100644 src/configuration-gui/abrt-config-widget.glade + delete mode 100644 src/configuration-gui/abrt-config-widget.ui + +diff --git a/po/POTFILES.in b/po/POTFILES.in +index 6d90162..2c36802 100644 +--- a/po/POTFILES.in ++++ b/po/POTFILES.in +@@ -3,7 +3,7 @@ + # Please keep this file sorted alphabetically. + src/applet/abrt-applet.desktop.in + src/applet/applet.c +-src/configuration-gui/abrt-config-widget.ui ++src/configuration-gui/abrt-config-widget.glade + src/configuration-gui/system-config-abrt.c + src/configuration-gui/main.c + src/daemon/abrt-action-save-package-data.c +diff --git a/src/configuration-gui/Makefile.am b/src/configuration-gui/Makefile.am +index 67b010d..4d20318 100644 +--- a/src/configuration-gui/Makefile.am ++++ b/src/configuration-gui/Makefile.am +@@ -56,7 +56,7 @@ system_config_abrt_LDADD = \ + $(GTK_LIBS) \ + $(LIBREPORT_LIBS) + +-dist_ui_DATA = abrt-config-widget.ui ++dist_ui_DATA = abrt-config-widget.glade + uidir = $(pkgdatadir)/ui + + EXTRA_DIST = abrt_gui.pc.in +diff --git a/src/configuration-gui/abrt-config-widget.c b/src/configuration-gui/abrt-config-widget.c +index 2c0ba9b..45eac95 100644 +--- a/src/configuration-gui/abrt-config-widget.c ++++ b/src/configuration-gui/abrt-config-widget.c +@@ -30,7 +30,7 @@ + + #define WID(s) GTK_WIDGET(gtk_builder_get_object(self->priv->builder, s)) + +-#define UI_FILE_NAME "abrt-config-widget.ui" ++#define UI_FILE_NAME "abrt-config-widget.glade" + + typedef struct { + char *app_name; +diff --git a/src/configuration-gui/abrt-config-widget.glade b/src/configuration-gui/abrt-config-widget.glade +new file mode 100644 +index 0000000..e470011 +--- /dev/null ++++ b/src/configuration-gui/abrt-config-widget.glade +@@ -0,0 +1,358 @@ ++ ++ ++ ++ ++ False ++ ++ ++ True ++ False ++ 10 ++ 10 ++ 10 ++ 10 ++ True ++ ++ ++ True ++ False ++ start ++ True ++ 10 ++ Ask before stealing directory ++ ++ ++ ++ ++ 0 ++ 1 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ start ++ True ++ 10 ++ Automatically send uReport ++ ++ ++ ++ ++ 0 ++ 3 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ True ++ end ++ center ++ 10 ++ ++ ++ 1 ++ 0 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ True ++ end ++ center ++ 10 ++ ++ ++ 1 ++ 1 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ True ++ end ++ center ++ 10 ++ ++ ++ 1 ++ 3 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ start ++ True ++ 10 ++ Shortened reporting ++ ++ ++ ++ ++ 0 ++ 4 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ True ++ end ++ center ++ 10 ++ ++ ++ 1 ++ 4 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ True ++ end ++ center ++ 10 ++ ++ ++ 1 ++ 5 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ start ++ True ++ 10 ++ Silent shortened reporting ++ ++ ++ ++ ++ 0 ++ 5 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ The coredump file is necessary for generating stack trace which is time and space consuming operation. ABRT provides a service which generates the stack trace from the coredump but you have to upload the coredump to this service. With this option disabled ABRT will upload the coredump without asking. ++ end ++ 5 ++ 1 ++ gtk-dialog-question ++ ++ ++ 2 ++ 0 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ ABRT stores problem data in directories. Whenever ABRT needs writable directory, the directory is moved from the system location to your home directory. With this option disabled ABRT will move the problem directory without asking. ++ end ++ 5 ++ gtk-dialog-question ++ ++ ++ 2 ++ 1 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ uReport is short and completely anonymous description of a problem. ABRT uses uReports for fast global duplicate detection. In default configuration uReport is sent at beginning of reporting process. With this option enabled uReports are sent automatically immediately after problem detection. ++ end ++ 5 ++ gtk-dialog-question ++ ++ ++ 2 ++ 3 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ With this option enabled reporting process started by click on Report button in problem notification bubble will be interrupted after uReport is sent. You can always use the default problem browser to make complete report. ++ end ++ 5 ++ gtk-dialog-question ++ ++ ++ 2 ++ 4 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ With this option enabled ABRT never shows notifications of reported problems. Takes effect only if Shortened reporting is enabled. ++ end ++ 5 ++ gtk-dialog-question ++ ++ ++ 2 ++ 5 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ start ++ True ++ 10 ++ Ask before uploading coredump ++ ++ ++ ++ ++ 0 ++ 0 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ With this option enabled ABRT always create bug ticket with restricted access if possibly sensitive data are dected. ++ end ++ 5 ++ gtk-dialog-question ++ ++ ++ 2 ++ 2 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ start ++ True ++ 10 ++ Request private ticket for sensitive information ++ ++ ++ 0 ++ 2 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ True ++ end ++ center ++ 10 ++ ++ ++ 1 ++ 2 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ start ++ True ++ 10 ++ Notify incomplete problems ++ ++ ++ 0 ++ 6 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ True ++ end ++ center ++ 10 ++ ++ ++ 1 ++ 6 ++ 1 ++ 1 ++ ++ ++ ++ ++ True ++ False ++ Incomplete problems are detected while computer is shutting down or user is logging out. In order to provide valuable problem reports, ABRT will not allow you to submit these problems. ++ end ++ 5 ++ gtk-dialog-question ++ ++ ++ 2 ++ 6 ++ 1 ++ 1 ++ ++ ++ ++ ++ ++ +diff --git a/src/configuration-gui/abrt-config-widget.ui b/src/configuration-gui/abrt-config-widget.ui +deleted file mode 100644 +index e470011..0000000 +--- a/src/configuration-gui/abrt-config-widget.ui ++++ /dev/null +@@ -1,358 +0,0 @@ +- +- +- +- +- False +- +- +- True +- False +- 10 +- 10 +- 10 +- 10 +- True +- +- +- True +- False +- start +- True +- 10 +- Ask before stealing directory +- +- +- +- +- 0 +- 1 +- 1 +- 1 +- +- +- +- +- True +- False +- start +- True +- 10 +- Automatically send uReport +- +- +- +- +- 0 +- 3 +- 1 +- 1 +- +- +- +- +- True +- True +- end +- center +- 10 +- +- +- 1 +- 0 +- 1 +- 1 +- +- +- +- +- True +- True +- end +- center +- 10 +- +- +- 1 +- 1 +- 1 +- 1 +- +- +- +- +- True +- True +- end +- center +- 10 +- +- +- 1 +- 3 +- 1 +- 1 +- +- +- +- +- True +- False +- start +- True +- 10 +- Shortened reporting +- +- +- +- +- 0 +- 4 +- 1 +- 1 +- +- +- +- +- True +- True +- end +- center +- 10 +- +- +- 1 +- 4 +- 1 +- 1 +- +- +- +- +- True +- True +- end +- center +- 10 +- +- +- 1 +- 5 +- 1 +- 1 +- +- +- +- +- True +- False +- start +- True +- 10 +- Silent shortened reporting +- +- +- +- +- 0 +- 5 +- 1 +- 1 +- +- +- +- +- True +- False +- The coredump file is necessary for generating stack trace which is time and space consuming operation. ABRT provides a service which generates the stack trace from the coredump but you have to upload the coredump to this service. With this option disabled ABRT will upload the coredump without asking. +- end +- 5 +- 1 +- gtk-dialog-question +- +- +- 2 +- 0 +- 1 +- 1 +- +- +- +- +- True +- False +- ABRT stores problem data in directories. Whenever ABRT needs writable directory, the directory is moved from the system location to your home directory. With this option disabled ABRT will move the problem directory without asking. +- end +- 5 +- gtk-dialog-question +- +- +- 2 +- 1 +- 1 +- 1 +- +- +- +- +- True +- False +- uReport is short and completely anonymous description of a problem. ABRT uses uReports for fast global duplicate detection. In default configuration uReport is sent at beginning of reporting process. With this option enabled uReports are sent automatically immediately after problem detection. +- end +- 5 +- gtk-dialog-question +- +- +- 2 +- 3 +- 1 +- 1 +- +- +- +- +- True +- False +- With this option enabled reporting process started by click on Report button in problem notification bubble will be interrupted after uReport is sent. You can always use the default problem browser to make complete report. +- end +- 5 +- gtk-dialog-question +- +- +- 2 +- 4 +- 1 +- 1 +- +- +- +- +- True +- False +- With this option enabled ABRT never shows notifications of reported problems. Takes effect only if Shortened reporting is enabled. +- end +- 5 +- gtk-dialog-question +- +- +- 2 +- 5 +- 1 +- 1 +- +- +- +- +- True +- False +- start +- True +- 10 +- Ask before uploading coredump +- +- +- +- +- 0 +- 0 +- 1 +- 1 +- +- +- +- +- True +- False +- With this option enabled ABRT always create bug ticket with restricted access if possibly sensitive data are dected. +- end +- 5 +- gtk-dialog-question +- +- +- 2 +- 2 +- 1 +- 1 +- +- +- +- +- True +- False +- start +- True +- 10 +- Request private ticket for sensitive information +- +- +- 0 +- 2 +- 1 +- 1 +- +- +- +- +- True +- True +- end +- center +- 10 +- +- +- 1 +- 2 +- 1 +- 1 +- +- +- +- +- True +- False +- start +- True +- 10 +- Notify incomplete problems +- +- +- 0 +- 6 +- 1 +- 1 +- +- +- +- +- True +- True +- end +- center +- 10 +- +- +- 1 +- 6 +- 1 +- 1 +- +- +- +- +- True +- False +- Incomplete problems are detected while computer is shutting down or user is logging out. In order to provide valuable problem reports, ABRT will not allow you to submit these problems. +- end +- 5 +- gtk-dialog-question +- +- +- 2 +- 6 +- 1 +- 1 +- +- +- +- +- +- +-- +1.8.3.1 + diff --git a/SOURCES/0044-localization-fixes.patch b/SOURCES/0044-localization-fixes.patch new file mode 100644 index 0000000..8931205 --- /dev/null +++ b/SOURCES/0044-localization-fixes.patch @@ -0,0 +1,756 @@ +From 40823feb83cc2a7ad7aac8fb0da1ff7c0773eb2a Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 14 Jul 2014 16:06:17 +0200 +Subject: [ABRT PATCH 44/66] localization fixes + +commit fc0f32d878bb93e7498340224281fa526b4aeaf7 +Author: Jakub Filak +Date: Wed Apr 16 12:03:31 2014 +0200 + + localization: fix gettext + + https://www.gnu.org/software/gettext/manual/html_node/Libraries.html + +commit f8533576b349f346acafdc7c0182a995a569a443 +Author: Jakub Filak +Date: Wed Apr 16 21:08:29 2014 +0200 + + do not clear LANG env variable + abrt-action-install-debuginfo-to-abrt-cache + +commit d05e231eaf05dc6680be031741d1d7593445f70d +Author: Jakub Filak +Date: Wed Apr 16 21:13:44 2014 +0200 + + a-a-a-core: fix localization + + The strings of that file are not translated at all because + the file was not included in POTFILES.in + +Resolves rhbz#1087880 + +Signed-off-by: Jakub Filak +--- + po/POTFILES.in | 1 + + src/configuration-gui/system-config-abrt.c | 4 +- + src/include/Makefile.am | 3 + + src/include/internal_libabrt.h | 50 ++++++ + src/include/libabrt.h | 15 -- + src/lib/Makefile.am | 3 + + src/lib/hooklib.c | 4 +- + src/lib/ignored_problems.c | 4 +- + src/lib/libabrt_init.c | 28 ++++ + src/lib/problem_api_dbus.c | 10 +- + src/plugins/Makefile.am | 8 +- + src/plugins/abrt-action-analyze-core | 186 --------------------- + src/plugins/abrt-action-analyze-core.in | 186 +++++++++++++++++++++ + .../abrt-action-install-debuginfo-to-abrt-cache.c | 3 +- + 14 files changed, 298 insertions(+), 207 deletions(-) + create mode 100644 src/include/internal_libabrt.h + create mode 100644 src/lib/libabrt_init.c + delete mode 100644 src/plugins/abrt-action-analyze-core + create mode 100644 src/plugins/abrt-action-analyze-core.in + +diff --git a/po/POTFILES.in b/po/POTFILES.in +index 2c36802..ff9b97a 100644 +--- a/po/POTFILES.in ++++ b/po/POTFILES.in +@@ -21,6 +21,7 @@ src/lib/problem_api_dbus.c + src/lib/ignored_problems.c + src/plugins/abrt-action-analyze-backtrace.c + src/plugins/abrt-action-analyze-c.c ++src/plugins/abrt-action-analyze-core.in + src/plugins/abrt-action-analyze-oops.c + src/plugins/abrt-action-analyze-xorg.c + src/plugins/abrt-action-analyze-python.c +diff --git a/src/configuration-gui/system-config-abrt.c b/src/configuration-gui/system-config-abrt.c +index b15a5ef..bd9f13f 100644 +--- a/src/configuration-gui/system-config-abrt.c ++++ b/src/configuration-gui/system-config-abrt.c +@@ -18,7 +18,7 @@ + #include "system-config-abrt.h" + #include "abrt-config-widget.h" + +-#include ++#include "internal_libabrt.h" + + #define CLOSE_BUTTON_DATA_NAME_CALLBACK "my-close-callback" + #define CLOSE_BUTTON_DATA_NAME_USER_DATA "my-close-user-data" +@@ -105,6 +105,8 @@ system_config_abrt_dialog_delete_event(GtkWidget *dialog, GdkEvent *event, gpoin + + void show_system_config_abrt_dialog(GtkWindow *parent) + { ++ INITIALIZE_LIBABRT(); ++ + GtkWidget *dialog = gtk_dialog_new(); + + gtk_window_set_title(GTK_WINDOW(dialog), _("Problem Reporting Configuration")); +diff --git a/src/include/Makefile.am b/src/include/Makefile.am +index 49a6f5c..c1952cb 100644 +--- a/src/include/Makefile.am ++++ b/src/include/Makefile.am +@@ -6,3 +6,6 @@ libabrt_include_HEADERS = \ + abrt-dbus.h \ + hooklib.h \ + problem_api.h ++ ++EXTRA_DIST = \ ++ internal_libabrt.h +diff --git a/src/include/internal_libabrt.h b/src/include/internal_libabrt.h +new file mode 100644 +index 0000000..3ad22fc +--- /dev/null ++++ b/src/include/internal_libabrt.h +@@ -0,0 +1,50 @@ ++/* ++ Copyright (C) 2014 ABRT team ++ Copyright (C) 2014 RedHat Inc ++ ++ 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. ++*/ ++ ++#include "libabrt.h" ++ ++#ifdef HAVE_CONFIG_H ++# include "config.h" ++#endif ++ ++#undef NORETURN ++#define NORETURN __attribute__ ((noreturn)) ++ ++/* Must be after #include "config.h" */ ++#if ENABLE_NLS ++# include ++# define _(S) dgettext(PACKAGE, S) ++#else ++# define _(S) (S) ++#endif ++ ++extern int g_libabrt_inited; ++void libabrt_init(void); ++ ++#define INITIALIZE_LIBABRT() \ ++ do \ ++ { \ ++ if (!g_libabrt_inited) \ ++ { \ ++ g_libabrt_inited = 1; \ ++ libabrt_init(); \ ++ } \ ++ } \ ++ while (0) ++ +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index d5911e7..3e42a09 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -15,21 +15,6 @@ + #include + #include "hooklib.h" + +-#ifdef HAVE_CONFIG_H +-# include "config.h" +-#endif +- +-/* Must be after #include "config.h" */ +-#if ENABLE_NLS +-# include +-# define _(S) gettext(S) +-#else +-# define _(S) (S) +-#endif +- +-#undef NORETURN +-#define NORETURN __attribute__ ((noreturn)) +- + #undef ARRAY_SIZE + #define ARRAY_SIZE(x) ((unsigned)(sizeof(x) / sizeof((x)[0]))) + +diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am +index 5c281d2..32a054a 100644 +--- a/src/lib/Makefile.am ++++ b/src/lib/Makefile.am +@@ -5,6 +5,7 @@ lib_LTLIBRARIES = \ + libabrt.la + + libabrt_la_SOURCES = \ ++ libabrt_init.c \ + abrt_conf.c \ + hooklib.c \ + daemon_is_ok.c \ +@@ -40,3 +41,5 @@ libabrt_la_LIBADD = \ + $(GIO_LIBS) \ + $(LIBREPORT_LIBS) \ + $(SATYR_LIBS) ++ ++DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index 23447df..4a50727 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -16,7 +16,7 @@ + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + #include +-#include "libabrt.h" ++#include "internal_libabrt.h" + + int low_free_space(unsigned setting_MaxCrashReportsSize, const char *dump_location) + { +@@ -241,6 +241,8 @@ char *run_unstrip_n(const char *dump_dir_name, unsigned timeout_sec) + + char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char *debuginfo_dirs) + { ++ INITIALIZE_LIBABRT(); ++ + struct dump_dir *dd = dd_opendir(dump_dir_name, /*flags:*/ 0); + if (!dd) + return NULL; +diff --git a/src/lib/ignored_problems.c b/src/lib/ignored_problems.c +index df138d8..7779c4c 100644 +--- a/src/lib/ignored_problems.c ++++ b/src/lib/ignored_problems.c +@@ -17,7 +17,7 @@ + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +-#include "libabrt.h" ++#include "internal_libabrt.h" + + #define IGN_COLUMN_DELIMITER ';' + #define IGN_DD_OPEN_FLAGS (DD_OPEN_READONLY | DD_FAIL_QUIETLY_ENOENT | DD_FAIL_QUIETLY_EACCES) +@@ -193,6 +193,8 @@ void ignored_problems_add(ignored_problems_t *set, const char *problem_id) + void ignored_problems_remove_row(ignored_problems_t *set, const char *problem_id, + const char *uuid, const char *duphash) + { ++ INITIALIZE_LIBABRT(); ++ + VERB1 log("Going to remove problem '%s' from ignored problems", problem_id); + + FILE *orig_fp; +diff --git a/src/lib/libabrt_init.c b/src/lib/libabrt_init.c +new file mode 100644 +index 0000000..f9c1449 +--- /dev/null ++++ b/src/lib/libabrt_init.c +@@ -0,0 +1,28 @@ ++/* ++ Copyright (C) 2014 ABRT team ++ Copyright (C) 2014 RedHat Inc ++ ++ 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. ++*/ ++#include "internal_libabrt.h" ++ ++int g_libabrt_inited; ++ ++void libabrt_init(void) ++{ ++#if ENABLE_NLS ++ bindtextdomain(PACKAGE, LOCALEDIR); ++#endif ++} +diff --git a/src/lib/problem_api_dbus.c b/src/lib/problem_api_dbus.c +index 784a43f..2d77898 100644 +--- a/src/lib/problem_api_dbus.c ++++ b/src/lib/problem_api_dbus.c +@@ -18,7 +18,7 @@ + */ + + #include "abrt_glib.h" +-#include "libabrt.h" ++#include "internal_libabrt.h" + + static GDBusProxy *get_dbus_proxy(void) + { +@@ -48,6 +48,8 @@ static GDBusProxy *get_dbus_proxy(void) + + int chown_dir_over_dbus(const char *problem_dir_path) + { ++ INITIALIZE_LIBABRT(); ++ + GDBusProxy *proxy = get_dbus_proxy(); + if (!proxy) + return 1; +@@ -72,6 +74,8 @@ int chown_dir_over_dbus(const char *problem_dir_path) + + int delete_problem_dirs_over_dbus(const GList *problem_dir_paths) + { ++ INITIALIZE_LIBABRT(); ++ + GDBusProxy *proxy = get_dbus_proxy(); + if (!proxy) + return 1; +@@ -99,6 +103,8 @@ int delete_problem_dirs_over_dbus(const GList *problem_dir_paths) + + problem_data_t *get_problem_data_dbus(const char *problem_dir_path) + { ++ INITIALIZE_LIBABRT(); ++ + GDBusProxy *proxy = get_dbus_proxy(); + if (!proxy) + return NULL; +@@ -143,6 +149,8 @@ problem_data_t *get_problem_data_dbus(const char *problem_dir_path) + + GList *get_problems_over_dbus(bool authorize) + { ++ INITIALIZE_LIBABRT(); ++ + GDBusProxy *proxy = get_dbus_proxy(); + if (!proxy) + return ERR_PTR; +diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am +index dd32c7d..727dae0 100644 +--- a/src/plugins/Makefile.am ++++ b/src/plugins/Makefile.am +@@ -89,6 +89,7 @@ EXTRA_DIST = \ + analyze_LocalGDB.xml.in \ + analyze_RetraceServer.xml.in \ + analyze_VMcore.xml.in \ ++ abrt-action-analyze-core.in \ + abrt-action-analyze-vmcore \ + abrt-action-check-oops-for-hw-error \ + abrt-action-save-kernel-data \ +@@ -306,7 +307,7 @@ endif + + DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ + +-DISTCLEANFILES = abrt-action-analyze-ccpp-local ++DISTCLEANFILES = abrt-action-analyze-ccpp-local abrt-action-analyze-core + + abrt-action-perform-ccpp-analysis: abrt-action-perform-ccpp-analysis.in + sed -e s,\@libexecdir\@,$(libexecdir),g \ +@@ -315,3 +316,8 @@ abrt-action-perform-ccpp-analysis: abrt-action-perform-ccpp-analysis.in + abrt-action-analyze-ccpp-local: abrt-action-analyze-ccpp-local.in + sed -e s,\@LIBEXEC_DIR\@,$(libexecdir),g \ + $< >$@ ++ ++abrt-action-analyze-core: abrt-action-analyze-core.in ++ sed -e s,\@localedir\@,$(localedir),g \ ++ -e s,\@PACKAGE\@,$(PACKAGE),g \ ++ $< >$@ +diff --git a/src/plugins/abrt-action-analyze-core b/src/plugins/abrt-action-analyze-core +deleted file mode 100644 +index 806cc26..0000000 +--- a/src/plugins/abrt-action-analyze-core ++++ /dev/null +@@ -1,186 +0,0 @@ +-#!/usr/bin/python -u +-# -*- coding: utf-8 -*- +-# WARNING: python -u means unbuffered I/O. Without it the messages are +-# passed to the parent asynchronously which looks bad in clients. +- +-from subprocess import Popen, PIPE +-import sys +-import os +-import getopt +- +-GETTEXT_PROGNAME = "abrt" +-import locale +-import gettext +- +-_ = lambda x: gettext.lgettext(x) +- +- +-verbose = 0 +- +-def log(s): +- sys.stderr.write("%s\n" % s) +- +-def log1(message): +- if verbose > 0: +- log(message) +- +-def log2(message): +- if verbose > 1: +- log(message) +- +-def error_msg(s): +- sys.stderr.write("%s\n" % s) +- +-def error_msg_and_die(s): +- sys.stderr.write("%s\n" % s) +- sys.exit(1) +- +-def xopen(name, mode): +- try: +- r = open(name, mode) +- except IOError, ex: +- error_msg_and_die("Can't open '%s': %s" % (name, ex)) +- return r +- +- +-def init_gettext(): +- 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) +- +-#eu_unstrip_OUT=`eu-unstrip "--core=$core" -n 2>eu_unstrip.ERR` +-def extract_info_from_core(coredump_name): +- """ +- Extracts builds with filenames, +- Returns a list of tuples (build_id, filename) +- """ +- #OFFSET = 0 +- BUILD_ID = 1 +- LIBRARY = 2 +- #SEP = 3 +- EXECUTABLE = 4 +- +- log(_("Analyzing coredump '%s'") % coredump_name) +- eu_unstrip_OUT = Popen(["eu-unstrip","--core=%s" % coredump_name, "-n"], stdout=PIPE, bufsize=-1).communicate()[0] +- # parse eu_unstrip_OUT and return the list of build_ids +- +- # eu_unstrip_OUT = ( +- # "0x7f42362ca000+0x204000 c4d35d993598a6242f7525d024b5ec3becf5b447@0x7f42362ca1a0 /usr/lib64/libcanberra-gtk.so.0 - libcanberra-gtk.so.0\n" +- # "0x3afa400000+0x210000 607308f916c13c3ad9ee503008d31fa671ba73ce@0x3afa4001a0 /usr/lib64/libcanberra.so.0 - libcanberra.so.0\n" +- # "0x3afa400000+0x210000 607308f916c13c3ad9ee503008d31fa671ba73ce@0x3afa4001a0 /usr/lib64/libcanberra.so.0 - libcanberra.so.0\n" +- # "0x3bc7000000+0x208000 3be016bb723e85779a23e111a8ab1a520b209422@0x3bc70001a0 /usr/lib64/libvorbisfile.so.3 - libvorbisfile.so.3\n" +- # "0x7f423609e000+0x22c000 87f9c7d9844f364c73aa2566d6cfc9c5fa36d35d@0x7f423609e1a0 /usr/lib64/libvorbis.so.0 - libvorbis.so.0\n" +- # "0x7f4235e99000+0x205000 b5bc98c125a11b571cf4f2746268a6d3cfa95b68@0x7f4235e991a0 /usr/lib64/libogg.so.0 - libogg.so.0\n" +- # "0x7f4235c8b000+0x20e000 f1ff6c8ee30dba27e90ef0c5b013df2833da2889@0x7f4235c8b1a0 /usr/lib64/libtdb.so.1 - libtdb.so.1\n" +- # "0x3bc3000000+0x209000 8ef56f789fd914e8d0678eb0cdfda1bfebb00b40@0x3bc30001a0 /usr/lib64/libltdl.so.7 - libltdl.so.7\n" +- # "0x7f4231b64000+0x22b000 3ca5b83798349f78b362b1ea51c8a4bc8114b8b1@0x7f4231b641a0 /usr/lib64/gio/modules/libgvfsdbus.so - libgvfsdbus.so\n" +- # "0x7f423192a000+0x218000 ad024a01ad132737a8cfc7c95beb7c77733a652d@0x7f423192a1a0 /usr/lib64/libgvfscommon.so.0 - libgvfscommon.so.0\n" +- # "0x7f423192a000+0x218000 ad024a01ad132737a8cfc7c95beb7c77733a652d@0x7f423192a1a0 /usr/lib64/libgvfscommon.so.0 - libgvfscommon.so.0\n" +- # "0x3bb8e00000+0x20e000 d240ac5755184a95c783bb98a2d05530e0cf958a@0x3bb8e001a0 /lib64/libudev.so.0 - libudev.so.0\n" +- # ) +- #print eu_unstrip_OUT +- # we failed to get build ids from the core -> die +- if not eu_unstrip_OUT: +- error_msg_and_die("Can't get build ids from %s" % coredump_name) +- +- lines = eu_unstrip_OUT.split('\n') +- # using set ensures the unique values +- build_ids = set() +- libraries = set() +- +- for line in lines: +- b_ids_line = line.split() +- if len(b_ids_line) >= EXECUTABLE: +- # [exe] -> the executable itself +- # linux-vdso.so.1 -> Virtual Dynamic Shared Object +- # linux-gate.so.1 -> the same as vdso +- # See https://bugzilla.redhat.com/show_bug.cgi?id=706969 +- # "Please split kernel debuginfo packages so that VDSO debuginfos are separate" - +- # we might want to remove this special-casing later. +- if b_ids_line[BUILD_ID] == '-': +- log(_("Missing build id: %s" % b_ids_line[EXECUTABLE])) +- elif ((len(b_ids_line) == EXECUTABLE) or (b_ids_line[EXECUTABLE] not in ["linux-vdso.so.1", "linux-gate.so.1"])): +- build_id = b_ids_line[BUILD_ID].split('@')[0] +- build_ids.add(build_id) +- library = b_ids_line[LIBRARY] +- libraries.add(library) +- else: +- log2("skipping line '%s'" % line) +- log1("Found %i build_ids" % len(build_ids)) +- log1("Found %i libs" % len(libraries)) +- return build_ids +- +-def build_ids_to_path(build_ids): +- """ +- build_id1=${build_id:0:2} +- build_id2=${build_id:2} +- file="usr/lib/debug/.build-id/$build_id1/$build_id2.debug" +- """ +- return ["/usr/lib/debug/.build-id/%s/%s.debug" % (b_id[:2], b_id[2:]) for b_id in build_ids] +- +-if __name__ == "__main__": +- # localization +- init_gettext() +- +- ABRT_VERBOSE = os.getenv("ABRT_VERBOSE") +- if (ABRT_VERBOSE): +- try: +- verbose = int(ABRT_VERBOSE) +- except: +- pass +- +- progname = os.path.basename(sys.argv[0]) +- help_text = _("Usage: %s [-v] [-o OUTFILE] -c COREFILE") % progname +- try: +- opts, args = getopt.getopt(sys.argv[1:], "vhc:o:", ["help", "core="]) +- except getopt.GetoptError, err: +- error_msg(err) # prints something like "option -a not recognized" +- error_msg_and_die(help_text) +- +- core = None +- opt_o = None +- +- for opt, arg in opts: +- if opt in ("-h", "--help"): +- print help_text +- exit(0) +- elif opt == "-v": +- verbose += 1 +- elif opt == "-o": +- opt_o = arg +- elif opt in ("-c", "--core"): +- core = arg +- +- if not core: +- error_msg(_("COREFILE is not specified")) +- error_msg_and_die(help_text) +- +- b_ids = extract_info_from_core(core) +- +- try: +- # Note that we open -o FILE only when we reach the point +- # when we are definitely going to write something to it +- outfile = sys.stdout +- outname = opt_o +- # Make sure the file is readable for all +- oldmask = os.umask(0002) +- for bid in b_ids: +- if outname: +- outfile = xopen(outname, "w") +- outname = None +- outfile.write("%s\n" % bid) +- outfile.close() +- os.umask(oldmask) +- except IOError, e: +- if not opt_o: +- opt_o = "" +- error_msg_and_die("Error writing to '%s': %s" % (opt_o, e)) +diff --git a/src/plugins/abrt-action-analyze-core.in b/src/plugins/abrt-action-analyze-core.in +new file mode 100644 +index 0000000..0185ac5 +--- /dev/null ++++ b/src/plugins/abrt-action-analyze-core.in +@@ -0,0 +1,186 @@ ++#!/usr/bin/python -u ++# -*- coding: utf-8 -*- ++# WARNING: python -u means unbuffered I/O. Without it the messages are ++# passed to the parent asynchronously which looks bad in clients. ++ ++from subprocess import Popen, PIPE ++import sys ++import os ++import getopt ++ ++GETTEXT_PROGNAME = "@PACKAGE@" ++import locale ++import gettext ++ ++_ = lambda x: gettext.lgettext(x) ++ ++ ++verbose = 0 ++ ++def log(s): ++ sys.stderr.write("%s\n" % s) ++ ++def log1(message): ++ if verbose > 0: ++ log(message) ++ ++def log2(message): ++ if verbose > 1: ++ log(message) ++ ++def error_msg(s): ++ sys.stderr.write("%s\n" % s) ++ ++def error_msg_and_die(s): ++ sys.stderr.write("%s\n" % s) ++ sys.exit(1) ++ ++def xopen(name, mode): ++ try: ++ r = open(name, mode) ++ except IOError, ex: ++ error_msg_and_die("Can't open '%s': %s" % (name, ex)) ++ return r ++ ++ ++def init_gettext(): ++ 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, "@localedir@") ++ gettext.textdomain(GETTEXT_PROGNAME) ++ ++#eu_unstrip_OUT=`eu-unstrip "--core=$core" -n 2>eu_unstrip.ERR` ++def extract_info_from_core(coredump_name): ++ """ ++ Extracts builds with filenames, ++ Returns a list of tuples (build_id, filename) ++ """ ++ #OFFSET = 0 ++ BUILD_ID = 1 ++ LIBRARY = 2 ++ #SEP = 3 ++ EXECUTABLE = 4 ++ ++ log(_("Analyzing coredump '%s'") % coredump_name) ++ eu_unstrip_OUT = Popen(["eu-unstrip","--core=%s" % coredump_name, "-n"], stdout=PIPE, bufsize=-1).communicate()[0] ++ # parse eu_unstrip_OUT and return the list of build_ids ++ ++ # eu_unstrip_OUT = ( ++ # "0x7f42362ca000+0x204000 c4d35d993598a6242f7525d024b5ec3becf5b447@0x7f42362ca1a0 /usr/lib64/libcanberra-gtk.so.0 - libcanberra-gtk.so.0\n" ++ # "0x3afa400000+0x210000 607308f916c13c3ad9ee503008d31fa671ba73ce@0x3afa4001a0 /usr/lib64/libcanberra.so.0 - libcanberra.so.0\n" ++ # "0x3afa400000+0x210000 607308f916c13c3ad9ee503008d31fa671ba73ce@0x3afa4001a0 /usr/lib64/libcanberra.so.0 - libcanberra.so.0\n" ++ # "0x3bc7000000+0x208000 3be016bb723e85779a23e111a8ab1a520b209422@0x3bc70001a0 /usr/lib64/libvorbisfile.so.3 - libvorbisfile.so.3\n" ++ # "0x7f423609e000+0x22c000 87f9c7d9844f364c73aa2566d6cfc9c5fa36d35d@0x7f423609e1a0 /usr/lib64/libvorbis.so.0 - libvorbis.so.0\n" ++ # "0x7f4235e99000+0x205000 b5bc98c125a11b571cf4f2746268a6d3cfa95b68@0x7f4235e991a0 /usr/lib64/libogg.so.0 - libogg.so.0\n" ++ # "0x7f4235c8b000+0x20e000 f1ff6c8ee30dba27e90ef0c5b013df2833da2889@0x7f4235c8b1a0 /usr/lib64/libtdb.so.1 - libtdb.so.1\n" ++ # "0x3bc3000000+0x209000 8ef56f789fd914e8d0678eb0cdfda1bfebb00b40@0x3bc30001a0 /usr/lib64/libltdl.so.7 - libltdl.so.7\n" ++ # "0x7f4231b64000+0x22b000 3ca5b83798349f78b362b1ea51c8a4bc8114b8b1@0x7f4231b641a0 /usr/lib64/gio/modules/libgvfsdbus.so - libgvfsdbus.so\n" ++ # "0x7f423192a000+0x218000 ad024a01ad132737a8cfc7c95beb7c77733a652d@0x7f423192a1a0 /usr/lib64/libgvfscommon.so.0 - libgvfscommon.so.0\n" ++ # "0x7f423192a000+0x218000 ad024a01ad132737a8cfc7c95beb7c77733a652d@0x7f423192a1a0 /usr/lib64/libgvfscommon.so.0 - libgvfscommon.so.0\n" ++ # "0x3bb8e00000+0x20e000 d240ac5755184a95c783bb98a2d05530e0cf958a@0x3bb8e001a0 /lib64/libudev.so.0 - libudev.so.0\n" ++ # ) ++ #print eu_unstrip_OUT ++ # we failed to get build ids from the core -> die ++ if not eu_unstrip_OUT: ++ error_msg_and_die("Can't get build ids from %s" % coredump_name) ++ ++ lines = eu_unstrip_OUT.split('\n') ++ # using set ensures the unique values ++ build_ids = set() ++ libraries = set() ++ ++ for line in lines: ++ b_ids_line = line.split() ++ if len(b_ids_line) >= EXECUTABLE: ++ # [exe] -> the executable itself ++ # linux-vdso.so.1 -> Virtual Dynamic Shared Object ++ # linux-gate.so.1 -> the same as vdso ++ # See https://bugzilla.redhat.com/show_bug.cgi?id=706969 ++ # "Please split kernel debuginfo packages so that VDSO debuginfos are separate" - ++ # we might want to remove this special-casing later. ++ if b_ids_line[BUILD_ID] == '-': ++ log(_("Missing build id: %s" % b_ids_line[EXECUTABLE])) ++ elif ((len(b_ids_line) == EXECUTABLE) or (b_ids_line[EXECUTABLE] not in ["linux-vdso.so.1", "linux-gate.so.1"])): ++ build_id = b_ids_line[BUILD_ID].split('@')[0] ++ build_ids.add(build_id) ++ library = b_ids_line[LIBRARY] ++ libraries.add(library) ++ else: ++ log2("skipping line '%s'" % line) ++ log1("Found %i build_ids" % len(build_ids)) ++ log1("Found %i libs" % len(libraries)) ++ return build_ids ++ ++def build_ids_to_path(build_ids): ++ """ ++ build_id1=${build_id:0:2} ++ build_id2=${build_id:2} ++ file="usr/lib/debug/.build-id/$build_id1/$build_id2.debug" ++ """ ++ return ["/usr/lib/debug/.build-id/%s/%s.debug" % (b_id[:2], b_id[2:]) for b_id in build_ids] ++ ++if __name__ == "__main__": ++ # localization ++ init_gettext() ++ ++ ABRT_VERBOSE = os.getenv("ABRT_VERBOSE") ++ if (ABRT_VERBOSE): ++ try: ++ verbose = int(ABRT_VERBOSE) ++ except: ++ pass ++ ++ progname = os.path.basename(sys.argv[0]) ++ help_text = _("Usage: %s [-v] [-o OUTFILE] -c COREFILE") % progname ++ try: ++ opts, args = getopt.getopt(sys.argv[1:], "vhc:o:", ["help", "core="]) ++ except getopt.GetoptError, err: ++ error_msg(err) # prints something like "option -a not recognized" ++ error_msg_and_die(help_text) ++ ++ core = None ++ opt_o = None ++ ++ for opt, arg in opts: ++ if opt in ("-h", "--help"): ++ print help_text ++ exit(0) ++ elif opt == "-v": ++ verbose += 1 ++ elif opt == "-o": ++ opt_o = arg ++ elif opt in ("-c", "--core"): ++ core = arg ++ ++ if not core: ++ error_msg(_("COREFILE is not specified")) ++ error_msg_and_die(help_text) ++ ++ b_ids = extract_info_from_core(core) ++ ++ try: ++ # Note that we open -o FILE only when we reach the point ++ # when we are definitely going to write something to it ++ outfile = sys.stdout ++ outname = opt_o ++ # Make sure the file is readable for all ++ oldmask = os.umask(0002) ++ for bid in b_ids: ++ if outname: ++ outfile = xopen(outname, "w") ++ outname = None ++ outfile.write("%s\n" % bid) ++ outfile.close() ++ os.umask(oldmask) ++ except IOError, e: ++ if not opt_o: ++ opt_o = "" ++ error_msg_and_die("Error writing to '%s': %s" % (opt_o, e)) +diff --git a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +index cf74326..e0eccc0 100644 +--- a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c ++++ b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +@@ -74,7 +74,8 @@ int main(int argc, char **argv) + // However since we communicate through environment variables + // we have to keep a whitelist of variables to keep. + static const char *whitelist[] = { +- "REPORT_CLIENT_SLAVE" // Check if the app is being run as a slave ++ "REPORT_CLIENT_SLAVE", // Check if the app is being run as a slave ++ "LANG", + }; + const size_t wlsize = sizeof(whitelist)/sizeof(char*); + char *setlist[sizeof(whitelist)/sizeof(char*)] = { 0 }; +-- +1.8.3.1 + diff --git a/SOURCES/0045-gdb-disable-loading-of-auto-loaded-files.patch b/SOURCES/0045-gdb-disable-loading-of-auto-loaded-files.patch new file mode 100644 index 0000000..6a1797a --- /dev/null +++ b/SOURCES/0045-gdb-disable-loading-of-auto-loaded-files.patch @@ -0,0 +1,123 @@ +From 5a2f83cd86ce824167fa7ea8e5357c014034ed46 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 9 Jun 2014 17:13:09 +0200 +Subject: [ABRT PATCH 45/66] gdb: disable loading of auto-loaded files + +https://sourceware.org/gdb/onlinedocs/gdb/Auto_002dloading.html + +There are two main reasons for doing so: +1. we cannot trust anybody + - the auto-loaded file may change the output format + - security? +2. bugs in such a files (#817) + +Resolves: #1128637 + +Signed-off-by: Jakub Filak +--- + src/lib/hooklib.c | 40 +++++++++++++++++++++------------------- + 1 file changed, 21 insertions(+), 19 deletions(-) + +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index 4a50727..21ad9e0 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -252,10 +252,12 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + /* Let user know what's going on */ + log(_("Generating backtrace")); + +- char *args[21]; ++ char *args[23]; + args[0] = (char*)"gdb"; + args[1] = (char*)"-batch"; + args[2] = (char*)"-ex"; ++ args[3] = (char*)"set auto-load off"; ++ args[4] = (char*)"-ex"; + struct strbuf *set_debug_file_directory = strbuf_new(); + if(debuginfo_dirs == NULL) + { +@@ -278,7 +280,7 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + p = colon_or_nul; + } + } +- args[3] = strbuf_free_nobuf(set_debug_file_directory); ++ args[5] = strbuf_free_nobuf(set_debug_file_directory); + + /* "file BINARY_FILE" is needed, without it gdb cannot properly + * unwind the stack. Currently the unwind information is located +@@ -300,27 +302,27 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + * TODO: check mtimes on COREFILE and BINARY_FILE and not supply + * BINARY_FILE if it is newer (to at least avoid gdb complaining). + */ +- args[4] = (char*)"-ex"; +- args[5] = xasprintf("file %s", executable); +- free(executable); +- + args[6] = (char*)"-ex"; +- args[7] = xasprintf("core-file %s/"FILENAME_COREDUMP, dump_dir_name); ++ args[7] = xasprintf("file %s", executable); ++ free(executable); + + args[8] = (char*)"-ex"; +- /*args[9] = ... see below */ ++ args[9] = xasprintf("core-file %s/"FILENAME_COREDUMP, dump_dir_name); ++ + args[10] = (char*)"-ex"; +- args[11] = (char*)"info sharedlib"; +- /* glibc's abort() stores its message in __abort_msg variable */ ++ /*args[11] = ... see below */ + args[12] = (char*)"-ex"; +- args[13] = (char*)"print (char*)__abort_msg"; ++ args[13] = (char*)"info sharedlib"; ++ /* glibc's abort() stores its message in __abort_msg variable */ + args[14] = (char*)"-ex"; +- args[15] = (char*)"print (char*)__glib_assert_msg"; ++ args[15] = (char*)"print (char*)__abort_msg"; + args[16] = (char*)"-ex"; +- args[17] = (char*)"info all-registers"; ++ args[17] = (char*)"print (char*)__glib_assert_msg"; + args[18] = (char*)"-ex"; +- args[19] = (char*)"disassemble"; +- args[20] = NULL; ++ args[19] = (char*)"info all-registers"; ++ args[20] = (char*)"-ex"; ++ args[21] = (char*)"disassemble"; ++ args[22] = NULL; + + /* Get the backtrace, but try to cap its size */ + /* Limit bt depth. With no limit, gdb sometimes OOMs the machine */ +@@ -330,9 +332,9 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + char *bt = NULL; + while (1) + { +- args[9] = xasprintf("%s backtrace %u%s", thread_apply_all, bt_depth, full); ++ args[11] = xasprintf("%s backtrace %u%s", thread_apply_all, bt_depth, full); + bt = exec_vp(args, /*redirect_stderr:*/ 1, timeout_sec, NULL); +- free(args[9]); ++ free(args[11]); + if ((bt && strnlen(bt, 256*1024) < 256*1024) || bt_depth <= 32) + { + break; +@@ -357,7 +359,7 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + * End of assembler dump. + * (IOW: "empty" dump) + */ +- args[19] = (char*)"disassemble $pc-20, $pc+64"; ++ args[21] = (char*)"disassemble $pc-20, $pc+64"; + + if (bt_depth <= 64 && thread_apply_all[0] != '\0') + { +@@ -373,9 +375,9 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + } + } + +- free(args[3]); + free(args[5]); + free(args[7]); ++ free(args[9]); + return bt; + } + +-- +1.8.3.1 + diff --git a/SOURCES/0049-koops-add-an-option-controlling-MCE-detection.patch b/SOURCES/0049-koops-add-an-option-controlling-MCE-detection.patch new file mode 100644 index 0000000..204de59 --- /dev/null +++ b/SOURCES/0049-koops-add-an-option-controlling-MCE-detection.patch @@ -0,0 +1,208 @@ +From 0ec7f45a005a5faeb3d013710572d7b09fada376 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 21 Mar 2014 15:36:58 +0100 +Subject: [ABRT PATCH 49/66] koops: add an option controlling MCE detection + +It is necessary to be able to turn off the detection of Non-fatal MCEs +on a certain machine. + +Related to #807 +Resolves: rhbz#1076820 + +Signed-off-by: Jakub Filak + +Conflicts: + src/hooks/Makefile.am +--- + doc/abrt-dump-oops.txt | 5 ++++ + doc/dbus-configuration/Makefile.am | 1 + + .../com.redhat.problems.configuration.oops.xml.in | 11 ++++++++ + src/hooks/Makefile.am | 3 ++- + src/hooks/oops.conf | 7 ++++++ + src/include/libabrt.h | 10 ++++++++ + src/lib/kernel.c | 29 +++++++++++++++++++++- + src/plugins/abrt-dump-oops.c | 25 ++++++++++++++++++- + 8 files changed, 88 insertions(+), 3 deletions(-) + create mode 100644 doc/dbus-configuration/com.redhat.problems.configuration.oops.xml.in + create mode 100644 src/hooks/oops.conf + +diff --git a/doc/abrt-dump-oops.txt b/doc/abrt-dump-oops.txt +index cdb985c..5aa6bca 100644 +--- a/doc/abrt-dump-oops.txt ++++ b/doc/abrt-dump-oops.txt +@@ -14,6 +14,11 @@ DESCRIPTION + This tool creates problem directory from, updates problem directory with or + prints oops extracted from FILE or standard input. + ++FILES ++----- ++/etc/abrt/plugins/oops.conf:: ++ Configuration file where user can disable detection of non-fatal MCEs ++ + OPTIONS + ------- + -v, --verbose:: +diff --git a/doc/dbus-configuration/Makefile.am b/doc/dbus-configuration/Makefile.am +index 2a3889d..15173de 100644 +--- a/doc/dbus-configuration/Makefile.am ++++ b/doc/dbus-configuration/Makefile.am +@@ -8,6 +8,7 @@ dist_dbusabrtinterfaces_DATA = \ + com.redhat.problems.configuration.xml \ + com.redhat.problems.configuration.abrt.xml \ + com.redhat.problems.configuration.ccpp.xml \ ++ com.redhat.problems.configuration.oops.xml \ + com.redhat.problems.configuration.python.xml \ + com.redhat.problems.configuration.vmcore.xml \ + com.redhat.problems.configuration.xorg.xml +diff --git a/doc/dbus-configuration/com.redhat.problems.configuration.oops.xml.in b/doc/dbus-configuration/com.redhat.problems.configuration.oops.xml.in +new file mode 100644 +index 0000000..22bd166 +--- /dev/null ++++ b/doc/dbus-configuration/com.redhat.problems.configuration.oops.xml.in +@@ -0,0 +1,11 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +diff --git a/src/hooks/Makefile.am b/src/hooks/Makefile.am +index 1cce3d7..e536089 100644 +--- a/src/hooks/Makefile.am ++++ b/src/hooks/Makefile.am +@@ -6,7 +6,8 @@ pluginsconfdir = $(PLUGINS_CONF_DIR) + dist_pluginsconf_DATA = \ + CCpp.conf \ + python.conf \ +- vmcore.conf ++ vmcore.conf \ ++ oops.conf + + defaultpluginsconfdir = $(DEFAULT_PLUGINS_CONF_DIR) + dist_defaultpluginsconf_DATA = $(dist_pluginsconf_DATA) +diff --git a/src/hooks/oops.conf b/src/hooks/oops.conf +new file mode 100644 +index 0000000..0e35a68 +--- /dev/null ++++ b/src/hooks/oops.conf +@@ -0,0 +1,7 @@ ++# Lot of Machine Check Exceptions are correctable and thus not interesting to ++# users. Moreover some hardware may produce plenty of MCEs by design. ++# ++# Setting the following option to 'yes' will configure ABRT to detect only ++# the fatal MCEs. ++# ++OnlyFatalMCE = no +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 3e42a09..85a5a5c 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -9,6 +9,8 @@ + #ifndef LIBABRT_H_ + #define LIBABRT_H_ + ++#include ++ + #include /* dbus */ + #include "abrt-dbus.h" + /* libreport's internal functions we use: */ +@@ -109,6 +111,14 @@ int koops_hash_str(char hash_str[SHA1_RESULT_LEN*2 + 1], const char *oops_buf); + void koops_extract_oopses(GList **oops_list, char *buffer, size_t buflen); + #define koops_print_suspicious_strings abrt_koops_print_suspicious_strings + void koops_print_suspicious_strings(void); ++/** ++ * Prints all suspicious strings that do not match any of the regular ++ * expression in NULL terminated list. ++ * ++ * The regular expression should be compiled with REG_NOSUB flag. ++ */ ++#define koops_print_suspicious_strings_filtered abrt_koops_print_suspicious_strings_filtered ++void koops_print_suspicious_strings_filtered(const regex_t **filterout); + + /* dbus client api */ + +diff --git a/src/lib/kernel.c b/src/lib/kernel.c +index ad20c65..799463d 100644 +--- a/src/lib/kernel.c ++++ b/src/lib/kernel.c +@@ -158,8 +158,35 @@ static const char *const s_koops_suspicious_strings[] = { + + void koops_print_suspicious_strings(void) + { ++ koops_print_suspicious_strings_filtered(NULL); ++} ++ ++static bool match_any(const regex_t **res, const char *str) ++{ ++ for (const regex_t **r = res; *r != NULL; ++r) ++ { ++ /* Regular expressions compiled with REG_NOSUB */ ++ const int reti = regexec(*r, str, 0, NULL, 0); ++ if (reti == 0) ++ return true; ++ else if (reti != REG_NOMATCH) ++ { ++ char msgbuf[100]; ++ regerror(reti, *r, msgbuf, sizeof(msgbuf)); ++ error_msg_and_die("Regex match failed: %s", msgbuf); ++ } ++ } ++ ++ return false; ++} ++ ++void koops_print_suspicious_strings_filtered(const regex_t **filterout) ++{ + for (const char *const *str = s_koops_suspicious_strings; *str; ++str) +- puts(*str); ++ { ++ if (filterout == NULL || !match_any(filterout, *str)) ++ puts(*str); ++ } + } + + void koops_extract_oopses(GList **oops_list, char *buffer, size_t buflen) +diff --git a/src/plugins/abrt-dump-oops.c b/src/plugins/abrt-dump-oops.c +index 12291be..9f0dc87 100644 +--- a/src/plugins/abrt-dump-oops.c ++++ b/src/plugins/abrt-dump-oops.c +@@ -295,7 +295,30 @@ int main(int argc, char **argv) + + if (opts & OPT_m) + { +- koops_print_suspicious_strings(); ++ map_string_t *settings = new_map_string(); ++ ++ load_abrt_plugin_conf_file("oops.conf", settings); ++ ++ int only_fatal_mce = 1; ++ try_get_map_string_item_as_bool(settings, "OnlyFatalMCE", &only_fatal_mce); ++ ++ free_map_string(settings); ++ ++ if (only_fatal_mce) ++ { ++ regex_t mce_re; ++ if (regcomp(&mce_re, "^Machine .*$", REG_NOSUB) != 0) ++ perror_msg_and_die(_("Failed to compile regex")); ++ ++ const regex_t *filter[] = { &mce_re, NULL }; ++ ++ koops_print_suspicious_strings_filtered(filter); ++ ++ regfree(&mce_re); ++ } ++ else ++ koops_print_suspicious_strings(); ++ + return 1; + } + +-- +1.8.3.1 + diff --git a/SOURCES/0051-python-support-exceptions-without-traceback.patch b/SOURCES/0051-python-support-exceptions-without-traceback.patch new file mode 100644 index 0000000..1b9272c --- /dev/null +++ b/SOURCES/0051-python-support-exceptions-without-traceback.patch @@ -0,0 +1,40 @@ +From a9f19fb25ee6e956d29931f06a8cd919c38fba53 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 9 Jul 2014 17:55:36 +0200 +Subject: [ABRT PATCH 51/66] python: support exceptions without traceback + +e.g. SyntaxError (python-2.7.5-13.fc20, python-2.7.7-2.fc21) + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt_exception_handler.py.in | 14 ++++++++------ + 1 file changed, 8 insertions(+), 6 deletions(-) + +diff --git a/src/hooks/abrt_exception_handler.py.in b/src/hooks/abrt_exception_handler.py.in +index 96a63ff..6cf36d0 100644 +--- a/src/hooks/abrt_exception_handler.py.in ++++ b/src/hooks/abrt_exception_handler.py.in +@@ -55,12 +55,14 @@ def write_dump(tb_text, tb): + executable = sys.argv[0] + + dso_list = None +- try: +- import rpm +- dso_list = get_dso_list(tb) +- except ImportError as imperr: +- syslog("RPM module not available, cannot query RPM db for package "\ +- "names") ++ # Trace back is None in case of SyntaxError exception. ++ if tb: ++ try: ++ import rpm ++ dso_list = get_dso_list(tb) ++ except ImportError as imperr: ++ syslog("RPM module not available, cannot query RPM db for package "\ ++ "names") + + # Open ABRT daemon's socket and write data to it + try: +-- +1.8.3.1 + diff --git a/SOURCES/0053-gettext-fix-the-initialization-in-python-scripts.patch b/SOURCES/0053-gettext-fix-the-initialization-in-python-scripts.patch new file mode 100644 index 0000000..891ddf1 --- /dev/null +++ b/SOURCES/0053-gettext-fix-the-initialization-in-python-scripts.patch @@ -0,0 +1,187 @@ +From c647c9eaecde2653366decd9a992e75943db7fc0 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 22 Jul 2014 16:13:25 +0200 +Subject: [ABRT PATCH 53/66] gettext: fix the initialization in python scripts + +ABRT scripts cannot import and use _ symbol from reportclient because +reporclient's _ is bound to 'libreport' package. + +Related to rhbz#1087880 + +Signed-off-by: Jakub Filak + +Conflicts: + src/plugins/abrt-action-ureport +--- + po/POTFILES.in | 2 ++ + src/daemon/abrt-handle-upload.in | 26 ++++++++++++++++++++++++-- + src/plugins/abrt-action-analyze-vmcore.in | 25 ++++++++++++++++++++++++- + src/plugins/abrt-action-install-debuginfo.in | 2 +- + src/plugins/abrt-action-ureport | 24 ++++++++++++++++++++++-- + 5 files changed, 73 insertions(+), 6 deletions(-) + +diff --git a/po/POTFILES.in b/po/POTFILES.in +index ff9b97a..e3f917b 100644 +--- a/po/POTFILES.in ++++ b/po/POTFILES.in +@@ -14,6 +14,7 @@ src/daemon/abrtd.c + src/daemon/abrt-handle-event.c + src/daemon/abrt-upload-watch.c + src/daemon/abrt-auto-reporting.c ++src/daemon/abrt-handle-upload.in + src/lib/abrt_conf.c + src/lib/hooklib.c + src/lib/problem_api.c +@@ -32,6 +33,7 @@ src/plugins/abrt-action-generate-core-backtrace.c + src/plugins/abrt-action-install-debuginfo.in + src/plugins/abrt-action-perform-ccpp-analysis.in + src/plugins/abrt-action-trim-files.c ++src/plugins/abrt-action-ureport + src/plugins/abrt-gdb-exploitable + src/plugins/abrt-watch-log.c + src/plugins/abrt-dump-oops.c +diff --git a/src/daemon/abrt-handle-upload.in b/src/daemon/abrt-handle-upload.in +index 084170e..dbc4534 100755 +--- a/src/daemon/abrt-handle-upload.in ++++ b/src/daemon/abrt-handle-upload.in +@@ -11,7 +11,29 @@ import tempfile + import shutil + import datetime + +-from reportclient import _, set_verbosity, error_msg_and_die, error_msg, log ++from reportclient import set_verbosity, error_msg_and_die, error_msg, log ++ ++GETTEXT_PROGNAME = "abrt" ++import locale ++import gettext ++ ++_ = lambda x: gettext.lgettext(x) ++ ++def init_gettext(): ++ 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) ++ ++ + import problem + + def write_str_to(filename, s): +@@ -32,7 +54,7 @@ if __name__ == "__main__": + sys.exit(die_exitcode) + + # localization +- #init_gettext() - done by reportclient module init ++ init_gettext() + + verbose = 0 + ABRT_VERBOSE = os.getenv("ABRT_VERBOSE") +diff --git a/src/plugins/abrt-action-analyze-vmcore.in b/src/plugins/abrt-action-analyze-vmcore.in +index 11ad846..c08af80 100644 +--- a/src/plugins/abrt-action-analyze-vmcore.in ++++ b/src/plugins/abrt-action-analyze-vmcore.in +@@ -8,7 +8,28 @@ import sys + import getopt + from subprocess import Popen, PIPE + +-from reportclient import _, verbose, set_verbosity, error_msg_and_die, error_msg ++from reportclient import verbose, set_verbosity, error_msg_and_die, error_msg ++ ++GETTEXT_PROGNAME = "abrt" ++import locale ++import gettext ++ ++_ = lambda x: gettext.lgettext(x) ++ ++def init_gettext(): ++ 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) ++ + + PROGNAME = "abrt-action-analyze-vmcore" + +@@ -26,6 +47,8 @@ if __name__ == "__main__": + tmpdir = "" + vmcore = "" + ++ init_gettext() ++ + help_text = _("Usage: {0} [-v[v]] [--core=VMCORE]").format(PROGNAME) + try: + opts, args = getopt.getopt(sys.argv[1:], "hvd", ["help", "core="]) +diff --git a/src/plugins/abrt-action-install-debuginfo.in b/src/plugins/abrt-action-install-debuginfo.in +index 5fd3110..f46d1b2 100644 +--- a/src/plugins/abrt-action-install-debuginfo.in ++++ b/src/plugins/abrt-action-install-debuginfo.in +@@ -11,7 +11,7 @@ import errno + import getopt + import reportclient + from subprocess import Popen, PIPE +-from reportclient import _, verbose, log, log1, log2, set_verbosity, error_msg_and_die, error_msg ++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 +diff --git a/src/plugins/abrt-action-ureport b/src/plugins/abrt-action-ureport +index 8c0f36f..e38a92c 100755 +--- a/src/plugins/abrt-action-ureport ++++ b/src/plugins/abrt-action-ureport +@@ -10,7 +10,27 @@ import os + import getopt + + from report import dd_opendir, DD_FAIL_QUIETLY_ENOENT +-from reportclient import _, set_verbosity, error_msg_and_die, error_msg, log1, log ++from reportclient import set_verbosity, error_msg_and_die, error_msg, log1, log ++ ++GETTEXT_PROGNAME = "abrt" ++import locale ++import gettext ++ ++_ = lambda x: gettext.lgettext(x) ++ ++def init_gettext(): ++ 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) + + def spawn_and_wait(prog): + try: +@@ -32,7 +52,7 @@ def try_parse_number(dd, filename): + + if __name__ == "__main__": + # localization +- #init_gettext() - done by reportclient module init ++ init_gettext() + + verbose = 0 + ABRT_VERBOSE = os.getenv("ABRT_VERBOSE") +-- +1.8.3.1 + diff --git a/SOURCES/0054-oops-add-man-page.patch b/SOURCES/0054-oops-add-man-page.patch new file mode 100644 index 0000000..ee7524c --- /dev/null +++ b/SOURCES/0054-oops-add-man-page.patch @@ -0,0 +1,58 @@ +From 449698ddf727559f2df76ac15716951120f9c0c5 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 1 Aug 2014 09:31:53 +0200 +Subject: [ABRT PATCH 54/66] oops: add man page + +Related to rhbz#1076820 + +Signed-off-by: Jakub Filak +--- + doc/Makefile.am | 1 + + doc/abrt-oops.conf.txt | 23 +++++++++++++++++++++++ + 2 files changed, 24 insertions(+) + create mode 100644 doc/abrt-oops.conf.txt + +diff --git a/doc/Makefile.am b/doc/Makefile.am +index e76abde..0480114 100644 +--- a/doc/Makefile.am ++++ b/doc/Makefile.am +@@ -47,6 +47,7 @@ MAN5_TXT += abrt-action-save-package-data.conf.txt + MAN5_TXT += abrt-xorg.conf.txt + MAN5_TXT += abrt-python.conf.txt + MAN5_TXT += abrt-CCpp.conf.txt ++MAN5_TXT += abrt-oops.conf.txt + MAN5_TXT += gpg_keys.conf.txt + MAN5_TXT += abrt-vmcore.conf.txt + +diff --git a/doc/abrt-oops.conf.txt b/doc/abrt-oops.conf.txt +new file mode 100644 +index 0000000..e7e00e6 +--- /dev/null ++++ b/doc/abrt-oops.conf.txt +@@ -0,0 +1,23 @@ ++abrt-oops.conf(5) ++================= ++ ++NAME ++---- ++abrt-oops.conf - Configuration file for ABRT's Kernel Oops extractor ++ ++DESCRIPTION ++----------- ++The configuration file consists of items in the format "Option = Value". ++The following items are recognized: ++ ++OnlyFatalMCE = 'yes' / 'no' ++ If you want to see only fatal MCEs, set to "yes". ++ Defaults is 'yes': detect only fatal ones. ++ ++SEE ALSO ++-------- ++abrt.conf(5) ++ ++AUTHORS ++------- ++* ABRT team +-- +1.8.3.1 + diff --git a/SOURCES/0056-cli-make-consistent-commands-in-abrt-cli.patch b/SOURCES/0056-cli-make-consistent-commands-in-abrt-cli.patch new file mode 100644 index 0000000..14495ac --- /dev/null +++ b/SOURCES/0056-cli-make-consistent-commands-in-abrt-cli.patch @@ -0,0 +1,118 @@ +From fbcbd0e922e2c7efe62a584fbd76b36fbe0e2952 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 8 Sep 2014 13:27:56 +0200 +Subject: [ABRT PATCH 56/66] cli: make consistent commands in abrt-cli + +Add abbreviations to the client's parametres. + +Related to rhbz#1066501 + +Conflicts: + src/cli/abrt-cli.c +--- + doc/abrt-cli.txt | 2 +- + src/cli/abrt-cli.c | 20 +++++++++++--------- + src/cli/builtin-cmd.h | 2 +- + src/cli/rm.c | 2 +- + 4 files changed, 14 insertions(+), 12 deletions(-) + +diff --git a/doc/abrt-cli.txt b/doc/abrt-cli.txt +index 792e781..1c95655 100644 +--- a/doc/abrt-cli.txt ++++ b/doc/abrt-cli.txt +@@ -9,7 +9,7 @@ SYNOPSIS + -------- + 'abrt-cli' list [-vdf] [DIR]... + +-'abrt-cli' rm [-v] DIR... ++'abrt-cli' remove [-v] DIR... + + 'abrt-cli' report [-v] DIR... + +diff --git a/src/cli/abrt-cli.c b/src/cli/abrt-cli.c +index a1ab7ec..c04c132 100644 +--- a/src/cli/abrt-cli.c ++++ b/src/cli/abrt-cli.c +@@ -20,14 +20,15 @@ + #include "libabrt.h" + #include "builtin-cmd.h" + +-#define USAGE_OPTS_WIDTH 12 ++#define USAGE_OPTS_WIDTH 16 + #define USAGE_GAP 2 + + /* TODO: add --pager(default) and --no-pager */ + +-#define CMD(NAME, help) { #NAME, cmd_##NAME , (help) } ++#define CMD(NAME, ABBREV, help) { #NAME, ABBREV, cmd_##NAME , (help) } + struct cmd_struct { + const char *cmd; ++ const char *abbrev; + int (*fn)(int, const char **); + const char *help; + }; +@@ -41,6 +42,7 @@ static void list_cmds_help(const struct cmd_struct *commands) + + pos = fprintf(stderr, " "); + pos += fprintf(stderr, "%s", p->cmd); ++ pos += fprintf(stderr, ", %s", p->abbrev); + + if (pos <= USAGE_OPTS_WIDTH) + pad = USAGE_OPTS_WIDTH - pos; +@@ -110,7 +112,7 @@ static void handle_internal_command(int argc, const char **argv, + + for (const struct cmd_struct *p = commands; p->cmd; ++p) + { +- if (strcmp(p->cmd, cmd) != 0) ++ if (strcmp(p->cmd, cmd) != 0 && strcmp(p->abbrev, cmd) != 0) + continue; + + exit(p->fn(argc, argv)); +@@ -143,12 +145,12 @@ int main(int argc, const char **argv) + ); + + const struct cmd_struct commands[] = { +- CMD(list, _("List not yet reported problems [in DIRs]")), +- CMD(rm, _("Remove problem directory DIR")), +- CMD(report, _("Analyze and report problem data in DIR")), +- CMD(info, _("Print information about DIR")), +- CMD(status, _("Print the count of the recent crashes")), +- {NULL, NULL, NULL} ++ CMD(list, "ls", _("List problems [in DIRs]")), ++ CMD(remove, "rm", _("Remove problem directory DIR")), ++ CMD(report, "e",_("Analyze and report problem data in DIR")), ++ CMD(info, "i", _("Print information about DIR")), ++ CMD(status, "st",_("Print the count of the recent crashes")), ++ {NULL, NULL, NULL, NULL} + }; + + migrate_to_xdg_dirs(); +diff --git a/src/cli/builtin-cmd.h b/src/cli/builtin-cmd.h +index 491760b..18588e1 100644 +--- a/src/cli/builtin-cmd.h ++++ b/src/cli/builtin-cmd.h +@@ -21,7 +21,7 @@ + #define _BUILTIN_CMD_H_ + + extern int cmd_list(int argc, const char **argv); +-extern int cmd_rm(int argc, const char **argv); ++extern int cmd_remove(int argc, const char **argv); + extern int cmd_report(int argc, const char **argv); + extern int cmd_info(int argc, const char **argv); + extern int cmd_status(int argc, const char **argv); +diff --git a/src/cli/rm.c b/src/cli/rm.c +index 8f185a4..fe458ff 100644 +--- a/src/cli/rm.c ++++ b/src/cli/rm.c +@@ -25,7 +25,7 @@ + * add -q, --quite + */ + +-int cmd_rm(int argc, const char **argv) ++int cmd_remove(int argc, const char **argv) + { + const char *program_usage_string = _( + "& rm [options] DIR..." +-- +1.8.3.1 + diff --git a/SOURCES/0058-cli-robustize-abrt-console-notification.sh.patch b/SOURCES/0058-cli-robustize-abrt-console-notification.sh.patch new file mode 100644 index 0000000..74a28c4 --- /dev/null +++ b/SOURCES/0058-cli-robustize-abrt-console-notification.sh.patch @@ -0,0 +1,69 @@ +From 9492af5e0e09dd66e179ccd8a505ce0b79978c83 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 15 Sep 2014 08:40:05 +0200 +Subject: [ABRT PATCH 58/66] cli: robustize abrt-console-notification.sh + +- don't show any notifications without a terminal connected to stdout +- don't continue without writable $HOME directory +- forward all error messages to /dev/null + +Resolves rhbz#1139001 + +Signed-off-by: Jakub Filak +--- + src/cli/abrt-console-notification.sh | 30 ++++++++++++++++++++++++------ + 1 file changed, 24 insertions(+), 6 deletions(-) + +diff --git a/src/cli/abrt-console-notification.sh b/src/cli/abrt-console-notification.sh +index 937abb0..849273c 100755 +--- a/src/cli/abrt-console-notification.sh ++++ b/src/cli/abrt-console-notification.sh +@@ -1,21 +1,39 @@ ++# If shell is not connect to a terminal, exit immediately, because this script ++# should print out ABRT's status and it is senseless to continue without ++# terminal. ++tty -s || exit 0 ++ ++# If $HOME is not set, a non human user is logging in to shell but this script ++# should provide information to human users, therefore exiting immediately ++# without showing the notification. ++if [ -z "$HOME" ]; then ++ exit 0 ++fi ++ ++if [ -z "$ABRT_DEBUG_LOG" ]; then ++ ABRT_DEBUG_LOG="/dev/null" ++fi ++ + LPATHDIR="$HOME/.cache/abrt" + SINCEFILE="$LPATHDIR/lastnotification" + + if [ ! -f "$LPATHDIR" ]; then +- mkdir -p "$LPATHDIR" ++ # It might happen that user doesn't have write access on his home. ++ mkdir -p "$LPATHDIR" >"$ABRT_DEBUG_LOG" 2>&1 || exit 0 + fi + +-TMPPATH=`mktemp --tmpdir="$LPATHDIR" lastnotification.XXXXXXXX 2> /dev/null` ++TMPPATH=`mktemp --tmpdir="$LPATHDIR" lastnotification.XXXXXXXX 2> "$ABRT_DEBUG_LOG"` + + SINCE=0 + if [ -f "$SINCEFILE" ]; then +- SINCE=`cat $SINCEFILE 2> /dev/null` ++ SINCE=`cat $SINCEFILE 2>"$ABRT_DEBUG_LOG"` + fi + + # always update the lastnotification + if [ -f "$TMPPATH" ]; then +- date +%s > "$TMPPATH" +- mv -f "$TMPPATH" "$SINCEFILE" ++ # Be quite in case of errors and don't scare users by strange error messages. ++ date +%s > "$TMPPATH" 2>"$ABRT_DEBUG_LOG" ++ mv -f "$TMPPATH" "$SINCEFILE" >"$ABRT_DEBUG_LOG" 2>&1 + fi + +-abrt-cli status --since="$SINCE" 2> /dev/null ++abrt-cli status --since="$SINCE" 2>"$ABRT_DEBUG_LOG" +-- +1.8.3.1 + diff --git a/SOURCES/0059-plugins-add-abrt-action-generate-machine-id.patch b/SOURCES/0059-plugins-add-abrt-action-generate-machine-id.patch new file mode 100644 index 0000000..4f32ec5 --- /dev/null +++ b/SOURCES/0059-plugins-add-abrt-action-generate-machine-id.patch @@ -0,0 +1,117 @@ +From 0e2514743b71f4e0d177b072036884c1d9b72621 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 16 Sep 2014 15:35:55 +0200 +Subject: [ABRT PATCH 59/66] plugins: add abrt-action-generate-machine-id + +Enabled by default on RHEL7. + +Resolves: rhbz#1140044 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt_event.conf | 3 ++ + src/plugins/Makefile.am | 2 + + src/plugins/abrt-action-generate-machine-id | 57 +++++++++++++++++++++++++++++ + 3 files changed, 62 insertions(+) + create mode 100644 src/plugins/abrt-action-generate-machine-id + +diff --git a/src/daemon/abrt_event.conf b/src/daemon/abrt_event.conf +index 380b312..deda7c7 100644 +--- a/src/daemon/abrt_event.conf ++++ b/src/daemon/abrt_event.conf +@@ -92,6 +92,9 @@ EVENT=post-create + rm sosreport.log + exit 1 + ++# Example: if you want to include *machineid* in dump directories: ++EVENT=post-create ++ /usr/libexec/abrt-action-generate-machine-id -o $DUMP_DIR/machineid + + # Example: if you want to upload data immediately at the moment of a crash: + #EVENT=post-create +diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am +index 727dae0..326bb6e 100644 +--- a/src/plugins/Makefile.am ++++ b/src/plugins/Makefile.am +@@ -35,6 +35,7 @@ libexec_PROGRAMS = \ + abrt-action-install-debuginfo-to-abrt-cache + + libexec_SCRIPTS = \ ++ abrt-action-generate-machine-id \ + abrt-action-ureport \ + abrt-gdb-exploitable + +@@ -91,6 +92,7 @@ EXTRA_DIST = \ + analyze_VMcore.xml.in \ + abrt-action-analyze-core.in \ + abrt-action-analyze-vmcore \ ++ abrt-action-generate-machine-id \ + abrt-action-check-oops-for-hw-error \ + abrt-action-save-kernel-data \ + abrt-action-ureport \ +diff --git a/src/plugins/abrt-action-generate-machine-id b/src/plugins/abrt-action-generate-machine-id +new file mode 100644 +index 0000000..0aea787 +--- /dev/null ++++ b/src/plugins/abrt-action-generate-machine-id +@@ -0,0 +1,57 @@ ++#!/usr/bin/python ++from argparse import ArgumentParser ++ ++import dmidecode ++import hashlib ++ ++ ++# Generate a machine_id based off dmidecode fields ++def generate_machine_id(): ++ dmixml = dmidecode.dmidecodeXML() ++ ++ # Fetch all DMI data into a libxml2.xmlDoc object ++ dmixml.SetResultType(dmidecode.DMIXML_DOC) ++ xmldoc = dmixml.QuerySection('all') ++ ++ # Do some XPath queries on the XML document ++ dmixp = xmldoc.xpathNewContext() ++ ++ # What to look for - XPath expressions ++ keys = ['/dmidecode/SystemInfo/Manufacturer', ++ '/dmidecode/SystemInfo/ProductName', ++ '/dmidecode/SystemInfo/SerialNumber', ++ '/dmidecode/SystemInfo/SystemUUID'] ++ ++ # Create a sha256 of ^ for machine_id ++ machine_id = hashlib.sha256() ++ ++ # Run xpath expressions ++ for k in keys: ++ data = dmixp.xpathEval(k) ++ for d in data: ++ # Update the hash as we find the fields we are looking for ++ machine_id.update(d.get_content()) ++ ++ del dmixp ++ del xmldoc ++ # Create sha256 digest ++ return machine_id.hexdigest() ++ ++ ++if __name__ == "__main__": ++ CMDARGS = ArgumentParser(description = "Generate a machine_id based off dmidecode fields") ++ CMDARGS.add_argument('-o', '--output', type=str, help='Output file') ++ ++ OPTIONS = CMDARGS.parse_args() ++ ARGS = vars(OPTIONS) ++ ++ machineid = generate_machine_id() ++ ++ if ARGS['output']: ++ try: ++ with open(ARGS['output'], 'w') as outfile: ++ outfile.write(machineid) ++ except IOError as ex: ++ print ex ++ else: ++ print machineid +-- +1.8.3.1 + diff --git a/SOURCES/0061-dbus-fixed-abrt-dbus-memory-leaks.patch b/SOURCES/0061-dbus-fixed-abrt-dbus-memory-leaks.patch new file mode 100644 index 0000000..3238fa4 --- /dev/null +++ b/SOURCES/0061-dbus-fixed-abrt-dbus-memory-leaks.patch @@ -0,0 +1,47 @@ +From ca9e26aab4b78dbd0d5f59ca5e3bda47000b6353 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 18 Sep 2014 15:02:01 +0200 +Subject: [ABRT PATCH 61/66] dbus: fixed abrt-dbus memory leaks + +Fixed memory leaks in abrt-dbus (method FindProblemByElementInTimeRange). +This method leaks memory if fuzzing on org.freedesktop.problems interface. + +Related to rhbz#1015473 + +Signed-off-by: Matej Habrnal +--- + src/dbus/abrt-dbus.c | 18 +++++++++++------- + 1 file changed, 11 insertions(+), 7 deletions(-) + +diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c +index 0350dee..308a9af 100644 +--- a/src/dbus/abrt-dbus.c ++++ b/src/dbus/abrt-dbus.c +@@ -685,13 +685,17 @@ static void handle_method_call(GDBusConnection *connection, + + if (g_strcmp0(method_name, "FindProblemByElementInTimeRange") == 0) + { +- const char *element; +- const char *value; +- long timestamp_from; +- long timestamp_to; +- bool all; +- +- g_variant_get(parameters, "(ssxxb)", &element, &value, ×tamp_from, ×tamp_to, &all); ++ const gchar *element; ++ const gchar *value; ++ glong timestamp_from; ++ glong timestamp_to; ++ gboolean all; ++ ++ g_variant_get_child(parameters, 0, "&s", &element); ++ g_variant_get_child(parameters, 1, "&s", &value); ++ g_variant_get_child(parameters, 2, "x", ×tamp_from); ++ g_variant_get_child(parameters, 3, "x", ×tamp_to); ++ g_variant_get_child(parameters, 4, "b", &all); + + if (all && polkit_check_authorization_dname(caller, "org.freedesktop.problems.getall") == PolkitYes) + caller_uid = 0; +-- +1.8.3.1 + diff --git a/SOURCES/0062-applet-chown-each-notified-problem-before-reporting-.patch b/SOURCES/0062-applet-chown-each-notified-problem-before-reporting-.patch new file mode 100644 index 0000000..ac4c9b0 --- /dev/null +++ b/SOURCES/0062-applet-chown-each-notified-problem-before-reporting-.patch @@ -0,0 +1,61 @@ +From 19a0816a032b7fdc5243a358ee77376d988b2dfd Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 27 Jun 2014 14:46:39 +0200 +Subject: [ABRT PATCH 62/66] applet: chown each notified problem before + reporting it + +Not chowing all directories leads to stealing of koops problems and dump +dir stealing is obsolete because: + - stolen directories are omitted in local duplicates search + - root cannot seen those directories + +Kernel oops problems are not problems of another user, they are rather +system problems. Koops problems are readable by all users but are not +writable. Fortunately koops directories can be chowned by all users +without providing any credentials. + +Resolves #1084027 + +Chowing problem directories runs in abrt-dbus which shows an +authorization dialogue. + +Signed-off-by: Jakub Filak +--- + src/applet/applet.c | 19 ++++++++++--------- + 1 file changed, 10 insertions(+), 9 deletions(-) + +diff --git a/src/applet/applet.c b/src/applet/applet.c +index 6ce400f..b1ce400 100644 +--- a/src/applet/applet.c ++++ b/src/applet/applet.c +@@ -1164,17 +1164,18 @@ static void export_event_configuration(const char *event_name) + + static void run_event_async(problem_info_t *pi, const char *event_name, int flags) + { +- if (pi->foreign) ++ /* chown the directory in any case, because kernel oopses are not foreign */ ++ /* but their dump directories are not writable without chowning them or */ ++ /* stealing them. The stealing is deprecated as it breaks the local */ ++ /* duplicate search and root cannot see them */ ++ const int res = chown_dir_over_dbus(problem_info_get_dir(pi)); ++ if (pi->foreign && res != 0) + { +- int res = chown_dir_over_dbus(problem_info_get_dir(pi)); +- if (res != 0) +- { +- error_msg(_("Can't take ownership of '%s'"), problem_info_get_dir(pi)); +- problem_info_free(pi); +- return; +- } +- pi->foreign = false; ++ error_msg(_("Can't take ownership of '%s'"), problem_info_get_dir(pi)); ++ problem_info_free(pi); ++ return; + } ++ pi->foreign = false; + + struct dump_dir *dd = open_directory_for_writing(problem_info_get_dir(pi), /* don't ask */ NULL); + if (!dd) +-- +1.8.3.1 + diff --git a/SOURCES/0063-cli-add-option-remove-crash-dirs-after-reporting.patch b/SOURCES/0063-cli-add-option-remove-crash-dirs-after-reporting.patch new file mode 100644 index 0000000..04a18ed --- /dev/null +++ b/SOURCES/0063-cli-add-option-remove-crash-dirs-after-reporting.patch @@ -0,0 +1,74 @@ +From fa289049950f8c64455e94dd07bec2170a2d28e2 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Sat, 20 Sep 2014 11:24:25 +0200 +Subject: [ABRT PATCH 63/66] cli: add option remove crash dirs after reporting + +Add option -d to abrt-cli report which allows delete dump dir after the problem +was successfully reported. + +Resolves #1067545 + +Signed-off-by: Matej Habrnal +Signed-off-by: Jakub Filak +--- + po/POTFILES.in | 1 + + src/cli/report.c | 18 ++++++++++++++++-- + 2 files changed, 17 insertions(+), 2 deletions(-) + +diff --git a/po/POTFILES.in b/po/POTFILES.in +index e3f917b..141c73a 100644 +--- a/po/POTFILES.in ++++ b/po/POTFILES.in +@@ -51,6 +51,7 @@ src/cli/abrt-cli-core.c + src/cli/abrt-cli.c + src/cli/list.c + src/cli/status.c ++src/cli/report.c + + src/plugins/analyze_CCpp.xml.in + src/plugins/analyze_VMcore.xml.in +diff --git a/src/cli/report.c b/src/cli/report.c +index 3321a78..33d8b44 100644 +--- a/src/cli/report.c ++++ b/src/cli/report.c +@@ -26,14 +26,20 @@ int cmd_report(int argc, const char **argv) + { + const char *program_usage_string = _( + "& report [options] DIR..." +- ); ++ ); ++ ++ enum { ++ OPT_v = 1 << 0, ++ OPT_d = 1 << 1, ++ }; + + struct options program_options[] = { + OPT__VERBOSE(&g_verbose), ++ OPT_BOOL('d', "delete", NULL, _("Remove PROBLEM_DIR after reporting")), + OPT_END() + }; + +- parse_opts(argc, (char **)argv, program_options, program_usage_string); ++ unsigned opts = parse_opts(argc, (char **)argv, program_options, program_usage_string); + argv += optind; + + if (!argv[0]) +@@ -58,6 +64,14 @@ int cmd_report(int argc, const char **argv) + int status = report_problem_in_dir(dir_name, + LIBREPORT_WAIT + | LIBREPORT_RUN_CLI); ++ ++ /* the problem was successfully reported and option is -d */ ++ if((opts & OPT_d) && (status == 0 || status == EXIT_STOP_EVENT_RUN)) ++ { ++ log(_("Deleting '%s'"), dir_name); ++ delete_dump_dir_possibly_using_abrtd(dir_name); ++ } ++ + free(free_me); + + if (status) +-- +1.8.3.1 + diff --git a/SOURCES/0064-applet-confirm-ignoring-of-notifications.patch b/SOURCES/0064-applet-confirm-ignoring-of-notifications.patch new file mode 100644 index 0000000..50beaac --- /dev/null +++ b/SOURCES/0064-applet-confirm-ignoring-of-notifications.patch @@ -0,0 +1,58 @@ +From ba356330db1c797ac050b6229f75474aed39faa7 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 1 Oct 2014 17:14:50 +0200 +Subject: [ABRT PATCH 64/66] applet: confirm ignoring of notifications + +and fix a bug in abrt-action-notify + +Resolves #1084031 + +Signed-off-by: Jakub Filak +--- + src/applet/applet.c | 16 +++++++++++++--- + src/plugins/abrt-action-notify | 2 +- + 2 files changed, 14 insertions(+), 4 deletions(-) + +diff --git a/src/applet/applet.c b/src/applet/applet.c +index b1ce400..a40f877 100644 +--- a/src/applet/applet.c ++++ b/src/applet/applet.c +@@ -666,9 +666,19 @@ static void action_ignore(NotifyNotification *notification, gchar *action, gpoin + { + problem_info_t *pi = (problem_info_t *)user_data; + +- log_debug("Ignoring problem '%s'", problem_info_get_dir(pi)); +- +- ignored_problems_add_problem_data(g_ignore_set, pi->problem_data); ++ const char *const message = _( ++ "You are going to mute notifications of a particular problem. " \ ++ "You will never see a notification bubble for this problem again, " \ ++ "however, ABRT will be detecting it and you will be able " \ ++ "to report it from ABRT GUI." \ ++ "\n\n" \ ++ "Do you want to continue?"); ++ ++ if (run_ask_yes_no_yesforever_dialog("AskIgnoreForever", message, NULL)) ++ { ++ log_debug("Ignoring problem '%s'", problem_info_get_dir(pi)); ++ ignored_problems_add_problem_data(g_ignore_set, pi->problem_data); ++ } + + GError *err = NULL; + notify_notification_close(notification, &err); +diff --git a/src/plugins/abrt-action-notify b/src/plugins/abrt-action-notify +index cbabf74..8b8f38e 100644 +--- a/src/plugins/abrt-action-notify ++++ b/src/plugins/abrt-action-notify +@@ -99,7 +99,7 @@ def emit_crash_dbus_signal(problem_data): + # member is a Boolean flag which is True if the element is required + arguments = ((FILENAME_PACKAGE, True), (CD_DUMPDIR, True), + (FILENAME_UID, False), (FILENAME_UUID, False), +- (FILENAME_PACKAGE, False)) ++ (FILENAME_DUPHASH, False)) + + for elem in arguments: + itm = problem_data.get(elem[0]) +-- +1.8.3.1 + diff --git a/SOURCES/0065-cli-batch-reporting-in-abrt-cli.patch b/SOURCES/0065-cli-batch-reporting-in-abrt-cli.patch new file mode 100644 index 0000000..110d83b --- /dev/null +++ b/SOURCES/0065-cli-batch-reporting-in-abrt-cli.patch @@ -0,0 +1,262 @@ +From 46fac7e2c0eaf98668698558ec4acbc2ade76ba7 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Sat, 20 Sep 2014 22:50:11 +0200 +Subject: [ABRT PATCH 65/66] cli: batch reporting in abrt-cli + +Added option process (p) to the abrt-cli. +With option process abrt-cli goes through all problems one by one (when +parameter --since is not specified) and asks the user what action will be +executed. + +Resolves #1066482 + +Signed-off-by: Matej Habrnal +Signed-off-by: Jakub Filak +--- + doc/abrt-cli.txt | 2 + + po/POTFILES.in | 1 + + src/cli/Makefile.am | 1 + + src/cli/abrt-cli.c | 1 + + src/cli/builtin-cmd.h | 1 + + src/cli/process.c | 169 ++++++++++++++++++++++++++++++++++++++++++++++++++ + 6 files changed, 175 insertions(+) + create mode 100644 src/cli/process.c + +diff --git a/doc/abrt-cli.txt b/doc/abrt-cli.txt +index 1c95655..cd14bc9 100644 +--- a/doc/abrt-cli.txt ++++ b/doc/abrt-cli.txt +@@ -15,6 +15,8 @@ SYNOPSIS + + 'abrt-cli' info [-vd] [-s SIZE] DIR... + ++'abrt-cli' process [-v] DIR... ++ + OPTIONS + ------- + -v,--verbose:: +diff --git a/po/POTFILES.in b/po/POTFILES.in +index 141c73a..cbe89fa 100644 +--- a/po/POTFILES.in ++++ b/po/POTFILES.in +@@ -52,6 +52,7 @@ src/cli/abrt-cli.c + src/cli/list.c + src/cli/status.c + src/cli/report.c ++src/cli/process.c + + src/plugins/analyze_CCpp.xml.in + src/plugins/analyze_VMcore.xml.in +diff --git a/src/cli/Makefile.am b/src/cli/Makefile.am +index 75efac5..9fff5b3 100644 +--- a/src/cli/Makefile.am ++++ b/src/cli/Makefile.am +@@ -9,6 +9,7 @@ BUILTIN_C += list.c + BUILTIN_C += rm.c + BUILTIN_C += report.c + BUILTIN_C += status.c ++BUILTIN_C += process.c + + abrt_cli_SOURCES = $(CLI_C) $(BUILTIN_C) builtin-cmd.h abrt-cli-core.h + +diff --git a/src/cli/abrt-cli.c b/src/cli/abrt-cli.c +index c04c132..bc11c7f 100644 +--- a/src/cli/abrt-cli.c ++++ b/src/cli/abrt-cli.c +@@ -150,6 +150,7 @@ int main(int argc, const char **argv) + CMD(report, "e",_("Analyze and report problem data in DIR")), + CMD(info, "i", _("Print information about DIR")), + CMD(status, "st",_("Print the count of the recent crashes")), ++ CMD(process, "p",_("Process multiple problems")), + {NULL, NULL, NULL, NULL} + }; + +diff --git a/src/cli/builtin-cmd.h b/src/cli/builtin-cmd.h +index 18588e1..bc80479 100644 +--- a/src/cli/builtin-cmd.h ++++ b/src/cli/builtin-cmd.h +@@ -25,5 +25,6 @@ extern int cmd_remove(int argc, const char **argv); + extern int cmd_report(int argc, const char **argv); + extern int cmd_info(int argc, const char **argv); + extern int cmd_status(int argc, const char **argv); ++extern int cmd_process(int argc, const char **argv); + + #endif /* _BUILTIN-CMD_H_ */ +diff --git a/src/cli/process.c b/src/cli/process.c +new file mode 100644 +index 0000000..7f4fff5 +--- /dev/null ++++ b/src/cli/process.c +@@ -0,0 +1,169 @@ ++/* ++ Copyright (C) 2014 ABRT Team ++ Copyright (C) 2014 RedHat inc. ++ ++ 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. ++*/ ++ ++#include "libabrt.h" ++#include "client.h" ++ ++#include "abrt-cli-core.h" ++#include "builtin-cmd.h" ++ ++ ++enum { ++ ACT_ERR = 0, ++ ACT_REMOVE, ++ ACT_REPORT, ++ ACT_INFO, ++ ACT_SKIP ++}; ++ ++static int process_one_crash(problem_data_t *problem_data) ++{ ++ if (problem_data == NULL) ++ return ACT_ERR; ++ ++ static const char *name_to_skip[] = { ++ FILENAME_PACKAGE , ++ FILENAME_UID , ++ FILENAME_COUNT ++ }; ++ ++ char *desc = make_description(problem_data, ++ /*names_to_skip:*/ (char **)name_to_skip, ++ /*max_text_size:*/ CD_TEXT_ATT_SIZE_BZ, ++ MAKEDESC_SHOW_ONLY_LIST | MAKEDESC_SHOW_URLS); ++ ++ fputs(desc, stdout); ++ free(desc); ++ ++ const char *dir_name = problem_data_get_content_or_NULL(problem_data, ++ CD_DUMPDIR); ++ char *action = NULL; ++ int ret_val = 0; ++ while (ret_val == 0) ++ { ++ const char *not_reportable = problem_data_get_content_or_NULL(problem_data, FILENAME_NOT_REPORTABLE); ++ ++ /* if the problem is not-reportable then ask does not contain option report(e) */ ++ if (not_reportable != NULL) ++ action = ask(_("Actions: remove(rm), info(i), skip(s):")); ++ else ++ action = ask(_("Actions: remove(rm), report(e), info(i), skip(s):")); ++ ++ if(strcmp(action, "rm") == 0 || strcmp(action, "remove") == 0 ) ++ { ++ log(_("Deleting '%s'"), dir_name); ++ delete_dump_dir_possibly_using_abrtd(dir_name); ++ ++ ret_val = ACT_REMOVE; ++ } ++ else if (not_reportable == NULL && (strcmp(action, "e") == 0 || strcmp(action, "report") == 0)) ++ { ++ log(_("Reporting '%s'"), dir_name); ++ report_problem_in_dir(dir_name, ++ LIBREPORT_WAIT ++ | LIBREPORT_RUN_CLI); ++ ++ ret_val = ACT_REPORT; ++ } ++ else if (strcmp(action, "i") == 0 || strcmp(action, "info") == 0) ++ { ++ char *desc = make_description(problem_data, ++ /*names_to_skip:*/ NULL, ++ /*max_text_size:*/ CD_TEXT_ATT_SIZE_BZ, ++ MAKEDESC_SHOW_FILES | MAKEDESC_SHOW_MULTILINE); ++ ++ fputs(desc, stdout); ++ free(desc); ++ ++ ret_val = ACT_INFO; ++ } ++ else if (strcmp(action, "s") == 0 || strcmp(action, "skip") == 0) ++ { ++ ret_val = ACT_SKIP; ++ } ++ ++ free(action); ++ } ++ ++ return ret_val; ++} ++ ++static void process_crashes(vector_of_problem_data_t *crash_list, long since) ++{ ++ ++ for (unsigned i = 0; i < crash_list->len; ++i) ++ { ++ problem_data_t *crash = get_problem_data(crash_list, i); ++ ++ if (since != 0) ++ { ++ char *s = problem_data_get_content_or_NULL(crash, FILENAME_LAST_OCCURRENCE); ++ long val = s ? atol(s) : 0; ++ if (val < since) ++ continue; ++ } ++ ++ /* do not print '\n' before first problem */ ++ if(i != 0) ++ printf("\n"); ++ ++ int action = process_one_crash(crash); ++ ++ if (i != crash_list->len - 1) ++ { ++ if (action == ACT_REMOVE || action == ACT_REPORT || action == ACT_INFO) ++ { ++ /* dummy must be free because the function ask allocate memory */ ++ char *dummy = ask(_("For next problem press ENTER:")); ++ free(dummy); ++ } ++ } ++ } ++ return; ++} ++ ++int cmd_process(int argc, const char **argv) ++{ ++ const char *program_usage_string = _( ++ "Without --since argument, iterates over all detected problems." ++ ); ++ ++ int opt_since = 0; ++ struct options program_options[] = { ++ OPT__VERBOSE(&g_verbose), ++ OPT_INTEGER('s', "since" , &opt_since, _("Selects only problems detected after timestamp")), ++ OPT_END() ++ }; ++ ++ parse_opts(argc, (char **)argv, program_options, program_usage_string); ++ argv += optind; ++ ++ GList *D_list = get_problem_storages(); ++ ++ vector_of_problem_data_t *ci = fetch_crash_infos(D_list); ++ ++ g_ptr_array_sort_with_data(ci, &cmp_problem_data, (char *) FILENAME_LAST_OCCURRENCE); ++ ++ process_crashes(ci, opt_since); ++ ++ free_vector_of_problem_data(ci); ++ list_free_with_free(D_list); ++ ++ return 0; ++} +-- +1.8.3.1 + diff --git a/SOURCES/0066-Translation-updates.patch b/SOURCES/0066-Translation-updates.patch new file mode 100644 index 0000000..a5d2063 --- /dev/null +++ b/SOURCES/0066-Translation-updates.patch @@ -0,0 +1,89286 @@ +From 64bab13f8ca889e21176eca2e572f16a1e5064de Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 3 Oct 2014 13:51:12 +0200 +Subject: [ABRT PATCH 66/66] Translation updates + +Signed-off-by: Jakub Filak +--- + po/LINGUAS | 14 +- + po/ach.po | 1849 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/af.po | 373 ++++++++++-- + po/af_ZA.po | 1588 ------------------------------------------------ + po/aln.po | 373 ++++++++++-- + po/am.po | 373 ++++++++++-- + po/ar.po | 373 ++++++++++-- + po/as.po | 381 ++++++++++-- + po/ast.po | 373 ++++++++++-- + po/az.po | 375 ++++++++++-- + po/bal.po | 373 ++++++++++-- + po/be.po | 373 ++++++++++-- + po/bg.po | 375 ++++++++++-- + po/bn.po | 377 ++++++++++-- + po/bn_IN.po | 383 ++++++++++-- + po/bo.po | 373 ++++++++++-- + po/br.po | 373 ++++++++++-- + po/brx.po | 373 ++++++++++-- + po/bs.po | 373 ++++++++++-- + po/ca.po | 373 ++++++++++-- + po/cs.po | 377 ++++++++++-- + po/cs_CZ.po | 1588 ------------------------------------------------ + po/cy.po | 373 ++++++++++-- + po/da.po | 373 ++++++++++-- + po/de.po | 379 ++++++++++-- + po/de_CH.po | 373 ++++++++++-- + po/dz.po | 373 ++++++++++-- + po/el.po | 375 ++++++++++-- + po/en_GB.po | 379 ++++++++++-- + po/en_US.po | 373 ++++++++++-- + po/eo.po | 373 ++++++++++-- + po/es.po | 387 ++++++++++-- + po/es_ES.po | 1588 ------------------------------------------------ + po/et.po | 375 ++++++++++-- + po/eu.po | 373 ++++++++++-- + po/eu_ES.po | 1588 ------------------------------------------------ + po/fa.po | 373 ++++++++++-- + po/fa_IR.po | 1588 ------------------------------------------------ + po/fi.po | 375 ++++++++++-- + po/fr.po | 380 ++++++++++-- + po/ga.po | 373 ++++++++++-- + po/gl.po | 375 ++++++++++-- + po/gu.po | 379 ++++++++++-- + po/he.po | 373 ++++++++++-- + po/hi.po | 381 ++++++++++-- + po/hr.po | 373 ++++++++++-- + po/hr_HR.po | 1588 ------------------------------------------------ + po/hu.po | 379 ++++++++++-- + po/hy.po | 373 ++++++++++-- + po/ia.po | 373 ++++++++++-- + po/id.po | 373 ++++++++++-- + po/ilo.po | 373 ++++++++++-- + po/is.po | 373 ++++++++++-- + po/it.po | 379 ++++++++++-- + po/it_IT.po | 1588 ------------------------------------------------ + po/ja.po | 379 ++++++++++-- + po/ja_JP.po | 1588 ------------------------------------------------ + po/ka.po | 373 ++++++++++-- + po/kk.po | 373 ++++++++++-- + po/km.po | 373 ++++++++++-- + po/kn.po | 377 ++++++++++-- + po/ko.po | 377 ++++++++++-- + po/ks.po | 373 ++++++++++-- + po/ku.po | 373 ++++++++++-- + po/ky.po | 373 ++++++++++-- + po/la.po | 373 ++++++++++-- + po/lo.po | 373 ++++++++++-- + po/lt.po | 375 ++++++++++-- + po/lt_LT.po | 1517 ---------------------------------------------- + po/lv.po | 373 ++++++++++-- + po/mai.po | 373 ++++++++++-- + po/mg.po | 373 ++++++++++-- + po/mk.po | 373 ++++++++++-- + po/ml.po | 377 ++++++++++-- + po/mn.po | 373 ++++++++++-- + po/mr.po | 377 ++++++++++-- + po/ms.po | 373 ++++++++++-- + po/ms_MY.po | 1588 ------------------------------------------------ + po/my.po | 373 ++++++++++-- + po/nb.po | 373 ++++++++++-- + po/nds.po | 373 ++++++++++-- + po/ne.po | 373 ++++++++++-- + po/nl.po | 377 ++++++++++-- + po/nn.po | 373 ++++++++++-- + po/no.po | 373 ++++++++++-- + po/nso.po | 373 ++++++++++-- + po/or.po | 377 ++++++++++-- + po/pa.po | 381 ++++++++++-- + po/pl.po | 377 ++++++++++-- + po/pt.po | 381 ++++++++++-- + po/pt_BR.po | 384 ++++++++++-- + po/ro.po | 373 ++++++++++-- + po/ru.po | 379 ++++++++++-- + po/ru_RU.po | 373 ++++++++++-- + po/si.po | 373 ++++++++++-- + po/sk.po | 379 ++++++++++-- + po/sl.po | 373 ++++++++++-- + po/sq.po | 373 ++++++++++-- + po/sr.po | 373 ++++++++++-- + po/sr@latin.po | 373 ++++++++++-- + po/sv.po | 379 ++++++++++-- + po/ta.po | 377 ++++++++++-- + po/ta_IN.po | 1588 ------------------------------------------------ + po/te.po | 379 ++++++++++-- + po/tg.po | 373 ++++++++++-- + po/th.po | 373 ++++++++++-- + po/tl.po | 373 ++++++++++-- + po/tr.po | 373 ++++++++++-- + po/uk.po | 377 ++++++++++-- + po/uk_UA.po | 1588 ------------------------------------------------ + po/ur.po | 373 ++++++++++-- + po/uz.po | 1849 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + po/vi.po | 392 ++++++++++-- + po/wo.po | 373 ++++++++++-- + po/xh.po | 373 ++++++++++-- + po/zh_CN.po | 383 ++++++++++-- + po/zh_HK.po | 373 ++++++++++-- + po/zh_TW.po | 377 ++++++++++-- + po/zu.po | 373 ++++++++++-- + 119 files changed, 36783 insertions(+), 24931 deletions(-) + create mode 100644 po/ach.po + delete mode 100644 po/af_ZA.po + delete mode 100644 po/cs_CZ.po + delete mode 100644 po/es_ES.po + delete mode 100644 po/eu_ES.po + delete mode 100644 po/fa_IR.po + delete mode 100644 po/hr_HR.po + delete mode 100644 po/it_IT.po + delete mode 100644 po/ja_JP.po + delete mode 100644 po/lt_LT.po + delete mode 100644 po/ms_MY.po + delete mode 100644 po/ta_IN.po + delete mode 100644 po/uk_UA.po + create mode 100644 po/uz.po + +diff --git a/po/LINGUAS b/po/LINGUAS +index 7b176b0..c239e6c 100644 +--- a/po/LINGUAS ++++ b/po/LINGUAS +@@ -1,5 +1,5 @@ ++ach + af +-af_ZA + aln + am + ar +@@ -17,7 +17,6 @@ brx + bs + ca + cs +-cs_CZ + cy + da + de +@@ -28,12 +27,9 @@ en_GB + en_US + eo + es +-es_ES + et + eu +-eu_ES + fa +-fa_IR + fi + fr + ga +@@ -42,7 +38,6 @@ gu + he + hi + hr +-hr_HR + hu + hy + ia +@@ -50,9 +45,7 @@ id + ilo + is + it +-it_IT + ja +-ja_JP + ka + kk + km +@@ -64,7 +57,6 @@ ky + la + lo + lt +-lt_LT + lv + mai + mg +@@ -73,7 +65,6 @@ ml + mn + mr + ms +-ms_MY + my + nb + nds +@@ -98,15 +89,14 @@ sr + sr@latin + sv + ta +-ta_IN + te + tg + th + tl + tr + uk +-uk_UA + ur ++uz + vi + wo + xh +diff --git a/po/ach.po b/po/ach.po +new file mode 100644 +index 0000000..22d18df +--- /dev/null ++++ b/po/ach.po +@@ -0,0 +1,1849 @@ ++# SOME DESCRIPTIVE TITLE. ++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the PACKAGE package. ++# ++# Translators: ++msgid "" ++msgstr "" ++"Project-Id-Version: ABRT\n" ++"Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Acoli (http://www.transifex.com/projects/p/fedora-abrt/language/ach/)\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Language: ach\n" ++"Plural-Forms: nplurals=2; plural=(n > 1);\n" ++ ++#: ../src/applet/abrt-applet.desktop.in.h:1 ++msgid "Automatic Bug Reporting Tool" ++msgstr "" ++ ++#: ../src/applet/abrt-applet.desktop.in.h:2 ++msgid "ABRT notification applet" ++msgstr "" ++ ++#: ../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" ++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:243 ++#, c-format ++msgid "Can't connect to NetworkManager over DBus: %s" ++msgstr "" ++ ++#: ../src/applet/applet.c:267 ++#, c-format ++msgid "Can't determine network status via NetworkManager: %s" ++msgstr "" ++ ++#: ../src/applet/applet.c:386 ++msgid "A problem has been detected" ++msgstr "" ++ ++#: ../src/applet/applet.c:388 ++#, c-format ++msgid "A problem in the %s package has been detected" ++msgstr "" ++ ++#: ../src/applet/applet.c:398 ++#, c-format ++msgid "%s and the diagnostic data has been submitted" ++msgstr "" ++ ++#: ../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:632 ../src/applet/applet.c:708 ++#, c-format ++msgid "Can't close notification: %s" ++msgstr "" ++ ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++msgid "Warning" ++msgstr "" ++ ++#: ../src/applet/applet.c:798 ++msgid "" ++"Notification area applet that notifies users about issues detected by ABRT" ++msgstr "" ++ ++#: ../src/applet/applet.c:814 ++msgid "translator-credits" ++msgstr "" ++ ++#: ../src/applet/applet.c:822 ++msgid "_Quit" ++msgstr "" ++ ++#: ../src/applet/applet.c:824 ++msgid "Hide" ++msgstr "" ++ ++#: ../src/applet/applet.c:826 ++msgid "_About" ++msgstr "" ++ ++#: ../src/applet/applet.c:894 ++msgid "Problem detected" ++msgstr "" ++ ++#: ../src/applet/applet.c:944 ++msgid "Ignore forever" ++msgstr "" ++ ++#. Problem has been 'autoreported' and is considered as KNOWN ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++msgid "Open" ++msgstr "" ++ ++#: ../src/applet/applet.c:960 ++msgid "The Problem has already been Reported" ++msgstr "" ++ ++#: ../src/applet/applet.c:960 ++msgid "A Known Problem has Occurred" ++msgstr "" ++ ++#. Problem has not yet been 'autoreported' and can be ++#. * 'autoreported' on user request. ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++msgid "Report" ++msgstr "" ++ ++#: ../src/applet/applet.c:984 ++msgid "A Problem has Occurred" ++msgstr "" ++ ++#: ../src/applet/applet.c:1010 ++msgid "A Problem has been Reported" ++msgstr "" ++ ++#: ../src/applet/applet.c:1018 ++msgid "A New Problem has Occurred" ++msgstr "" ++ ++#: ../src/applet/applet.c:1028 ++#, c-format ++msgid "Can't show notification: %s" ++msgstr "" ++ ++#. TODO: Terminate child's process? ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#, c-format ++msgid "Can't read from gio channel: '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:1146 ++#, c-format ++msgid "Can't set encoding on gio channel: %s" ++msgstr "" ++ ++#: ../src/applet/applet.c:1150 ++#, c-format ++msgid "Can't turn on nonblocking mode for gio channel: %s" ++msgstr "" ++ ++#: ../src/applet/applet.c:1184 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:1193 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:1476 ++#, c-format ++msgid "" ++"Failed to open connection to session manager: '%s', notification may " ++"reappear on the next login" ++msgstr "" ++ ++#: ../src/applet/applet.c:1617 ++msgid "" ++"& [-v] [DIR]...\n" ++"\n" ++"Applet which notifies user when new problems are detected by ABRT\n" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ ++#: ../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:112 ++#: ../src/configuration-gui/main.c:36 ++msgid "Problem Reporting Configuration" ++msgstr "" ++ ++#: ../src/configuration-gui/main.c:75 ++msgid "About System Config ABRT" ++msgstr "" ++ ++#: ../src/configuration-gui/main.c:105 ++msgid "About" ++msgstr "" ++ ++#: ../src/configuration-gui/main.c:106 ++msgid "Quit" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-package-data.c:382 ++msgid "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Query package database and save package and component name" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:53 ++#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-oops.c:48 ++#: ../src/plugins/abrt-action-analyze-xorg.c:84 ++#: ../src/plugins/abrt-action-analyze-python.c:47 ++#: ../src/plugins/abrt-action-generate-backtrace.c:55 ++#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 ++msgid "Problem directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-package-data.c:395 ++msgid "Configuration file" ++msgstr "" ++ ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++msgid "& [options]" ++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: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 "" ++ ++#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++msgid "Add program names to log" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:123 ++msgid "Unknown error" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:188 ++#, c-format ++msgid "'%s' is not a valid problem directory" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:223 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 ++#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-configuration.c:683 ++#, c-format ++msgid "Not Authorized" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:256 ++msgid "Can't access the problem for modification" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:461 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:559 ++#, c-format ++msgid "'%s' is not a valid element name" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:580 ++#, c-format ++msgid "Can't get size of '%s'" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:595 ++msgid "No problem space left" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:627 ++#, c-format ++msgid "Can't delete the element '%s' from the problem directory '%s'" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" ++ ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:499 ++msgid "Exit after NUM seconds of inactivity" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++msgid "This program must be run as root." ++msgstr "" ++ ++#: ../src/daemon/abrtd.c:451 ++msgid "" ++"The problem data are incomplete. This usually happens when a problem is " ++"detected while computer is shutting down or user is logging out. In order to" ++" 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 "" ++ ++#: ../src/daemon/abrtd.c:497 ++msgid "Do not daemonize" ++msgstr "" ++ ++#: ../src/daemon/abrtd.c:498 ++msgid "Log to syslog even with -d" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-event.c:388 ++msgid "& [-v -i] -e|--event EVENT DIR..." ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-event.c:396 ++msgid "Run EVENT on DIR" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-event.c:397 ++msgid "Communicate directly to the user" ++msgstr "" ++ ++#: ../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:258 ++msgid "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" ++"specified in abrt.conf\n" ++"\n" ++"If UPLOAD_DIRECTORY is not provided, uses a value of\n" ++"WatchCrashdumpArchiveDir option from abrt.conf" ++msgstr "" ++ ++#: ../src/daemon/abrt-upload-watch.c:281 ++msgid "Daemize" ++msgstr "" ++ ++#: ../src/daemon/abrt-upload-watch.c:282 ++msgid "Number of concurrent workers. Default is " ++msgstr "" ++ ++#: ../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 "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:113 ++msgid "Invalid number of arguments" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:138 ++#, c-format ++msgid "Unknown option value: '%s'\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ ++#. Let user know what's going on ++#: ../src/lib/hooklib.c:253 ++msgid "Generating backtrace" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:42 ++#, c-format ++msgid "Can't connect to system DBus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:68 ++#, c-format ++msgid "Can't chown '%s': %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:97 ++#, c-format ++msgid "Deleting problem directory failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:133 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:169 ++#, c-format ++msgid "Can't get problem list from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/ignored_problems.c:233 ++#, c-format ++msgid "Can't create temporary file '%s'" ++msgstr "" ++ ++#: ../src/lib/ignored_problems.c:250 ++#, c-format ++msgid "" ++"Can't write to '%s'. Problem '%s' will not be removed from the ignored " ++"problems '%s'" ++msgstr "" ++ ++#. Something nefarious happened ++#: ../src/lib/ignored_problems.c:264 ++#, c-format ++msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-backtrace.c:41 ++msgid "" ++"& [options] -d DIR\n" ++"\n" ++"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" ++"and identifies crash function in problem directory DIR" ++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 "" ++ ++#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++msgid "Crash thread not found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-c.c:67 ++msgid "" ++"& [-v] -d DIR\n" ++"\n" ++"Calculates and saves UUID of coredump in problem directory DIR" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-oops.c:37 ++msgid "" ++"& [-v] -d DIR\n" ++"\n" ++"Calculates and saves UUID and DUPHASH for oops problem directory DIR" ++msgstr "" ++ ++#: ../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 "" ++ ++#: ../src/plugins/abrt-action-analyze-xorg.c:113 ++#, c-format ++msgid "Module '%s' was loaded - won't report this crash" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-python.c:36 ++msgid "" ++"& [-v] -d DIR\n" ++"\n" ++"Calculates and saves UUID and DUPHASH of python crash dumps" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 ++msgid "Usage: {0} [-v[v]] [--core=VMCORE]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 ++msgid "File {0} doesn't exist" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 ++msgid "Extracting the oops text from core" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 ++msgid "" ++"Can't process {0}:\n" ++"{1}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 ++msgid "Can't extract the oops message: '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 ++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" ++"\n" ++"Analyzes coredump in problem directory DIR, generates and saves backtrace" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-generate-backtrace.c:56 ++msgid "Additional debuginfo directories" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-generate-backtrace.c:57 ++msgid "Kill gdb if it runs for more than NUM seconds" ++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 "" ++ ++#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 ++msgid "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"Creates coredump-level backtrace from core dump and corresponding binary" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 ++msgid "Do not hash fingerprints" ++msgstr "" ++ ++#. Let user know what's going on ++#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 ++msgid "Generating core_backtrace" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 ++msgid "Error: GDB did not return any data" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 ++#, c-format ++msgid "Error: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:51 ++msgid "Exiting on user command" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:88 ++#, c-format ++msgid "" ++"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" ++"to CACHEDIR, using TMPDIR as temporary staging area.\n" ++"Old 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" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:169 ++msgid "Can't open {0}: {1}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:206 ++msgid "Coredump references {0} debuginfo files, {1} of them are not installed" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:209 ++msgid "{0} of debuginfo files are not installed" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:223 ++msgid "Missing requested file: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:228 ++msgid "Missing debuginfo file: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:231 ++msgid "All debuginfo files are available" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++msgid "" ++"Ok to upload core dump? (It may contain sensitive data). If your answer is " ++"'No', a stack trace will be generated locally. (It may download a huge " ++"amount of data)." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++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 "" ++ ++#: ../src/plugins/abrt-action-trim-files.c:222 ++msgid "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"FILEs are preserved (never deleted)." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-trim-files.c:236 ++msgid "Delete whole problem directories" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-trim-files.c:237 ++msgid "Delete files inside this directory" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-trim-files.c:238 ++msgid "Preserve this directory" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:529 ++msgid "Signal sent by userspace code" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:533 ++msgid "Signal sent by timer/IO/async event" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:541 ++msgid "Signal has siginfo.si_code = SI_USER" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:544 ++msgid "Signal due to write to closed pipe" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:550 ++#: ../src/plugins/abrt-gdb-exploitable:575 ++msgid "Signal sent by keyboard" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:554 ++#: ../src/plugins/abrt-gdb-exploitable:579 ++msgid "Job control signal sent by kernel" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:558 ++#: ../src/plugins/abrt-gdb-exploitable:587 ++msgid "Signal sent by window resize" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:562 ++#: ../src/plugins/abrt-gdb-exploitable:591 ++msgid "Signal sent by alarm(N) expiration" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:583 ++msgid "Signal due to write to broken pipe" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:607 ++msgid "ABRT signal (abort() was called?)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:616 ++msgid "XCPU signal (over CPU time limit)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:620 ++msgid "XFSZ signal (over file size limit)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:624 ++msgid "TRAP signal (can be a bug in a debugger/tracer)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:628 ++msgid "SYS signal (unknown syscall was called?)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:633 ++msgid "Arithmetic exception" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:637 ++msgid "Division by zero" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:641 ++msgid "Illegal instruction (jump to a random address?)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:647 ++msgid "Non-crash related signal" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:652 ++msgid "Stack overflow" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:656 ++msgid "Write to an invalid address" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:660 ++msgid "Subroutine return to an invalid address (corrupted stack?)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:666 ++#: ../src/plugins/abrt-gdb-exploitable:670 ++msgid "Jump to an invalid address" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:674 ++msgid "" ++"Access past the end of mapped file, invalid address, unaligned access, etc" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:693 ++msgid "Can't get signal no and do exploitability analysis\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:706 ++msgid "Likely crash reason: " ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:707 ++msgid "Exploitable rating (0-9 scale): " ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:709 ++msgid "Current instruction: " ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:711 ++msgid "Exploitability analysis came up empty\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-watch-log.c:142 ++msgid "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Watch log file FILE, run PROG when it grows or is replaced" ++msgstr "" ++ ++#: ../src/plugins/abrt-watch-log.c:154 ++msgid "Don't run PROG if STRs aren't found" ++msgstr "" ++ ++#: ../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: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: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:153 ++#, c-format ++msgid " Tainted modules: %s." ++msgstr "" ++ ++#: ../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: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:278 ++msgid "Create new problem directory in DIR for every oops found" ++msgstr "" ++ ++#: ../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:280 ++msgid "Save the extracted information in PROBLEM" ++msgstr "" ++ ++#: ../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:282 ++msgid "Throttle problem directory creation to 1 per second" ++msgstr "" ++ ++#: ../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:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 ++msgid "Can't update the problem: more than one oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:421 ++#, c-format ++msgid "Sleeping for %d seconds" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:237 ++msgid "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extract Xorg crash from FILE (or standard input)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:245 ++msgid "Print found crash data on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:246 ++msgid "Create problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:70 ++msgid "" ++"Retrace server can not be used, because the crash is too large. Try local " ++"retracing." ++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 "" ++ ++#: ../src/plugins/abrt-retrace-client.c:211 ++#: ../src/plugins/abrt-retrace-client.c:398 ++#: ../src/plugins/abrt-retrace-client.c:666 ++#: ../src/plugins/abrt-retrace-client.c:832 ++#, c-format ++msgid "Failed to send HTTP header of length %d: NSS error %d" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:223 ++#: ../src/plugins/abrt-retrace-client.c:412 ++#: ../src/plugins/abrt-retrace-client.c:765 ++#: ../src/plugins/abrt-retrace-client.c:849 ++#: ../src/plugins/abrt-retrace-client.c:916 ++#: ../src/plugins/abrt-retrace-client.c:1001 ++#: ../src/plugins/abrt-retrace-client.c:1060 ++#, c-format ++msgid "" ++"Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:232 ++#: ../src/plugins/abrt-retrace-client.c:745 ++#: ../src/plugins/abrt-retrace-client.c:841 ++#: ../src/plugins/abrt-retrace-client.c:908 ++#: ../src/plugins/abrt-retrace-client.c:982 ++#: ../src/plugins/abrt-retrace-client.c:1052 ++msgid "Invalid response from server: missing HTTP message body." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:424 ++#, c-format ++msgid "" ++"Retrace server is unable to process package '%s.%s'.\n" ++"Is it a part of official '%s' repositories?" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:444 ++msgid "Querying server settings" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:452 ++msgid "The server is fully occupied. Try again later." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:453 ++msgid "The server denied your request." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:484 ++#: ../src/plugins/abrt-retrace-client.c:500 ++#, c-format ++msgid "'%s' must be a regular file in order to use Retrace server." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:514 ++#, c-format ++msgid "" ++"The size of your crash is %lld bytes, but the retrace server only accepts " ++"crashes smaller or equal to %lld bytes." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:534 ++msgid "The server does not support xz-compressed tarballs." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:571 ++#, c-format ++msgid "The release '%s' is not supported by the Retrace server." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:575 ++msgid "The server is not able to handle your request." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:594 ++msgid "Unknown package sent to Retrace server." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:603 ++msgid "Preparing an archive to upload" ++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 "" ++ ++#: ../src/plugins/abrt-retrace-client.c:629 ++#, c-format ++msgid "You are going to upload %d megabytes. Continue?" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:638 ++msgid "Cancelled by user" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:673 ++#, c-format ++msgid "Uploading %d megabytes\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:675 ++#, c-format ++msgid "Uploading %lld bytes\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:699 ++#, c-format ++msgid "Uploading %d%%\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:711 ++msgid "Failed to read from a pipe" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:724 ++#, c-format ++msgid "Failed to send data: NSS error %d (%s): %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:735 ++msgid "Upload successful" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:757 ++msgid "" ++"Your problem directory is corrupted and can not be processed by the Retrace " ++"server." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:759 ++msgid "" ++"The archive contains malicious files (such as symlinks) and thus can not be " ++"processed." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:772 ++msgid "Invalid response from server: missing X-Task-Id." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:778 ++msgid "Invalid response from server: missing X-Task-Password." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:785 ++msgid "Retrace job started" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:798 ++#, c-format ++msgid "" ++"Task Id: %s\n" ++"Task Password: %s\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:856 ++msgid "Invalid response from server: missing X-Task-Status." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:868 ++#, c-format ++msgid "" ++"Task Status: %s\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 "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1160 ++msgid "" ++"Retrace failed. Try again later and if the problem persists report this " ++"issue please." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1207 ++msgid "log to syslog" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1209 ++msgid "allow insecure connection to retrace server" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1211 ++msgid "" ++"do not check whether retrace server is able to process given package before " ++"uploading the archive" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1214 ++msgid "retrace server URL" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1216 ++msgid "retrace server port" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1218 ++msgid "(debug) show received HTTP headers" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1219 ++msgid "For create and batch operations" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1221 ++msgid "read data from ABRT problem directory" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1223 ++msgid "read data from coredump" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1225 ++msgid "Delay for polling operations" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1227 ++msgid "(debug) do not delete temporary archive created from dump dir in " ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1229 ++msgid "For status, backtrace, and log operations" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1231 ++msgid "id of your task on server" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1233 ++msgid "password of your task on server" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1237 ++msgid "" ++"abrt-retrace-client [options]\n" ++"Operations: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1282 ++#: ../src/plugins/abrt-retrace-client.c:1288 ++msgid "Either problem directory or coredump is needed." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1294 ++#: ../src/plugins/abrt-retrace-client.c:1302 ++#: ../src/plugins/abrt-retrace-client.c:1310 ++#: ../src/plugins/abrt-retrace-client.c:1318 ++msgid "Task id is needed." ++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 "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1324 ++#, c-format ++msgid "Unknown operation: %s." ++msgstr "" ++ ++#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 ++msgid "Local GNU Debugger" ++msgstr "" ++ ++#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 ++msgid "Download debuginfo packages and generate backtrace locally using GDB" ++msgstr "" ++ ++#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 ++msgid "" ++"Needs to downloads debuginfo packages, which might take significant time, " ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump" ++" to remote machines." ++msgstr "" ++ ++#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 ++msgid "Send core dump to remote retrace server for analysis" ++msgstr "" ++ ++#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 ++msgid "" ++"Uploads coredump to a server, which generates backtrace and returns it. " ++"Pros: no need for debuginfo downloads. Retrace server's database of " ++"debuginfos is more complete. Retrace server may generate better backtraces. " ++"Cons: coredump you upload contains all the data from the crashed program, " ++"including your private data, if any." ++msgstr "" ++ ++#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 ++#: ../src/plugins/analyze_CCpp.xml.in.h:3 ++msgid "Retrace server 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 "" ++ ++#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 ++#: ../src/plugins/analyze_CCpp.xml.in.h:5 ++msgid "Insecure" ++msgstr "" ++ ++#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 ++#: ../src/plugins/analyze_CCpp.xml.in.h:6 ++msgid "Whether or not to use insecure connection" ++msgstr "" ++ ++#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 ++#: ../src/plugins/analyze_CCpp.xml.in.h:7 ++msgid "" ++"Write \"insecure\" to allow insecure connection <a " ++"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" ++" >(warning)</a>" ++msgstr "" ++ ++#: ../src/plugins/collect_xsession_errors.xml.in.h:1 ++msgid "Collect .xsession-errors" ++msgstr "" ++ ++#: ../src/plugins/collect_xsession_errors.xml.in.h:2 ++msgid "Save relevant lines from ~/.xsession-errors file" ++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 "" ++ ++#: ../src/plugins/https-utils.c:62 ++msgid "An error occurred on the server side." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:65 ++#, c-format ++msgid "A server-side error occurred on '%s'" ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:74 ++msgid "An error occurred while connecting to the server" ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:77 ++#, c-format ++msgid "An error occurred while connecting to '%s'" ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:97 ++#, c-format ++msgid "Issuer certificate is invalid: '%s'." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:100 ++#, c-format ++msgid "Certificate is signed by an untrusted issuer: '%s'." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:103 ++#, c-format ++msgid "Certificate subject name '%s' does not match target host name '%s'." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:107 ++msgid "Remote certificate has expired." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:110 ++#, c-format ++msgid "Certificate issuer is not recognized: '%s'." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:113 ++#, c-format ++msgid "Bad certificate received. Subject '%s', issuer '%s'." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:149 ++#, c-format ++msgid "Failed to get slot 'PEM Token #0': %d." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:182 ++#, c-format ++msgid "Can't resolve host name '%s'. NSS error %d." ++msgstr "" ++ ++#. Host exists, but has neither IPv4 nor IPv6?? ++#: ../src/plugins/https-utils.c:203 ++#, c-format ++msgid "Can't resolve host name '%s'." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:210 ++msgid "Failed to set socket blocking mode." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:213 ++msgid "Failed to wrap TCP socket by SSL." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:215 ++msgid "Failed to enable client handshake to SSL socket." ++msgstr "" ++ ++#: ../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:233 ++#, c-format ++msgid "Can't connect to '%s'" ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:241 ++msgid "Failed to set certificate hook." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:247 ++msgid "Failed to set handshake callback." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:251 ++msgid "Failed to reset handshake." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:258 ++#, c-format ++msgid "Failed to complete SSL handshake: NSS error %d." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:267 ++msgid "Failed to close SSL socket." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:332 ++#, c-format ++msgid "Malformed HTTP response header: '%s'" ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:369 ++#, c-format ++msgid "Receiving of data failed: NSS error %d." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:398 ++msgid "Malformed chunked response." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:423 ++msgid "Failed to initialize NSS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:429 ++msgid "Failed to initialize security module." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:444 ++msgid "Failed to shutdown NSS." ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:375 ++msgid "List of bug ids" ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:376 ++msgid "Specify a bodhi server url" ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:377 ++msgid "Specify a release" ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:382 ++msgid "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Search for updates on bodhi server" ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:434 ++msgid "Searching for updates" ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:440 ++msgid "No updates for this package found" ++msgstr "" ++ ++#. strbuf_free(q); ++#: ../src/plugins/bodhi.c:469 ++msgid "Local version of the package is newer than available updates" ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:486 ++#, c-format ++msgid "" ++"An update exists which might fix your problem. You can install it by " ++"running: %s. Do you want to continue with reporting the bug?" ++msgstr "" ++ ++#: ../src/hooks/abrt-merge-pstoreoops.c:85 ++msgid "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"Scans files for split oops message. Can print and/or delete them." ++msgstr "" ++ ++#: ../src/hooks/abrt-merge-pstoreoops.c:97 ++msgid "Print found oopses" ++msgstr "" ++ ++#: ../src/hooks/abrt-merge-pstoreoops.c:98 ++msgid "Delete files with found oopses" ++msgstr "" ++ ++#: ../src/cli/abrt-cli-core.c:91 ++#, c-format ++msgid "'%s' identifies more than one problem directory" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:144 ++msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:149 ++msgid "Remove problem directory DIR" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:150 ++msgid "Analyze and report problem data in DIR" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:151 ++msgid "Print information about DIR" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:152 ++msgid "Print the count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 ++msgid "See 'abrt-cli COMMAND --help' for more information" ++msgstr "" ++ ++#: ../src/cli/list.c:179 ++msgid "& list [options] [DIR]..." ++msgstr "" ++ ++#: ../src/cli/list.c:188 ++msgid "List only not-reported problems" ++msgstr "" ++ ++#. deprecate -d option with --pretty=full ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++msgid "Show detailed report" ++msgstr "" ++ ++#: ../src/cli/list.c:191 ++msgid "List only the problems more recent than specified timestamp" ++msgstr "" ++ ++#: ../src/cli/list.c:192 ++msgid "List only the problems older than specified timestamp" ++msgstr "" ++ ++#: ../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:235 ++msgid "& info [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/list.c:244 ++msgid "Text larger than this will be shown abridged" ++msgstr "" ++ ++#: ../src/cli/list.c:264 ++#, c-format ++msgid "No such problem directory '%s'" ++msgstr "" ++ ++#: ../src/cli/status.c:70 ++msgid "& status [DIR]..." ++msgstr "" ++ ++#: ../src/cli/status.c:78 ++msgid "Print only the problem count without any message" ++msgstr "" ++ ++#: ../src/cli/status.c:79 ++msgid "Print only the problems more recent than specified timestamp" ++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 "" ++ ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ ++#: ../src/plugins/analyze_CCpp.xml.in.h:1 ++msgid "" ++"Send core dump to remote retrace server for analysis or perform local " ++"analysis if the remote analysis fails" ++msgstr "" ++ ++#: ../src/plugins/analyze_CCpp.xml.in.h:2 ++msgid "" ++"Uploads coredump to a server, which generates backtrace and returns it. If " ++"user doens't want to upload his coredump to anywhere the event performs " ++"local analysis. Local analysis is run event if remote analysis fails. Pros: " ++"no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump" ++" you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++ ++#: ../src/plugins/analyze_VMcore.xml.in.h:1 ++msgid "Analyze VM core" ++msgstr "" ++ ++#: ../src/plugins/analyze_VMcore.xml.in.h:2 ++msgid "" ++"Install kernel debuginfo packages, generate kernel log and oops message" ++msgstr "" ++ ++#: ../src/plugins/analyze_VMcore.xml.in.h:3 ++msgid "" ++"Needs to install kernel debuginfo packages, which might take significant " ++"time, and take up disk space." ++msgstr "" ++ ++#: ../src/plugins/collect_GConf.xml.in.h:1 ++msgid "Collect GConf configuration" ++msgstr "" ++ ++#: ../src/plugins/collect_GConf.xml.in.h:2 ++msgid "Save configuration from application's GConf directory" ++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 "" ++ ++#: ../src/plugins/collect_vimrc_system.xml.in.h:1 ++msgid "Collect system-wide vim configuration files" ++msgstr "" ++ ++#: ../src/plugins/collect_vimrc_system.xml.in.h:2 ++msgid "Save /etc/vimrc and /etc/gvimrc" ++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 "" ++ ++#: ../src/plugins/collect_vimrc_user.xml.in.h:1 ++msgid "Collect yours vim configuration files" ++msgstr "" ++ ++#: ../src/plugins/collect_vimrc_user.xml.in.h:2 ++msgid "Save .vimrc and .gvimrc from your home directory" ++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 "" ++ ++#: ../src/plugins/post_report.xml.in.h:1 ++msgid "Post report" ++msgstr "" ++ ++#: ../src/plugins/post_report.xml.in.h:2 ++msgid "Executed after the reporting is finished" ++msgstr "" ++ ++#: ../src/plugins/post_report.xml.in.h:3 ++msgid "Used for updating of the databases" ++msgstr "" +diff --git a/po/af.po b/po/af.po +index 3357963..1fa4436 100644 +--- a/po/af.po ++++ b/po/af.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Afrikaans (http://www.transifex.com/projects/p/fedora/language/af/)\n" ++"Language-Team: Afrikaans (http://www.transifex.com/projects/p/fedora-abrt/language/af/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/af_ZA.po b/po/af_ZA.po +deleted file mode 100644 +index 0227111..0000000 +--- a/po/af_ZA.po ++++ /dev/null +@@ -1,1588 +0,0 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: +-msgid "" +-msgstr "" +-"Project-Id-Version: ABRT\n" +-"Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Content-Transfer-Encoding: 8bit\n" +-"Language: af_ZA\n" +-"Plural-Forms: nplurals=2; plural=(n != 1);\n" +- +-#: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" +- +-#: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../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" +-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:243 +-#, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:267 +-#, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:386 +-msgid "A problem has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:388 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:398 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" +-msgstr "" +- +-#: ../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:632 ../src/applet/applet.c:698 +-#, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:788 +-msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "" +- +-#: ../src/applet/applet.c:804 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:812 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:814 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:816 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:884 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:934 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:950 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../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:969 ../src/applet/applet.c:1004 +-msgid "Report" +-msgstr "" +- +-#: ../src/applet/applet.c:974 +-msgid "A Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1000 +-msgid "A Problem has been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:1008 +-msgid "A New Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1018 +-#, c-format +-msgid "Can't show notification: %s" +-msgstr "" +- +-#. TODO: Terminate child's process? +-#: ../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:1136 +-#, c-format +-msgid "Can't set encoding on gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1140 +-#, c-format +-msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1172 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1182 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../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: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:75 +-msgid "_Close" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:84 +-msgid "_Defaults" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:110 +-#: ../src/configuration-gui/main.c:36 +-msgid "Problem Reporting Configuration" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:75 +-msgid "About System Config ABRT" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:105 +-msgid "About" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:106 +-msgid "Quit" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:382 +-msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" +-"\n" +-"Query package database and save package and component name" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:394 +-#: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 +-#: ../src/plugins/abrt-action-analyze-oops.c:48 +-#: ../src/plugins/abrt-action-analyze-xorg.c:84 +-#: ../src/plugins/abrt-action-analyze-python.c:47 +-#: ../src/plugins/abrt-action-generate-backtrace.c:55 +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 +-msgid "Problem directory" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:395 +-msgid "Configuration file" +-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 "" +- +-#: ../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: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 "" +- +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 +-msgid "Add program names to log" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:123 +-msgid "Unknown error" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:188 +-#, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:223 +-#, c-format +-msgid "'%s' element can't be modified" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 +-#, c-format +-msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:580 +-#, c-format +-msgid "Can't get size of '%s'" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:595 +-msgid "No problem space left" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:627 +-#, c-format +-msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#: ../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 "" +- +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 +-msgid "This program must be run as root." +-msgstr "" +- +-#: ../src/daemon/abrtd.c:451 +-msgid "" +-"The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" +- +-#: ../src/daemon/abrtd.c:497 +-msgid "Do not daemonize" +-msgstr "" +- +-#: ../src/daemon/abrtd.c:498 +-msgid "Log to syslog even with -d" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:388 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:396 +-msgid "Run EVENT on DIR" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:397 +-msgid "Communicate directly to the user" +-msgstr "" +- +-#: ../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:258 +-msgid "" +-"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +-"\n" +-"\n" +-"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" +-"specified in abrt.conf\n" +-"\n" +-"If UPLOAD_DIRECTORY is not provided, uses a value of\n" +-"WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:281 +-msgid "Daemize" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:282 +-msgid "Number of concurrent workers. Default is " +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" +-msgstr "" +- +-#: ../src/daemon/abrt-auto-reporting.c:138 +-#, c-format +-msgid "Unknown option value: '%s'\n" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/lib/hooklib.c:251 +-msgid "Generating backtrace" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:42 +-#, c-format +-msgid "Can't connect to system DBus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:66 +-#, c-format +-msgid "Can't chown '%s': %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:93 +-#, c-format +-msgid "Deleting problem directory failed: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:127 +-#, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:161 +-#, c-format +-msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/ignored_problems.c:231 +-#, c-format +-msgid "Can't create temporary file '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 +-#, c-format +-msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:41 +-msgid "" +-"& [options] -d DIR\n" +-"\n" +-"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" +-"and identifies crash function in problem directory DIR" +-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 "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 +-msgid "Crash thread not found" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-c.c:67 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-oops.c:37 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/plugins/abrt-action-analyze-xorg.c:113 +-#, c-format +-msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-python.c:36 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 +-msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 +-msgid "File {0} doesn't exist" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 +-msgid "Extracting the oops text from core" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 +-msgid "" +-"Can't process {0}:\n" +-"{1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 +-msgid "Can't extract the oops message: '{0}'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 +-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" +-"\n" +-"Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:56 +-msgid "Additional debuginfo directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:57 +-msgid "Kill gdb if it runs for more than NUM seconds" +-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 "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 +-msgid "" +-"& [-v] [-r] -d DIR\n" +-"\n" +-"Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +-msgid "Do not hash fingerprints" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 +-msgid "Generating core_backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 +-msgid "Error: GDB did not return any data" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 +-#, c-format +-msgid "Error: %s" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:51 +-msgid "Exiting on user command" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 +-#, c-format +-msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" +-" [-e, --exact=PATH[:PATH]...]\n" +-"\n" +-"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +-"to CACHEDIR, using TMPDIR as temporary staging area.\n" +-"Old 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" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 +-msgid "Can't open {0}: {1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 +-msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 +-msgid "{0} of debuginfo files are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 +-msgid "Missing requested file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 +-msgid "Missing debuginfo file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 +-msgid "All debuginfo files are available" +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 +-msgid "" +-"Ok to upload core dump? (It may contain sensitive data). If your answer is " +-"'No', a stack trace will be generated locally. (It may download a huge " +-"amount of data)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 +-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 "" +- +-#: ../src/plugins/abrt-action-trim-files.c:222 +-msgid "" +-"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" +-"\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" +-"FILEs are preserved (never deleted)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:236 +-msgid "Delete whole problem directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:237 +-msgid "Delete files inside this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:238 +-msgid "Preserve this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:529 +-msgid "Signal sent by userspace code" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:533 +-msgid "Signal sent by timer/IO/async event" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:541 +-msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:544 +-msgid "Signal due to write to closed pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:550 +-#: ../src/plugins/abrt-gdb-exploitable:575 +-msgid "Signal sent by keyboard" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:554 +-#: ../src/plugins/abrt-gdb-exploitable:579 +-msgid "Job control signal sent by kernel" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:558 +-#: ../src/plugins/abrt-gdb-exploitable:587 +-msgid "Signal sent by window resize" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:562 +-#: ../src/plugins/abrt-gdb-exploitable:591 +-msgid "Signal sent by alarm(N) expiration" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:583 +-msgid "Signal due to write to broken pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:607 +-msgid "ABRT signal (abort() was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:616 +-msgid "XCPU signal (over CPU time limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:620 +-msgid "XFSZ signal (over file size limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:624 +-msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:628 +-msgid "SYS signal (unknown syscall was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:633 +-msgid "Arithmetic exception" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:637 +-msgid "Division by zero" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:641 +-msgid "Illegal instruction (jump to a random address?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:647 +-msgid "Non-crash related signal" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:652 +-msgid "Stack overflow" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:656 +-msgid "Write to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:660 +-msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:666 +-#: ../src/plugins/abrt-gdb-exploitable:670 +-msgid "Jump to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:674 +-msgid "" +-"Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:693 +-msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:706 +-msgid "Likely crash reason: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:707 +-msgid "Exploitable rating (0-9 scale): " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:709 +-msgid "Current instruction: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:711 +-msgid "Exploitability analysis came up empty\n" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:142 +-msgid "" +-"& [-vs] [-F STR]... FILE PROG [ARGS]\n" +-"\n" +-"Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:154 +-msgid "Don't run PROG if STRs aren't found" +-msgstr "" +- +-#: ../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: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: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:153 +-#, c-format +-msgid " Tainted modules: %s." +-msgstr "" +- +-#: ../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: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:278 +-msgid "Create new problem directory in DIR for every oops found" +-msgstr "" +- +-#: ../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:280 +-msgid "Save the extracted information in PROBLEM" +-msgstr "" +- +-#: ../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:282 +-msgid "Throttle problem directory creation to 1 per second" +-msgstr "" +- +-#: ../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:379 +-msgid "Can't update the problem: more than one oops found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:398 +-#, c-format +-msgid "Sleeping for %d seconds" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:237 +-msgid "" +-"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" +-"\n" +-"Extract Xorg crash from FILE (or standard input)" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:245 +-msgid "Print found crash data on standard output" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:246 +-msgid "Create problem directory in DIR for every crash found" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:70 +-msgid "" +-"Retrace server can not be used, because the crash is too large. Try local " +-"retracing." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:211 +-#: ../src/plugins/abrt-retrace-client.c:398 +-#: ../src/plugins/abrt-retrace-client.c:666 +-#: ../src/plugins/abrt-retrace-client.c:832 +-#, c-format +-msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:223 +-#: ../src/plugins/abrt-retrace-client.c:412 +-#: ../src/plugins/abrt-retrace-client.c:765 +-#: ../src/plugins/abrt-retrace-client.c:849 +-#: ../src/plugins/abrt-retrace-client.c:916 +-#: ../src/plugins/abrt-retrace-client.c:1001 +-#: ../src/plugins/abrt-retrace-client.c:1060 +-#, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" +-"%s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:232 +-#: ../src/plugins/abrt-retrace-client.c:745 +-#: ../src/plugins/abrt-retrace-client.c:841 +-#: ../src/plugins/abrt-retrace-client.c:908 +-#: ../src/plugins/abrt-retrace-client.c:982 +-#: ../src/plugins/abrt-retrace-client.c:1052 +-msgid "Invalid response from server: missing HTTP message body." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:424 +-#, c-format +-msgid "" +-"Retrace server is unable to process package '%s.%s'.\n" +-"Is it a part of official '%s' repositories?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:444 +-msgid "Querying server settings" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:452 +-msgid "The server is fully occupied. Try again later." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:453 +-msgid "The server denied your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:484 +-#: ../src/plugins/abrt-retrace-client.c:500 +-#, c-format +-msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:514 +-#, c-format +-msgid "" +-"The size of your crash is %lld bytes, but the retrace server only accepts " +-"crashes smaller or equal to %lld bytes." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:534 +-msgid "The server does not support xz-compressed tarballs." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:571 +-#, c-format +-msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:575 +-msgid "The server is not able to handle your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:594 +-msgid "Unknown package sent to Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:603 +-msgid "Preparing an archive to upload" +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:629 +-#, c-format +-msgid "You are going to upload %d megabytes. Continue?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:638 +-msgid "Cancelled by user" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:673 +-#, c-format +-msgid "Uploading %d megabytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:675 +-#, c-format +-msgid "Uploading %lld bytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:699 +-#, c-format +-msgid "Uploading %d%%\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:711 +-msgid "Failed to read from a pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:724 +-#, c-format +-msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:735 +-msgid "Upload successful" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:757 +-msgid "" +-"Your problem directory is corrupted and can not be processed by the Retrace " +-"server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:759 +-msgid "" +-"The archive contains malicious files (such as symlinks) and thus can not be " +-"processed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:772 +-msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:778 +-msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:785 +-msgid "Retrace job started" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:798 +-#, c-format +-msgid "" +-"Task Id: %s\n" +-"Task Password: %s\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:856 +-msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:868 +-#, c-format +-msgid "" +-"Task Status: %s\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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1160 +-msgid "" +-"Retrace failed. Try again later and if the problem persists report this " +-"issue please." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1207 +-msgid "log to syslog" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1209 +-msgid "allow insecure connection to retrace server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1211 +-msgid "" +-"do not check whether retrace server is able to process given package before " +-"uploading the archive" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1214 +-msgid "retrace server URL" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1216 +-msgid "retrace server port" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1218 +-msgid "(debug) show received HTTP headers" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1219 +-msgid "For create and batch operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1221 +-msgid "read data from ABRT problem directory" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1223 +-msgid "read data from coredump" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1225 +-msgid "Delay for polling operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1227 +-msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1229 +-msgid "For status, backtrace, and log operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1231 +-msgid "id of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1233 +-msgid "password of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1237 +-msgid "" +-"abrt-retrace-client [options]\n" +-"Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1282 +-#: ../src/plugins/abrt-retrace-client.c:1288 +-msgid "Either problem directory or coredump is needed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1294 +-#: ../src/plugins/abrt-retrace-client.c:1302 +-#: ../src/plugins/abrt-retrace-client.c:1310 +-#: ../src/plugins/abrt-retrace-client.c:1318 +-msgid "Task id is needed." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1324 +-#, c-format +-msgid "Unknown operation: %s." +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 +-msgid "Local GNU Debugger" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 +-msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 +-msgid "" +-"Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +-msgid "Send core dump to remote retrace server for analysis" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +-#: ../src/plugins/analyze_CCpp.xml.in.h:3 +-msgid "Retrace server 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 "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 +-#: ../src/plugins/analyze_CCpp.xml.in.h:5 +-msgid "Insecure" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 +-#: ../src/plugins/analyze_CCpp.xml.in.h:6 +-msgid "Whether or not to use insecure connection" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 +-#: ../src/plugins/analyze_CCpp.xml.in.h:7 +-msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:1 +-msgid "Collect .xsession-errors" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:2 +-msgid "Save relevant lines from ~/.xsession-errors file" +-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 "" +- +-#: ../src/plugins/https-utils.c:62 +-msgid "An error occurred on the server side." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:65 +-#, c-format +-msgid "A server-side error occurred on '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:74 +-msgid "An error occurred while connecting to the server" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:77 +-#, c-format +-msgid "An error occurred while connecting to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:97 +-#, c-format +-msgid "Issuer certificate is invalid: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:100 +-#, c-format +-msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:103 +-#, c-format +-msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:107 +-msgid "Remote certificate has expired." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:110 +-#, c-format +-msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:113 +-#, c-format +-msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:149 +-#, c-format +-msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:182 +-#, c-format +-msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" +- +-#. Host exists, but has neither IPv4 nor IPv6?? +-#: ../src/plugins/https-utils.c:203 +-#, c-format +-msgid "Can't resolve host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:210 +-msgid "Failed to set socket blocking mode." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:213 +-msgid "Failed to wrap TCP socket by SSL." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:215 +-msgid "Failed to enable client handshake to SSL socket." +-msgstr "" +- +-#: ../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:233 +-#, c-format +-msgid "Can't connect to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:241 +-msgid "Failed to set certificate hook." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:247 +-msgid "Failed to set handshake callback." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:251 +-msgid "Failed to reset handshake." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:258 +-#, c-format +-msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:267 +-msgid "Failed to close SSL socket." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:332 +-#, c-format +-msgid "Malformed HTTP response header: '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:369 +-#, c-format +-msgid "Receiving of data failed: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:398 +-msgid "Malformed chunked response." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:423 +-msgid "Failed to initialize NSS." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:429 +-msgid "Failed to initialize security module." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:444 +-msgid "Failed to shutdown NSS." +-msgstr "" +- +-#: ../src/plugins/bodhi.c:375 +-msgid "List of bug ids" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:376 +-msgid "Specify a bodhi server url" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:377 +-msgid "Specify a release" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:382 +-msgid "" +-"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" +-"\n" +-"Search for updates on bodhi server" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:434 +-msgid "Searching for updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:440 +-msgid "No updates for this package found" +-msgstr "" +- +-#. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 +-msgid "Local version of the package is newer than available updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:486 +-#, c-format +-msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:85 +-msgid "" +-"& [-v] [-od] FILE...\n" +-"\n" +-"Scans files for split oops message. Can print and/or delete them." +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:97 +-msgid "Print found oopses" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:98 +-msgid "Delete files with found oopses" +-msgstr "" +- +-#: ../src/cli/abrt-cli-core.c:91 +-#, c-format +-msgid "'%s' identifies more than one problem directory" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:142 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:147 +-msgid "Remove problem directory DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:148 +-msgid "Analyze and report problem data in DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:149 +-msgid "Print information about DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:150 +-msgid "Print the count of the recent crashes" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:165 +-msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +- +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "" +- +-#: ../src/cli/list.c:188 +-msgid "List only not-reported problems" +-msgstr "" +- +-#. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 +-msgid "Show detailed report" +-msgstr "" +- +-#: ../src/cli/list.c:191 +-msgid "List only the problems more recent than specified timestamp" +-msgstr "" +- +-#: ../src/cli/list.c:192 +-msgid "List only the problems older than specified timestamp" +-msgstr "" +- +-#: ../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:235 +-msgid "& info [options] DIR..." +-msgstr "" +- +-#: ../src/cli/list.c:244 +-msgid "Text larger than this will be shown abridged" +-msgstr "" +- +-#: ../src/cli/list.c:264 +-#, c-format +-msgid "No such problem directory '%s'" +-msgstr "" +- +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "" +- +-#: ../src/cli/status.c:78 +-msgid "Print only the problem count without any message" +-msgstr "" +- +-#: ../src/cli/status.c:79 +-msgid "Print only the problems more recent than specified timestamp" +-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 "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:1 +-msgid "" +-"Send core dump to remote retrace server for analysis or perform local " +-"analysis if the remote analysis fails" +-msgstr "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. If " +-"user doens't want to upload his coredump to anywhere the event performs " +-"local analysis. Local analysis is run event if remote analysis fails. Pros: " +-"no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " +-"private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:1 +-msgid "Analyze VM core" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:3 +-msgid "" +-"Needs to install kernel debuginfo packages, which might take significant " +-"time, and take up disk space." +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:1 +-msgid "Collect GConf configuration" +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:2 +-msgid "Save configuration from application's GConf directory" +-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 "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:1 +-msgid "Collect system-wide vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:2 +-msgid "Save /etc/vimrc and /etc/gvimrc" +-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 "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:1 +-msgid "Collect yours vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:2 +-msgid "Save .vimrc and .gvimrc from your home directory" +-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 "" +- +-#: ../src/plugins/post_report.xml.in.h:1 +-msgid "Post report" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:2 +-msgid "Executed after the reporting is finished" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:3 +-msgid "Used for updating of the databases" +-msgstr "" +diff --git a/po/aln.po b/po/aln.po +index d2668a3..bb1ad2a 100644 +--- a/po/aln.po ++++ b/po/aln.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Albanian Gheg (http://www.transifex.com/projects/p/fedora/language/aln/)\n" ++"Language-Team: Albanian Gheg (http://www.transifex.com/projects/p/fedora-abrt/language/aln/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/am.po b/po/am.po +index 2e1f9f4..20b0381 100644 +--- a/po/am.po ++++ b/po/am.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Amharic (http://www.transifex.com/projects/p/fedora/language/am/)\n" ++"Language-Team: Amharic (http://www.transifex.com/projects/p/fedora-abrt/language/am/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ar.po b/po/ar.po +index c20b11b..5233b78 100644 +--- a/po/ar.po ++++ b/po/ar.po +@@ -8,10 +8,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Arabic (http://www.transifex.com/projects/p/fedora/language/ar/)\n" ++"Language-Team: Arabic (http://www.transifex.com/projects/p/fedora-abrt/language/ar/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "تحذير" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "بريمج منطقة التنبيه لتنبيه المستخدم عن المشاكل المٌكتشفة عن طريق ABRT" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "أحمد محمد عربي " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "إخفاء" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "تقرير" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -233,7 +319,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -300,19 +386,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -397,32 +560,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -650,6 +832,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -840,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1416,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1502,6 +1724,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/as.po b/po/as.po +index b13723c..540a663 100644 +--- a/po/as.po ++++ b/po/as.po +@@ -5,16 +5,16 @@ + # Translators: + # Amitakhya Phukan , 2012 + # Jiří Moskovčák , 2011 +-# ngoswami , 2011,2013 +-# ngoswami , 2014 ++# Nilamdyuti Goswami , 2011,2013 ++# Nilamdyuti Goswami , 2014 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Assamese (http://www.transifex.com/projects/p/fedora-abrt/language/as/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -75,120 +75,206 @@ msgstr "%s আৰু বিশ্লেষণ তথ্য জমা দিয় + msgid "Can't execute '%s'" + msgstr "'%s' প্ৰেৰণ কৰিব নোৱাৰি" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "অধিসূচনা বন্ধ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "সতৰ্কবাৰ্তা" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "অধিসূচনা স্থান যি ব্যৱহাৰকাৰীসমূহক ABRT দ্বাৰা চিনাক্ত কৰা বিষয়সমূহৰ বিষয়ে জ্ঞাত কৰে" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "নীলমদ্যুতি গোস্বামী (ngoswami@redhat.com)" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "প্ৰস্থান কৰক (_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "লুকাওক" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "বিষয়ে (_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "সমস্যা দেখা দিছে" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "চিৰকালৰ বাবে উপেক্ষা কৰক" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "খোলক" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "সমস্যাক ইতিমধ্যে সংবাদন কৰা হৈছে" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "এটা জ্ঞাত সমস্যা দেখা দিছে" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "সংবাদ" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "এটা সমস্যা দেখা দিছে" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "এটা সমস্যা সংবাদন কৰা হৈছে" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "এটা নতুন সমস্যা দেখা দিছে" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "অধিসূচনা দেখুৱাব নোৱাৰি: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio চেনেলৰ পৰা পঢ়িব নোৱাৰি: '%s'" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio চেনেলত এনক'ডিং সংহতি কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio চেনেলৰ বাবে অপ্ৰতিৰোধি অৱস্থা আৰম্ভ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ৰ অধিকাৰী হব নোৱাৰি" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' লিখিবলে ডাইৰেকটৰি খোলিব নোৱাৰি" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "অধিবেশন ব্যৱস্থাপকলৈ সংযোগ খোলিবলৈ ব্যৰ্থ: '%s', অধিসূচনা পৰৱৰ্তী লগিনত উপস্থিত হব পাৰে" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "ডাইৰেকটৰি চুৰ কৰাৰ আগত সোধিব" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "uReport স্বচালিতভাৱে পঠাওক" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "সমু সংবাদন" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "নিঃশব্দ সমু সংবাদন" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "স্টেক ট্ৰেইচ সৃজন কৰিবলে কেন্দ্ৰডাম্প ফাইলৰ প্ৰয়োজন যি সময় আৰু স্থান লোৱা কাৰ্য্য। ABRT এ সেৱা প্ৰদান কৰে যি স্টেক ট্ৰেইচক কেন্দ্ৰডাম্পৰ পৰা সৃজন কৰে কিন্তু আপুনি কেন্দ্ৰডাম্পক এই সেৱালৈ আপল'ড কৰিব লাগিব। এই বিকল্পৰ সৈতে অসামৰ্থবান থাকিলে ABRT এ নোসোধাকৈ কেন্দ্ৰ ডাম্পক আপল'ড কৰিব।" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "ABRT এ সমস্যা তথ্যক ডাইৰেকটৰিসমূহত সংৰক্ষণ কৰে। যেতিয়ায় ABRT ৰ লিখনযোগ্য ডাইৰেকটৰিৰ প্ৰয়োজন হয়, ডাইৰেকটৰিক চিস্টেম অৱস্থানৰ পৰা আপোনাৰ ঘৰ ডাইৰেকটৰিলৈ স্থানান্তৰ কৰা হয়। এই বিকল্পৰ সৈতে অসামৰ্থবান ABRT এ সমস্যা ডাইৰেকটৰিক নোসোধাকৈ স্থানান্তৰ কৰিব।" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "uReport এটা সমস্যাৰ এটা সমু আৰু সম্পূৰ্ণভাৱে বেনামী বিৱৰণ। ABRT এ uReports ক দ্ৰুত বিশ্বব্যাপী প্ৰতিলিপি চিনাক্তকৰণৰ বাবে ব্যৱহাৰ কৰে। অবিকল্পিত সংৰূপত uReport ক সংবাদন প্ৰক্ৰিয়াৰ আৰম্ভণিত পঠোৱা হয়। এই বিকল্প সামৰ্থবান থকা অৱস্থাত uReports সমস্যা চিনাক্তকৰণৰ তৎক্ষনাত পিছত পঠোৱা হয়।" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "এই বিকল্প সামৰ্থবান থাকিলে, সমস্যা অধিসূচনা বাবুলত সংবাদ বুটামত ক্লিক কৰি আৰম্ভ কৰা সংবাদন প্ৰক্ৰিয়াক uReport পঠোৱাৰ পিছত বাধাগ্ৰস্থ কৰা হব। আপুনি সম্পূৰ্ণ সংবাদ বনাবলে অবিকল্পিত সমস্যা ব্ৰাউছাৰ সদায় ব্যৱহাৰ কৰিব পাৰিব।" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "এই বিকল্প সামৰ্থবান থাকিলে ABRT এ কেতিয়াও সংবাদন কৰা সমস্যাসমূহৰ অধিসূচনা নেদেখুৱায়। প্ৰভাৱশালী হয় কেৱল যেতিয়া সমু সংবাদন সামৰ্থবান থাকে।" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "কেন্দ্ৰডাম্প আপল'ড কৰাৰ আগত সোধিব" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "সংবেদনশীল তথ্যৰ বাবে ব্যক্তিগত টিকেট অনুৰোধ কৰক" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "অসম্পূৰ্ণ সমস্যাবোৰ অধিসূচীত কৰক" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "অসম্পূৰ্ণ সমস্যা তথ্য সাধাৰণত কমপিউটাৰ বন্ধ হৈ থকা অথবা এজন ব্যৱহাৰকাৰী লগ আউট হৈ থকা সময়ত চিনাক্ত কৰা হয়। অমূল্য সমস্যা সংবাদসমূহ প্ৰদান কৰিবলে, ABRT এ আপোনাক এই সমস্যা জমা দিয়াৰ অনুমতি নিদিব।" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "বন্ধ কৰক (_C)" +@@ -197,7 +283,7 @@ msgstr "বন্ধ কৰক (_C)" + msgid "_Defaults" + msgstr "অবিকল্পিতসমূহ (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "সংৰূপ সংবাদন কৰোতে সমস্যা" +@@ -236,7 +322,7 @@ msgstr "সমস্যা ডাইৰেকটৰি" + msgid "Configuration file" + msgstr "সংৰূপ ফাইল" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -303,19 +389,19 @@ msgstr "কোনো সমস্যা স্থান অৱশিষ্ট + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "সমস্যা ডাইৰেকটৰি '%s' ৰ পৰা উপাদান '%s' মচিব নোৱাৰি" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "নাম '%s' হেৰাইছে, অনুগ্ৰহ কৰি নীৰিক্ষণ কৰক একে নামৰ অন্য সেৱা চলি থকা নাই।\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "নিষ্ক্ৰিয়তাৰ NUM ছেকেণ্ডসমূহ পিছত প্ৰস্থান কৰিব" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "এই প্ৰগ্ৰামক ৰুট হিচাপে চলাব লাগিব।" + +@@ -390,8 +476,85 @@ msgstr "তৰ্কৰ অবৈধ সংখ্যা" + msgid "Unknown option value: '%s'\n" + msgstr "অজ্ঞাত বিকল্প মান: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "বেকট্ৰেইচ সৃজন কৰা হৈ আছে" + +@@ -400,32 +563,32 @@ msgstr "বেকট্ৰেইচ সৃজন কৰা হৈ আছে" + msgid "Can't connect to system DBus: %s" + msgstr "চিস্টেম DBus ৰ সৈতে সংযোগ কৰিব নোৱাৰি: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "'%s' chown কৰিব নোৱাৰি: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "সমস্যা ডাইৰেকটৰি মচি পেলোৱা ব্যৰ্থ হল: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus ৰ পৰা সমস্যা তথ্য প্ৰাপ্ত কৰিব নোৱাৰি: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ৰ পৰা সমস্যা তালিকা প্ৰাপ্ত কৰিব নোৱাৰি: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "অস্থায়ী ফাইল '%s' সৃষ্টি কৰিব নোৱাৰি" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -433,7 +596,7 @@ msgid "" + msgstr "'%s' লৈ লিখিব নোৱাৰি। সমস্যা '%s' ক উপেক্ষা কৰা সমস্যাসমূহ '%s' ৰ পৰা আতৰোৱা নহব" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s' ক '%s' লৈ পুনৰ নামকৰণ কৰিব নোৱাৰি। সমস্যা '%s' ত আতৰাবলে ব্যৰ্থ।" +@@ -465,6 +628,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nকেন্দ্ৰডাম্পৰ UUID গণনা কৰি সমস্যা DIR ত সঞ্চয় কৰে" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "কেন্দ্ৰডাম্প '%s' বিশ্লেষণ কৰা" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "সন্ধানহীন নিৰ্মাণ আইডি: %s" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "ব্যৱহাৰ: %s [-v] [-o OUTFILE] -c COREFILE" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "কেন্দ্ৰফাইল ধাৰ্য্যত নহয়" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -491,29 +673,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\npython স্খলন ডাম্পসমূহৰ UUID আৰু DUPHASH গণনা আৰু সঞ্চয় কৰে" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "ব্যৱহাৰ: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "{0} ফাইল অস্তিত্বহিন" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "কেন্দ্ৰৰ পৰা oops লিখনী নিষ্কাষণ কৰা" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "{0} প্ৰক্ৰিয়াকৰণ কৰিব নোৱাৰি:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "oops বাৰ্তা নিষ্কাষণ কৰিব নোৱাৰি: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops লিখনী সফলভাৱে নিষ্কাষণ কৰা হল" + +@@ -653,6 +835,38 @@ msgstr "এই ডাইৰেকটৰিৰ ভিতৰত থকা ফা + msgid "Preserve this directory" + msgstr "এই ডাইৰেকটৰি সংৰক্ষণ কৰক" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "userspace ক'ড দ্বাৰা প্ৰেৰণ কৰা সংকেত" +@@ -843,11 +1057,15 @@ msgstr "থ্ৰটল ডাইৰেকটৰি নিৰ্মাণ প্ + msgid "Print search string(s) to stdout and exit" + msgstr "stdout লে সন্ধান স্ট্ৰিং(সমূহ) প্ৰিন্ট কৰি প্ৰস্থান কৰক" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "সমস্যাক আপডেইট কৰিব নোৱাৰি: এটাৰ অধিক oops পোৱা গল" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d ছেকেণ্ডৰ বাবে নিদ্ৰা অৱস্থাত" +@@ -1419,31 +1637,35 @@ msgstr "প্ৰাপ্ত oopses ৰ সৈতে ফাইলসমূহ + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' এ এটাৰ অধিক সমস্যা ডাইৰেকটৰি চিনাক্ত কৰে" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "ব্যৱহাৰ: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "[DIRসমূহত] সংবাদন নকৰা সমস্যাসমূহ তালিকাভুক্ত কৰক" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "সমস্যা ডাইৰেকটৰি DIR আতৰাওক" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "DIR ত সমস্যা তথ্য বিশ্লেষণ কৰি সংবাদন কৰক" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR ৰ বিষয়ে তথ্য প্ৰিন্ট কৰক" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "শেহতীয়া ক্ৰেশসমূহৰ গণনা প্ৰিন্ট কৰক" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক তথ্যৰ বাবে 'abrt-cli COMMAND --help' চাওক" + +@@ -1505,6 +1727,45 @@ msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্প + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT এ %u সমস্যা(সমূহ) চিনাক্ত কৰিছে। অধিক তথ্যৰ বাবে চলাওক: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ast.po b/po/ast.po +index 4b024e8..c3fbe03 100644 +--- a/po/ast.po ++++ b/po/ast.po +@@ -8,10 +8,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Asturian (http://www.transifex.com/projects/p/fedora/language/ast/)\n" ++"Language-Team: Asturian (http://www.transifex.com/projects/p/fedora-abrt/language/ast/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Avisu" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Informe" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -233,7 +319,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -300,19 +386,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -397,32 +560,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -650,6 +832,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -840,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1416,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1502,6 +1724,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/az.po b/po/az.po +index 0cca18a..d5faf44 100644 +--- a/po/az.po ++++ b/po/az.po +@@ -7,15 +7,15 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/fedora/language/az/)\n" ++"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/fedora-abrt/language/az/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" + "Language: az\n" +-"Plural-Forms: nplurals=1; plural=0;\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bal.po b/po/bal.po +index 59860b1..9a15c32 100644 +--- a/po/bal.po ++++ b/po/bal.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Balochi (http://www.transifex.com/projects/p/fedora/language/bal/)\n" ++"Language-Team: Balochi (http://www.transifex.com/projects/p/fedora-abrt/language/bal/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/be.po b/po/be.po +index d44b0ad..ab27e7c 100644 +--- a/po/be.po ++++ b/po/be.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Belarusian (http://www.transifex.com/projects/p/fedora/language/be/)\n" ++"Language-Team: Belarusian (http://www.transifex.com/projects/p/fedora-abrt/language/be/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bg.po b/po/bg.po +index 23b19a3..7b26554 100644 +--- a/po/bg.po ++++ b/po/bg.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Bulgarian (http://www.transifex.com/projects/p/fedora/language/bg/)\n" ++"Language-Team: Bulgarian (http://www.transifex.com/projects/p/fedora-abrt/language/bg/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "Не мога да изпълня '%s'" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Внимание" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Област на известяващия аплет, информиращ за проблемите, забелязани от ABRT" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Валентин Ласков, 2011" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Скрий" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Открит е проблем" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Съобщи" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Възникна проблем" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не мога да взема собствеността на '%s'" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "Директория с проблема" + msgid "Configuration file" + msgstr "Конфигурационен файл" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [опции]" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "Името '%s' беше изгубено, моля, проверете дали не работи друга услуга, собственик на името.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Изход след NUM секунди бездействие" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Тази програма трябва да бъде стартирана като root." + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Генериране на обратно проследяващ анализ" + +@@ -396,32 +559,32 @@ msgstr "Генериране на обратно проследяващ анал + msgid "Can't connect to system DBus: %s" + msgstr "Не мога да се свържа към системния DBus: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Не мога да chown '%s': %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Изтриването на директория с проблем се провали: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Не мога да получа данни за проблем от abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Не мога да получа списъка проблеми от abrt-dbus: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nПресмята и записва UUID на coredump проблем в директория DIR" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nПресмята и записва UUID и DUPHASH на python дъмповете" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Файл {0} не съществува" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "Изтрий файловете в тази директория" + msgid "Preserve this directory" + msgstr "Запази тази директория" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "Отпечатва търсените низове на стандартния изход и излиза" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Употреба: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Списък на все още недокладваните проблеми [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Премахни директорията с проблем DIR" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Анализирай и рапортувай данните за проблем в DIR" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Отпечатай информация за DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Вижте 'abrt-cli COMMAND --help' за повече информация" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bn.po b/po/bn.po +index 44a5395..4b55cf3 100644 +--- a/po/bn.po ++++ b/po/bn.po +@@ -4,7 +4,7 @@ + # + # Translators: + # Ayesha Akhtar , 2012 +-# Biraj Karmakar , 2012 ++# BIRAJ KARMAKAR , 2012 + # Jiří Moskovčák , 2011 + # Mahay Alam Khan , 2012 + # newton , 2012 +@@ -13,10 +13,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Bengali (http://www.transifex.com/projects/p/fedora/language/bn/)\n" ++"Language-Team: Bengali (http://www.transifex.com/projects/p/fedora-abrt/language/bn/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -77,120 +77,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "'%s' সঞ্চালন করতে ব্যর্থ" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "সতর্কবার্তা" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT দ্বারা সনাক্ত করা সমস্যা সম্বন্ধে ব্যবহারকারীদেরকে সূচিত করার উদ্দেশ্যে, বিজ্ঞপ্তিস্থলে ব্যবহারযোগ্য অ্যাপ্লেট" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "রুণা ভট্টাচার্য্য" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "আড়াল করুন" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "রিপোর্ট" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "একটি সমস্যা দেখা দিয়েছে" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -199,7 +285,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -238,7 +324,7 @@ msgstr "সমস্যাযুক্ত ডিরেক্টরি" + msgid "Configuration file" + msgstr "কনফিগারেশন ফাইল" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -305,19 +391,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM সেকেন্ড নিষ্ক্রিয় থাকলে প্রস্থান করা হবে" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -392,8 +478,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "ব্যাক-ট্রেস সৃষ্টি করা হচ্ছে" + +@@ -402,32 +565,32 @@ msgstr "ব্যাক-ট্রেস সৃষ্টি করা হচ্ + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -435,7 +598,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -467,6 +630,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nসমস্যাযুক্ত ডিরেক্টরি DIR-র মধ্যে coredump-র UUID গণনা করে সংরক্ষণ করা হয়" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -493,29 +675,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nPython ক্র্যাশ ডাম্পের UUID ও DUPHASH গণনা করে সংরক্ষণ করা হয়" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "{0} ফাইল উপস্থিত নেই" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -655,6 +837,38 @@ msgstr "এই ডিরেক্টরির মধ্যে উপস্থি + msgid "Preserve this directory" + msgstr "এই ডিরেক্টরিটি সংরক্ষণ করা হবে" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -845,11 +1059,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1421,31 +1639,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr " [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "সমস্যার ডিরেক্টরি DIR সরিয়ে ফেলুন" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "DIR-র মধ্যে সমস্যার তথ্য বিশ্লেষণ করে দায়ের করুন" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR সম্পর্কে তথ্য প্রিন্ট করুন" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" + +@@ -1507,6 +1729,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bn_IN.po b/po/bn_IN.po +index f37d15d..1e8f16b 100644 +--- a/po/bn_IN.po ++++ b/po/bn_IN.po +@@ -3,19 +3,19 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# Biraj Karmakar , 2012 +-# bnin , 2013 ++# BIRAJ KARMAKAR , 2012 ++# Saibal Ray, 2013 + # Jiří Moskovčák , 2011 + # runa , 2013 +-# bnin , 2014 ++# Saibal Ray, 2014 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Bengali (India) (http://www.transifex.com/projects/p/fedora-abrt/language/bn_IN/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -76,120 +76,206 @@ msgstr "%s এবং ডায়গনস্টিক ডেটা জমা + msgid "Can't execute '%s'" + msgstr "'%s' সঞ্চালন করতে ব্যর্থ" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "সূচনাবার্তা বন্ধ করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "সতর্কবার্তা" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT দ্বারা সনাক্ত করা সমস্যা সম্বন্ধে ব্যবহারকারীদেরকে সূচিত করার উদ্দেশ্যে, বিজ্ঞপ্তিস্থলে ব্যবহারযোগ্য অ্যাপ্লেট" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "রুণা ভট্টাচার্য্য" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "প্রস্থান করুন (_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "আড়াল করুন" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "সম্বন্ধে (_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "সমস্যা সনাক্ত হয়েছে" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "সবসময়ের জন্য উপেক্ষা করুন" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "খুলুন" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "সমস্যার কথা ইতিমধ্যেই জানানো হয়েছে" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "একটি জ্ঞাত সমস্যা দেখা দিয়েছে" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "রিপোর্ট" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "একটি সমস্যা দেখা দিয়েছে" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "একটি সমস্যার কথা জানানো হয়েছে" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "একটি নতুন সমস্যা দেখা দিয়েছে" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "সূচনাবার্তা প্রদর্শন করতে ব্যর্থ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio চ্যানেল থেকে পড়তে ব্যর্থ: '%s'" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio চ্যানেলের জন্য এনকোডিং নির্ধারণ করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio চ্যানেলের জন্য nonblocking মোড সক্রিয় করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'-র মালিকানা গ্রহণ করা সম্ভব নয়" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' লেখার জন্য ডিরেক্টরি খোলা যায় না" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "সেশন পরিচালকর সংযোগ খুলতে ব্যর্থ: '%s', পরবর্তী লগ-ইনে বিজ্ঞপ্তি অাবার উপস্থিত হতে পারে" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "বন্ধ করুন (_C)" +@@ -198,7 +284,7 @@ msgstr "বন্ধ করুন (_C)" + msgid "_Defaults" + msgstr "ডিফল্ট (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "কনফিগারেশন রিপোর্টিং সংক্রান্ত সমস্যা" +@@ -237,7 +323,7 @@ msgstr "সমস্যাযুক্ত ডিরেক্টরি" + msgid "Configuration file" + msgstr "কনফিগারেশন ফাইল" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -304,19 +390,19 @@ msgstr "কোনো সমস্যা স্পেস পড়ে নেই" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "'%s' উপাদান মোছা যায় না, '%s' সমস্যা ডিরেক্টরি থেকে" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "'%s' নামটি হারিয়ে গেছে, অনুগ্রহ করে পরীক্ষা করুন এই নাম ধারণকারী অন্য কোনো পরিসেবা চলছে কি না।\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM সেকেন্ড নিষ্ক্রিয় থাকলে প্রস্থান করা হবে" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "এই প্রোগ্রামটি শুধুমাত্র root পরিচয়ে সঞ্চালন করা আবশ্যক" + +@@ -391,8 +477,85 @@ msgstr "অার্গুমেন্টের সংখ্যা অবৈধ" + msgid "Unknown option value: '%s'\n" + msgstr "অজানা বিকল্প মান: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "ব্যাক-ট্রেস সৃষ্টি করা হচ্ছে" + +@@ -401,32 +564,32 @@ msgstr "ব্যাক-ট্রেস সৃষ্টি করা হচ্ + msgid "Can't connect to system DBus: %s" + msgstr "সিস্টেম DBus-র সাথে সংযোগ স্থাপন করা সম্ভব নয়: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "'%s'-কে chown করতে ব্যর্থ: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "সমস্যাপূর্ণ ডিরেক্টি মুছে ফেলতে ব্যর্থ: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus থেকে সমস্যাপূর্ণ তথ্য সংগ্রহ করা যায়নি: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus থেকে সমস্যার তালিকা সংগ্রহ করা যায়নি: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "'%s' অস্থায়ী ফাইল তৈরি করা যায় না" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -434,7 +597,7 @@ msgid "" + msgstr "'%s' এ লেখা যায় না। সমস্যা '%s' সরানো যাবে না, '%s' উপেক্ষা সমস্যাগুলি থেকে" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s' এর নাম বদলে '%s' এ করা যায় না। '%s' সমস্যা সরানো যায়নি" +@@ -466,6 +629,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nসমস্যাযুক্ত ডিরেক্টরি DIR-র মধ্যে coredump-র UUID গণনা করে সংরক্ষণ করা হয়" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -492,29 +674,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nPython ক্র্যাশ ডাম্পের UUID ও DUPHASH গণনা করে সংরক্ষণ করা হয়" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "ব্যবহার: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "{0} ফাইল উপস্থিত নেই" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "কোর থেকে oops পাঠ্য নিষ্কাশন" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "{0} প্রক্রিয়া করা যায় না:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "oops বার্তা বের করে অানা যায় না: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops পাঠ্য সফলভাবে বের করে অানা হয়েছে" + +@@ -654,6 +836,38 @@ msgstr "এই ডিরেক্টরির মধ্যে উপস্থি + msgid "Preserve this directory" + msgstr "এই ডিরেক্টরিটি সংরক্ষণ করা হবে" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "userspace কোড দ্বারা প্রেরিত সংকেত" +@@ -844,11 +1058,15 @@ msgstr "Throttle সমস্যা ডিরেক্টরি তৈরি, + msgid "Print search string(s) to stdout and exit" + msgstr "অনুসন্ধানের পংক্তিগুলি stdout-এ প্রদর্শন করে প্রস্থান করা হবে" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "সমস্যার অাপডেট করা যায় না: একটির বেশি oops খুঁজে পাওয়া গেছে" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d সেকেন্ডের জন্য ঘুমন্ত" +@@ -1420,31 +1638,35 @@ msgstr "খুঁজে পাওয়া oopses সমেত ফাইলগু + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' একটির বেশি সমস্যার ডিরেক্টরি সনাক্ত করেছে" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr " [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "সমস্যার ডিরেক্টরি DIR সরিয়ে ফেলুন" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "DIR-র মধ্যে সমস্যার তথ্য বিশ্লেষণ করে দায়ের করুন" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR সম্পর্কে তথ্য প্রিন্ট করুন" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "সাম্প্রতিক ক্র্যাশগুলির গণনা মুদ্রণ করুন" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" + +@@ -1506,6 +1728,45 @@ msgstr "উল্লিখিত সময়স্ট্যাম্পের চ + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT %u সমস্য সনাক্ত করেছে। অারো তথ্যের জন্য চালনা করুন: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bo.po b/po/bo.po +index d591209..545f2ca 100644 +--- a/po/bo.po ++++ b/po/bo.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Tibetan (http://www.transifex.com/projects/p/fedora/language/bo/)\n" ++"Language-Team: Tibetan (http://www.transifex.com/projects/p/fedora-abrt/language/bo/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/br.po b/po/br.po +index fa7fb35..891c89a 100644 +--- a/po/br.po ++++ b/po/br.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Breton (http://www.transifex.com/projects/p/fedora/language/br/)\n" ++"Language-Team: Breton (http://www.transifex.com/projects/p/fedora-abrt/language/br/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/brx.po b/po/brx.po +index 96e1f0f..ce94412 100644 +--- a/po/brx.po ++++ b/po/brx.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Bodo (http://www.transifex.com/projects/p/fedora/language/brx/)\n" ++"Language-Team: Bodo (http://www.transifex.com/projects/p/fedora-abrt/language/brx/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/bs.po b/po/bs.po +index 080cd5d..e36842a 100644 +--- a/po/bs.po ++++ b/po/bs.po +@@ -9,10 +9,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Bosnian (http://www.transifex.com/projects/p/fedora/language/bs/)\n" ++"Language-Team: Bosnian (http://www.transifex.com/projects/p/fedora-abrt/language/bs/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -73,120 +73,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Upozorenje" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Arnes Arnautović " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Sakrij" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Izvještaj" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Dogodio se je problem" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -195,7 +281,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -234,7 +320,7 @@ msgstr "" + msgid "Configuration file" + msgstr "Konfiguracijska datoteka" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -301,19 +387,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -388,8 +474,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -398,32 +561,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -431,7 +594,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -463,6 +626,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -489,29 +671,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -651,6 +833,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -841,11 +1055,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1417,31 +1635,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1503,6 +1725,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ca.po b/po/ca.po +index aa85eca..07fcedd 100644 +--- a/po/ca.po ++++ b/po/ca.po +@@ -9,10 +9,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Catalan (http://www.transifex.com/projects/p/fedora/language/ca/)\n" ++"Language-Team: Catalan (http://www.transifex.com/projects/p/fedora-abrt/language/ca/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -73,120 +73,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "No es pot executar «%s»" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Avís" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Robert Antoni Buj Gelonch " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Oculta" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Informa" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "S'ha Produït un Problema" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -195,7 +281,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -234,7 +320,7 @@ msgstr "" + msgid "Configuration file" + msgstr "Fitxer de configuració" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -301,19 +387,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -388,8 +474,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -398,32 +561,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -431,7 +594,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -463,6 +626,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -489,29 +671,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -651,6 +833,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -841,11 +1055,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1417,31 +1635,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1503,6 +1725,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/cs.po b/po/cs.po +index 3117484..56f4f32 100644 +--- a/po/cs.po ++++ b/po/cs.po +@@ -7,15 +7,15 @@ + # Jakub , 2011 + # Milan Kerslager , 2010 + # Milan Kerslager , 2011 +-# Zdenek Chmelar , 2013 ++# zdenek , 2013 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Czech (http://www.transifex.com/projects/p/fedora/language/cs/)\n" ++"Language-Team: Czech (http://www.transifex.com/projects/p/fedora-abrt/language/cs/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -76,120 +76,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "„%s“ nelze spustit" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nemohu zavřít oznámení: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Upozornění" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Jiří Moskovčák \nRadek Vokál \nNikola Pajkovsky \nPetr Písař " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Skrýt" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Detekován problém" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Otevřít" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Nahlásit" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Vyskytl se problém" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Problém byl nahlášen" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Vyskytl se nový problém" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nemohu zobrazit oznámení: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, 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:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nelze převzít vlastnictví '%s'" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nemohu otevřít adresář pro zápis '%s'" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -198,7 +284,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -237,7 +323,7 @@ msgstr "Adresář problému" + msgid "Configuration file" + msgstr "Konfigurační soubor" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [volby]" +@@ -304,19 +390,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nemohu smazat prvek '%s' z adresáře problému '%s'" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "Jméno '%s' bylo ztraceno, zkontrolujte prosím, zda-li jiná služba vlastnící toto jméno neběží.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Ukončí po NUM sekundách neaktivity" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Tento program musí být spuštěn pod root uživatelem." + +@@ -391,8 +477,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Generování backtrace" + +@@ -401,32 +564,32 @@ msgstr "Generování backtrace" + msgid "Can't connect to system DBus: %s" + msgstr "Nemohu se připojit k systémovému DBus: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Nelze provést chown '%s': %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Odstraňování adresáře problému selhalo: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Nemohu získat data problému z abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Nemohu vytvořit dočasný soubor '%s'" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -434,7 +597,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:262 ++#: ../src/lib/ignored_problems.c:264 + #, 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'" +@@ -466,6 +629,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nVypočítá a uloží UUID obrazu paměti v adresáři problému DIR" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -492,29 +674,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nSpočítá a uloží UUID a DUPHASH výpisu pádu pythonu" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Soubor {0} neexistuje" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -654,6 +836,38 @@ msgstr "Smazat soubory uvnitř tohoto adresáře" + msgid "Preserve this directory" + msgstr "Zachovat tento adresář" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -844,11 +1058,15 @@ msgstr "" + 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:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1420,31 +1638,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Použití: abrt-cli [--version] PŘÍKAZ [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Seznam nereportovaných problémů [v DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Odstraň adresář problému DIR" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analyzuj a reportuj data problému v DIR" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Tisk informací o DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Více informací získáte příkazem „abrt-cli PŘÍKAZ --help“" + +@@ -1506,6 +1728,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/cs_CZ.po b/po/cs_CZ.po +deleted file mode 100644 +index 12909e8..0000000 +--- a/po/cs_CZ.po ++++ /dev/null +@@ -1,1588 +0,0 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: +-msgid "" +-msgstr "" +-"Project-Id-Version: ABRT\n" +-"Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Content-Transfer-Encoding: 8bit\n" +-"Language: cs_CZ\n" +-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +- +-#: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" +- +-#: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../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" +-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:243 +-#, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:267 +-#, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:386 +-msgid "A problem has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:388 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:398 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" +-msgstr "" +- +-#: ../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:632 ../src/applet/applet.c:698 +-#, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:788 +-msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "" +- +-#: ../src/applet/applet.c:804 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:812 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:814 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:816 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:884 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:934 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:950 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../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:969 ../src/applet/applet.c:1004 +-msgid "Report" +-msgstr "" +- +-#: ../src/applet/applet.c:974 +-msgid "A Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1000 +-msgid "A Problem has been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:1008 +-msgid "A New Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1018 +-#, c-format +-msgid "Can't show notification: %s" +-msgstr "" +- +-#. TODO: Terminate child's process? +-#: ../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:1136 +-#, c-format +-msgid "Can't set encoding on gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1140 +-#, c-format +-msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1172 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1182 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../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: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:75 +-msgid "_Close" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:84 +-msgid "_Defaults" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:110 +-#: ../src/configuration-gui/main.c:36 +-msgid "Problem Reporting Configuration" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:75 +-msgid "About System Config ABRT" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:105 +-msgid "About" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:106 +-msgid "Quit" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:382 +-msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" +-"\n" +-"Query package database and save package and component name" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:394 +-#: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 +-#: ../src/plugins/abrt-action-analyze-oops.c:48 +-#: ../src/plugins/abrt-action-analyze-xorg.c:84 +-#: ../src/plugins/abrt-action-analyze-python.c:47 +-#: ../src/plugins/abrt-action-generate-backtrace.c:55 +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 +-msgid "Problem directory" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:395 +-msgid "Configuration file" +-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 "" +- +-#: ../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: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 "" +- +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 +-msgid "Add program names to log" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:123 +-msgid "Unknown error" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:188 +-#, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:223 +-#, c-format +-msgid "'%s' element can't be modified" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 +-#, c-format +-msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:580 +-#, c-format +-msgid "Can't get size of '%s'" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:595 +-msgid "No problem space left" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:627 +-#, c-format +-msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#: ../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 "" +- +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 +-msgid "This program must be run as root." +-msgstr "" +- +-#: ../src/daemon/abrtd.c:451 +-msgid "" +-"The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" +- +-#: ../src/daemon/abrtd.c:497 +-msgid "Do not daemonize" +-msgstr "" +- +-#: ../src/daemon/abrtd.c:498 +-msgid "Log to syslog even with -d" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:388 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:396 +-msgid "Run EVENT on DIR" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:397 +-msgid "Communicate directly to the user" +-msgstr "" +- +-#: ../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:258 +-msgid "" +-"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +-"\n" +-"\n" +-"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" +-"specified in abrt.conf\n" +-"\n" +-"If UPLOAD_DIRECTORY is not provided, uses a value of\n" +-"WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:281 +-msgid "Daemize" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:282 +-msgid "Number of concurrent workers. Default is " +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" +-msgstr "" +- +-#: ../src/daemon/abrt-auto-reporting.c:138 +-#, c-format +-msgid "Unknown option value: '%s'\n" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/lib/hooklib.c:251 +-msgid "Generating backtrace" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:42 +-#, c-format +-msgid "Can't connect to system DBus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:66 +-#, c-format +-msgid "Can't chown '%s': %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:93 +-#, c-format +-msgid "Deleting problem directory failed: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:127 +-#, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:161 +-#, c-format +-msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/ignored_problems.c:231 +-#, c-format +-msgid "Can't create temporary file '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 +-#, c-format +-msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:41 +-msgid "" +-"& [options] -d DIR\n" +-"\n" +-"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" +-"and identifies crash function in problem directory DIR" +-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 "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 +-msgid "Crash thread not found" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-c.c:67 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-oops.c:37 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/plugins/abrt-action-analyze-xorg.c:113 +-#, c-format +-msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-python.c:36 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 +-msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 +-msgid "File {0} doesn't exist" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 +-msgid "Extracting the oops text from core" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 +-msgid "" +-"Can't process {0}:\n" +-"{1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 +-msgid "Can't extract the oops message: '{0}'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 +-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" +-"\n" +-"Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:56 +-msgid "Additional debuginfo directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:57 +-msgid "Kill gdb if it runs for more than NUM seconds" +-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 "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 +-msgid "" +-"& [-v] [-r] -d DIR\n" +-"\n" +-"Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +-msgid "Do not hash fingerprints" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 +-msgid "Generating core_backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 +-msgid "Error: GDB did not return any data" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 +-#, c-format +-msgid "Error: %s" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:51 +-msgid "Exiting on user command" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 +-#, c-format +-msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" +-" [-e, --exact=PATH[:PATH]...]\n" +-"\n" +-"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +-"to CACHEDIR, using TMPDIR as temporary staging area.\n" +-"Old 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" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 +-msgid "Can't open {0}: {1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 +-msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 +-msgid "{0} of debuginfo files are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 +-msgid "Missing requested file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 +-msgid "Missing debuginfo file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 +-msgid "All debuginfo files are available" +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 +-msgid "" +-"Ok to upload core dump? (It may contain sensitive data). If your answer is " +-"'No', a stack trace will be generated locally. (It may download a huge " +-"amount of data)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 +-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 "" +- +-#: ../src/plugins/abrt-action-trim-files.c:222 +-msgid "" +-"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" +-"\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" +-"FILEs are preserved (never deleted)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:236 +-msgid "Delete whole problem directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:237 +-msgid "Delete files inside this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:238 +-msgid "Preserve this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:529 +-msgid "Signal sent by userspace code" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:533 +-msgid "Signal sent by timer/IO/async event" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:541 +-msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:544 +-msgid "Signal due to write to closed pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:550 +-#: ../src/plugins/abrt-gdb-exploitable:575 +-msgid "Signal sent by keyboard" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:554 +-#: ../src/plugins/abrt-gdb-exploitable:579 +-msgid "Job control signal sent by kernel" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:558 +-#: ../src/plugins/abrt-gdb-exploitable:587 +-msgid "Signal sent by window resize" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:562 +-#: ../src/plugins/abrt-gdb-exploitable:591 +-msgid "Signal sent by alarm(N) expiration" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:583 +-msgid "Signal due to write to broken pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:607 +-msgid "ABRT signal (abort() was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:616 +-msgid "XCPU signal (over CPU time limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:620 +-msgid "XFSZ signal (over file size limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:624 +-msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:628 +-msgid "SYS signal (unknown syscall was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:633 +-msgid "Arithmetic exception" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:637 +-msgid "Division by zero" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:641 +-msgid "Illegal instruction (jump to a random address?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:647 +-msgid "Non-crash related signal" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:652 +-msgid "Stack overflow" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:656 +-msgid "Write to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:660 +-msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:666 +-#: ../src/plugins/abrt-gdb-exploitable:670 +-msgid "Jump to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:674 +-msgid "" +-"Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:693 +-msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:706 +-msgid "Likely crash reason: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:707 +-msgid "Exploitable rating (0-9 scale): " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:709 +-msgid "Current instruction: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:711 +-msgid "Exploitability analysis came up empty\n" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:142 +-msgid "" +-"& [-vs] [-F STR]... FILE PROG [ARGS]\n" +-"\n" +-"Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:154 +-msgid "Don't run PROG if STRs aren't found" +-msgstr "" +- +-#: ../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: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: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:153 +-#, c-format +-msgid " Tainted modules: %s." +-msgstr "" +- +-#: ../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: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:278 +-msgid "Create new problem directory in DIR for every oops found" +-msgstr "" +- +-#: ../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:280 +-msgid "Save the extracted information in PROBLEM" +-msgstr "" +- +-#: ../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:282 +-msgid "Throttle problem directory creation to 1 per second" +-msgstr "" +- +-#: ../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:379 +-msgid "Can't update the problem: more than one oops found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:398 +-#, c-format +-msgid "Sleeping for %d seconds" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:237 +-msgid "" +-"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" +-"\n" +-"Extract Xorg crash from FILE (or standard input)" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:245 +-msgid "Print found crash data on standard output" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:246 +-msgid "Create problem directory in DIR for every crash found" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:70 +-msgid "" +-"Retrace server can not be used, because the crash is too large. Try local " +-"retracing." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:211 +-#: ../src/plugins/abrt-retrace-client.c:398 +-#: ../src/plugins/abrt-retrace-client.c:666 +-#: ../src/plugins/abrt-retrace-client.c:832 +-#, c-format +-msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:223 +-#: ../src/plugins/abrt-retrace-client.c:412 +-#: ../src/plugins/abrt-retrace-client.c:765 +-#: ../src/plugins/abrt-retrace-client.c:849 +-#: ../src/plugins/abrt-retrace-client.c:916 +-#: ../src/plugins/abrt-retrace-client.c:1001 +-#: ../src/plugins/abrt-retrace-client.c:1060 +-#, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" +-"%s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:232 +-#: ../src/plugins/abrt-retrace-client.c:745 +-#: ../src/plugins/abrt-retrace-client.c:841 +-#: ../src/plugins/abrt-retrace-client.c:908 +-#: ../src/plugins/abrt-retrace-client.c:982 +-#: ../src/plugins/abrt-retrace-client.c:1052 +-msgid "Invalid response from server: missing HTTP message body." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:424 +-#, c-format +-msgid "" +-"Retrace server is unable to process package '%s.%s'.\n" +-"Is it a part of official '%s' repositories?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:444 +-msgid "Querying server settings" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:452 +-msgid "The server is fully occupied. Try again later." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:453 +-msgid "The server denied your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:484 +-#: ../src/plugins/abrt-retrace-client.c:500 +-#, c-format +-msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:514 +-#, c-format +-msgid "" +-"The size of your crash is %lld bytes, but the retrace server only accepts " +-"crashes smaller or equal to %lld bytes." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:534 +-msgid "The server does not support xz-compressed tarballs." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:571 +-#, c-format +-msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:575 +-msgid "The server is not able to handle your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:594 +-msgid "Unknown package sent to Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:603 +-msgid "Preparing an archive to upload" +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:629 +-#, c-format +-msgid "You are going to upload %d megabytes. Continue?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:638 +-msgid "Cancelled by user" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:673 +-#, c-format +-msgid "Uploading %d megabytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:675 +-#, c-format +-msgid "Uploading %lld bytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:699 +-#, c-format +-msgid "Uploading %d%%\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:711 +-msgid "Failed to read from a pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:724 +-#, c-format +-msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:735 +-msgid "Upload successful" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:757 +-msgid "" +-"Your problem directory is corrupted and can not be processed by the Retrace " +-"server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:759 +-msgid "" +-"The archive contains malicious files (such as symlinks) and thus can not be " +-"processed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:772 +-msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:778 +-msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:785 +-msgid "Retrace job started" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:798 +-#, c-format +-msgid "" +-"Task Id: %s\n" +-"Task Password: %s\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:856 +-msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:868 +-#, c-format +-msgid "" +-"Task Status: %s\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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1160 +-msgid "" +-"Retrace failed. Try again later and if the problem persists report this " +-"issue please." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1207 +-msgid "log to syslog" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1209 +-msgid "allow insecure connection to retrace server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1211 +-msgid "" +-"do not check whether retrace server is able to process given package before " +-"uploading the archive" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1214 +-msgid "retrace server URL" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1216 +-msgid "retrace server port" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1218 +-msgid "(debug) show received HTTP headers" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1219 +-msgid "For create and batch operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1221 +-msgid "read data from ABRT problem directory" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1223 +-msgid "read data from coredump" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1225 +-msgid "Delay for polling operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1227 +-msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1229 +-msgid "For status, backtrace, and log operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1231 +-msgid "id of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1233 +-msgid "password of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1237 +-msgid "" +-"abrt-retrace-client [options]\n" +-"Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1282 +-#: ../src/plugins/abrt-retrace-client.c:1288 +-msgid "Either problem directory or coredump is needed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1294 +-#: ../src/plugins/abrt-retrace-client.c:1302 +-#: ../src/plugins/abrt-retrace-client.c:1310 +-#: ../src/plugins/abrt-retrace-client.c:1318 +-msgid "Task id is needed." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1324 +-#, c-format +-msgid "Unknown operation: %s." +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 +-msgid "Local GNU Debugger" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 +-msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 +-msgid "" +-"Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +-msgid "Send core dump to remote retrace server for analysis" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +-#: ../src/plugins/analyze_CCpp.xml.in.h:3 +-msgid "Retrace server 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 "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 +-#: ../src/plugins/analyze_CCpp.xml.in.h:5 +-msgid "Insecure" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 +-#: ../src/plugins/analyze_CCpp.xml.in.h:6 +-msgid "Whether or not to use insecure connection" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 +-#: ../src/plugins/analyze_CCpp.xml.in.h:7 +-msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:1 +-msgid "Collect .xsession-errors" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:2 +-msgid "Save relevant lines from ~/.xsession-errors file" +-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 "" +- +-#: ../src/plugins/https-utils.c:62 +-msgid "An error occurred on the server side." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:65 +-#, c-format +-msgid "A server-side error occurred on '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:74 +-msgid "An error occurred while connecting to the server" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:77 +-#, c-format +-msgid "An error occurred while connecting to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:97 +-#, c-format +-msgid "Issuer certificate is invalid: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:100 +-#, c-format +-msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:103 +-#, c-format +-msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:107 +-msgid "Remote certificate has expired." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:110 +-#, c-format +-msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:113 +-#, c-format +-msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:149 +-#, c-format +-msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:182 +-#, c-format +-msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" +- +-#. Host exists, but has neither IPv4 nor IPv6?? +-#: ../src/plugins/https-utils.c:203 +-#, c-format +-msgid "Can't resolve host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:210 +-msgid "Failed to set socket blocking mode." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:213 +-msgid "Failed to wrap TCP socket by SSL." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:215 +-msgid "Failed to enable client handshake to SSL socket." +-msgstr "" +- +-#: ../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:233 +-#, c-format +-msgid "Can't connect to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:241 +-msgid "Failed to set certificate hook." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:247 +-msgid "Failed to set handshake callback." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:251 +-msgid "Failed to reset handshake." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:258 +-#, c-format +-msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:267 +-msgid "Failed to close SSL socket." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:332 +-#, c-format +-msgid "Malformed HTTP response header: '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:369 +-#, c-format +-msgid "Receiving of data failed: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:398 +-msgid "Malformed chunked response." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:423 +-msgid "Failed to initialize NSS." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:429 +-msgid "Failed to initialize security module." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:444 +-msgid "Failed to shutdown NSS." +-msgstr "" +- +-#: ../src/plugins/bodhi.c:375 +-msgid "List of bug ids" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:376 +-msgid "Specify a bodhi server url" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:377 +-msgid "Specify a release" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:382 +-msgid "" +-"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" +-"\n" +-"Search for updates on bodhi server" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:434 +-msgid "Searching for updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:440 +-msgid "No updates for this package found" +-msgstr "" +- +-#. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 +-msgid "Local version of the package is newer than available updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:486 +-#, c-format +-msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:85 +-msgid "" +-"& [-v] [-od] FILE...\n" +-"\n" +-"Scans files for split oops message. Can print and/or delete them." +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:97 +-msgid "Print found oopses" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:98 +-msgid "Delete files with found oopses" +-msgstr "" +- +-#: ../src/cli/abrt-cli-core.c:91 +-#, c-format +-msgid "'%s' identifies more than one problem directory" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:142 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:147 +-msgid "Remove problem directory DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:148 +-msgid "Analyze and report problem data in DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:149 +-msgid "Print information about DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:150 +-msgid "Print the count of the recent crashes" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:165 +-msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +- +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "" +- +-#: ../src/cli/list.c:188 +-msgid "List only not-reported problems" +-msgstr "" +- +-#. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 +-msgid "Show detailed report" +-msgstr "" +- +-#: ../src/cli/list.c:191 +-msgid "List only the problems more recent than specified timestamp" +-msgstr "" +- +-#: ../src/cli/list.c:192 +-msgid "List only the problems older than specified timestamp" +-msgstr "" +- +-#: ../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:235 +-msgid "& info [options] DIR..." +-msgstr "" +- +-#: ../src/cli/list.c:244 +-msgid "Text larger than this will be shown abridged" +-msgstr "" +- +-#: ../src/cli/list.c:264 +-#, c-format +-msgid "No such problem directory '%s'" +-msgstr "" +- +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "" +- +-#: ../src/cli/status.c:78 +-msgid "Print only the problem count without any message" +-msgstr "" +- +-#: ../src/cli/status.c:79 +-msgid "Print only the problems more recent than specified timestamp" +-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 "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:1 +-msgid "" +-"Send core dump to remote retrace server for analysis or perform local " +-"analysis if the remote analysis fails" +-msgstr "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. If " +-"user doens't want to upload his coredump to anywhere the event performs " +-"local analysis. Local analysis is run event if remote analysis fails. Pros: " +-"no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " +-"private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:1 +-msgid "Analyze VM core" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:3 +-msgid "" +-"Needs to install kernel debuginfo packages, which might take significant " +-"time, and take up disk space." +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:1 +-msgid "Collect GConf configuration" +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:2 +-msgid "Save configuration from application's GConf directory" +-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 "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:1 +-msgid "Collect system-wide vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:2 +-msgid "Save /etc/vimrc and /etc/gvimrc" +-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 "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:1 +-msgid "Collect yours vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:2 +-msgid "Save .vimrc and .gvimrc from your home directory" +-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 "" +- +-#: ../src/plugins/post_report.xml.in.h:1 +-msgid "Post report" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:2 +-msgid "Executed after the reporting is finished" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:3 +-msgid "Used for updating of the databases" +-msgstr "" +diff --git a/po/cy.po b/po/cy.po +index 26089c8..15b7213 100644 +--- a/po/cy.po ++++ b/po/cy.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Welsh (http://www.transifex.com/projects/p/fedora/language/cy/)\n" ++"Language-Team: Welsh (http://www.transifex.com/projects/p/fedora-abrt/language/cy/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/da.po b/po/da.po +index cc961ba..afe0218 100644 +--- a/po/da.po ++++ b/po/da.po +@@ -8,10 +8,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Danish (http://www.transifex.com/projects/p/fedora/language/da/)\n" ++"Language-Team: Danish (http://www.transifex.com/projects/p/fedora-abrt/language/da/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "Kan ikke udføre \"%s\"" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Advarsel" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Kris Thomsen\n\nDansk-gruppen \nMere info: http://www.dansk-gruppen.dk" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Skjul" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Problem opdaget" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Rapportér" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Et problem er opstået" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan ikke tage ejerskab over \"%s\"" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -233,7 +319,7 @@ msgstr "Problemmappe" + msgid "Configuration file" + msgstr "Konfigurationsfil" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [tilvalg]" +@@ -300,19 +386,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Genererer backtrace" + +@@ -397,32 +560,32 @@ msgstr "Genererer backtrace" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d MAPPE\n\nUdregner og gemmer UUID og DUPHASH af python-nedbrudsdumps" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Filen {0} findes ikke." + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -650,6 +832,38 @@ msgstr "Slet filer i denne mappe" + msgid "Preserve this directory" + msgstr "Bevar denne mappe" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -840,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1416,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Se \"abrt-cli COMMAND --help\" for mere information" + +@@ -1502,6 +1724,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/de.po b/po/de.po +index 5b631fb..43164b9 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -11,16 +11,16 @@ + # Laurin , 2011 + # Mario Blättermann , 2011 + # noxin , 2013 +-# Rainer , 2013 ++# Rainer Gromansperg , 2013 + # Roman Spirgi , 2011-2012 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: German (http://www.transifex.com/projects/p/fedora-abrt/language/de/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -81,120 +81,206 @@ msgstr "%s und die Diagnostikdaten wurden übertragen" + msgid "Can't execute '%s'" + msgstr "»%s« kann nicht ausgeführt werden" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Benachrichtigung kann nicht geschlossen werden: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Warnung" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Mario Blättermann\nFabian Affolter\nRoman Spirgi" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "_Quit" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Ausblenden" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "_About" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Fehler festgestellt" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Für immer ignorieren" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Öffnen" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "Dieser Fehler wurde bereits gemeldet" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Melden" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Ein Fehler ist aufgetreten" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Ein Fehler wurde gemeldet" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Ein neues Problem ist aufgetreten" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "Benachrichtigung kann nicht angezeigt werden: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, 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:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Eigentumsrechte von »%s« können nicht geändert werden." + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Verzeichnis kann nicht mit Schreibrechten geöffnet werden - »%s«" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, 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:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "_Schließen" +@@ -203,7 +289,7 @@ msgstr "_Schließen" + msgid "_Defaults" + msgstr "_Defaults" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Einstellung für die Problemmeldung" +@@ -242,7 +328,7 @@ msgstr "Fehler-Verzeichnis" + msgid "Configuration file" + msgstr "Konfigurationsdatei" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -309,19 +395,19 @@ msgstr "Kein weiterer Speicherplatz für die Fehlerbeschreibung vorhanden" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Element »%s« kann nicht vo Fehlerverzeichnis »%s« entfernt werden" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "Der Name »%s« ist verloren gegangen. Bitte stellen Sie sicher, dass kein anderer Dienst unter dem gleichen Namen läuft.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Nach NUM Sekunden Inaktivität beenden" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Die Anwendung muss mit Root-Rechten ausgeführt werden." + +@@ -396,8 +482,85 @@ msgstr "Ungültige Parameteranzahl" + msgid "Unknown option value: '%s'\n" + msgstr "Unbekannter Optionswert: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Ablaufverfolgung erstellen" + +@@ -406,32 +569,32 @@ msgstr "Ablaufverfolgung erstellen" + msgid "Can't connect to system DBus: %s" + msgstr "Keine Verbindung zum DBus-System: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Chown nicht möglich: »%s«: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Problematisches Verzeichnis konnte nicht gelöscht werden: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Fehler-Daten können von abrt-dbus nicht abgerufen werden: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr " Temporäre Datei »%s« konnte nicht erstellt werden" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -439,7 +602,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:262 ++#: ../src/lib/ignored_problems.c:264 + #, 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." +@@ -471,6 +634,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nBerechnet und speichert UUID des Speicherauszugs in Problem-Verzeichnis DIR" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -497,29 +679,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nBerechnet und speichert UUID und DUPHASH von Python Crash-Dumps" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "Benutzung: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Datei {0} nicht vorhanden" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "Oops-Text aus Core auslesen" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "{0} kann nicht verarbeitet werden:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "Oops-Meldung kann nicht ausgelesen werden: »{0}«" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops-Text erfolgreich ausgelesen" + +@@ -659,6 +841,38 @@ msgstr "Löscht Dateien in diesem Verzeichnis" + msgid "Preserve this directory" + msgstr "Dieses Verzeichnis behalten" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "Signal vom Benutzerbereichs-Code gesendet" +@@ -849,11 +1063,15 @@ msgstr "Erstellung eines Fehlerverzeichnisses auf 1 pro Sekunde beschränken" + msgid "Print search string(s) to stdout and exit" + msgstr "Suchbegriff(e) in Stdout schreiben und beenden" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + 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:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d Sekunden warten" +@@ -1425,31 +1643,35 @@ msgstr "Löschen Dateien mit gefundenen Oopses" + msgid "'%s' identifies more than one problem directory" + msgstr "»%s« findet mehr als ein Fehlerverzeichnis" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Aufruf: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Liste noch nicht berichteter Fehler [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Fehler-Verzeichnis DIR entfernen" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Fehlerdaten in DIR analysieren und berichten" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Informationen zu DIR auflisten" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Anzahl der jüngsten Abstürze ausgeben" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Siehe 'abrt-cli COMMAND --help' für weitere Informationen" + +@@ -1511,6 +1733,45 @@ msgstr "Das aktuellste Auftreten des Fehlers anstatt des angegebenen Zeitstempel + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT hat %u Fehler festgestellt. (Für weitere Informationen: abrt-cli list%s)\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/de_CH.po b/po/de_CH.po +index 5e78be5..65491c7 100644 +--- a/po/de_CH.po ++++ b/po/de_CH.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/fedora/language/de_CH/)\n" ++"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/fedora-abrt/language/de_CH/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/dz.po b/po/dz.po +index f4c21be..8380e9c 100644 +--- a/po/dz.po ++++ b/po/dz.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Dzongkha (http://www.transifex.com/projects/p/fedora/language/dz/)\n" ++"Language-Team: Dzongkha (http://www.transifex.com/projects/p/fedora-abrt/language/dz/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/el.po b/po/el.po +index 7a0bc30..7749cf0 100644 +--- a/po/el.po ++++ b/po/el.po +@@ -5,16 +5,16 @@ + # Translators: + # Christos Bacharakis , 2011 + # Jiří Moskovčák , 2011 +-# kraniasorestis , 2013 ++# Kranias Orestis , 2013 + # skaftanis , 2011 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Greek (http://www.transifex.com/projects/p/fedora/language/el/)\n" ++"Language-Team: Greek (http://www.transifex.com/projects/p/fedora-abrt/language/el/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -75,120 +75,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "Το '%s' δεν μπορεί να εκτελεστεί" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Προειδοποίηση" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Μικρο εφαρμογή η οποία ειδοποιηεί το χρήστη για κατάρευση εντοπίστηκε από το ABRT" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "πόντοι -επιβράβευσης-μεταφραστή" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Απόκρυψη" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Ανοιγμα" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Αναφορά" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Ένα πρόβλημα προέκυψε" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -197,7 +283,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -236,7 +322,7 @@ msgstr "" + msgid "Configuration file" + msgstr "Αρχείο παραμετροποίησης" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -303,19 +389,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -390,8 +476,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -400,32 +563,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -433,7 +596,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -465,6 +628,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -491,29 +673,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -653,6 +835,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -843,11 +1057,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1419,31 +1637,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1505,6 +1727,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/en_GB.po b/po/en_GB.po +index 9cfce53..39d4b57 100644 +--- a/po/en_GB.po ++++ b/po/en_GB.po +@@ -5,16 +5,16 @@ + # Translators: + # Bruce Cowan , 2011 + # Jiří Moskovčák , 2011 +-# readmanr , 2013 +-# xteejx , 2013 ++# Robert Readman , 2013 ++# Roy Jamison , 2013 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/fedora/language/en_GB/)\n" ++"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/fedora-abrt/language/en_GB/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -75,120 +75,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "Can't execute '%s'" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Can't close notification: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Warning" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Bruce Cowan " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Hide" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Problem detected" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Open" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Report" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "A Problem has Occurred" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "A New Problem has Occurred" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "Can't show notification: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Can't set encoding on gio channel: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Can't take ownership of '%s'" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Can't open directory for writing '%s'" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -197,7 +283,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -236,7 +322,7 @@ msgstr "Problem directory" + msgid "Configuration file" + msgstr "Configuration file" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -303,19 +389,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Can't delete the element '%s' from the problem directory '%s'" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "The name '%s' has been lost, please check if other service owning the name is not running.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Exit after NUM seconds of inactivity" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "This program must be run as root." + +@@ -390,8 +476,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Generating backtrace" + +@@ -400,32 +563,32 @@ msgstr "Generating backtrace" + msgid "Can't connect to system DBus: %s" + msgstr "Can't connect to system DBus: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Can't chown '%s': %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Deleting problem directory failed: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Can't get problem data from abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -433,7 +596,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -465,6 +628,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nCalculates and saves UUID of coredump in problem directory DIR" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -491,29 +673,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nCalculates and saves UUID and DUPHASH of python crash dumps" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "File {0} doesn't exist" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -653,6 +835,38 @@ msgstr "Delete files inside this directory" + msgid "Preserve this directory" + msgstr "Preserve this directory" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -843,11 +1057,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "Print search string(s) to stdout and exit" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1419,31 +1637,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Remove problem directory DIR" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analyse and report problem data in DIR" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Print information about DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "See 'abrt-cli COMMAND --help' for more information" + +@@ -1505,6 +1727,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/en_US.po b/po/en_US.po +index a8589a4..931a0c5 100644 +--- a/po/en_US.po ++++ b/po/en_US.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: English (United States) (http://www.transifex.com/projects/p/fedora/language/en_US/)\n" ++"Language-Team: English (United States) (http://www.transifex.com/projects/p/fedora-abrt/language/en_US/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/eo.po b/po/eo.po +index e6a20f9..63720b0 100644 +--- a/po/eo.po ++++ b/po/eo.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Esperanto (http://www.transifex.com/projects/p/fedora/language/eo/)\n" ++"Language-Team: Esperanto (http://www.transifex.com/projects/p/fedora-abrt/language/eo/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/es.po b/po/es.po +index b338333..5d522c1 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -3,27 +3,29 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# Adolfo Jayme Barrientos , 2013 ++# Adolfo Jayme Barrientos , 2013 + # alex_pe , 2013 + # Andrei Garza , 2012 +-# chris.rico , 2013 ++# christopher , 2013 + # Daniel Cabrera , 2011 +-# Domingo Becker , 2011,2013 ++# beckerde , 2011,2013 + # Eduardo Villagrán M , 2013 ++# vareli , 2014 + # Gladys Guerrero , 2014 ++# Henderb Rodriguez , 2014 + # Jiří Moskovčák , 2011 + # Jorge González , 2011 + # Luis Bazán , 2011 +-# イスラエル Torres Cázares , 2013 ++# Israel Torres , 2013 + # vareli , 2013 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/language/es/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -84,120 +86,206 @@ msgstr "%s y los datos de diagnóstico han sido enviados" + msgid "Can't execute '%s'" + msgstr "No se puede ejecutar «%s»" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "No puedo cerrar notificación: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Aviso" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "traductores: Claudio Rodrigo Pereyra Diaz , Domingo Becker , Héctor Daniel Cabrera , Dennis Tobar ." + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "_Salir" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Ocultar" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "_Acerca de" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Problema detectado" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Ignorar siempre" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Abierto" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "El problema fue reportado anteriormente" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Informar" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Ocurrió un problema" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Un problema ha sido reportado." + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Ha ocurrido un problema nuevo" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "No puedo mostrar notificación: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, 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:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "No puedo hacerme dueño de '%s'" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "No puedo abrir directorio para escribir '%s'" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, 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:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "Preguntar antes de robar directorio" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "Enviar uReport automáticamente" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "Informe acortado" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "Informe acortado en silencio" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "El fichero coredump es necesario para generar una traza de la pila que es una operación que consume tiempo y espacio. ABRT suministra un servicio que genera la traza de la pila pero usted tiene que subir el coredump a este servicio. Con esta opción deshabilitada ABRT subirá el coredump sin preguntar." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "ABRT almacena los datos del problema en directorios. Por lo tanto ABRT necesita un directorio con permiso de escritura, el directorio se mueve de la localización del sistema a su directorio home. Con esta opción deshabilitada ABRT moverá el directorio del problema sin preguntar." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "uReport es una descripción corta y completamente anónima del un problema. ABRT usa uReport para una detección globlal rápida de duplicados. En la configuración por defecto uReport es enviado al principio del proceso de informa. Con esta opción habilitada uReports se envía automáticamente después de las detección de un problema." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "Con esta opción habilitada el proceso de informe iniciado pulsando el botón Informe en la burbuja de notificación del problema será interrumpido después de enviar uReport. Usted siempre puede usar el navegador de problemas por defecto para hacer un informe completo." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "Con esta opción habilitada ABRT nunca muestra notificaciones de problemas reportados. Tiene efecto sólo si los informes Acortados están habilitados." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "Preguntar antes de subir coredump" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "Pide entrada privada para información sensible" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "Notifica problemas incompletos" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "Los problemas incompletos son detectados mientras el ordenador se está apagando o el usuario está saliendo. Con el objetivo de suministrar informes de problemas evaluables, ABRT no le permitirá presentar estos problemas." ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "_Cerrar" +@@ -206,7 +294,7 @@ msgstr "_Cerrar" + msgid "_Defaults" + msgstr "Configuraciones _por defecto" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Configuración de Reporte de Problemas" +@@ -245,7 +333,7 @@ msgstr "Directorio de problemas" + msgid "Configuration file" + msgstr "Archivo de configuración" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -312,19 +400,19 @@ msgstr "No queda espacio del problema" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "No puedo borrar el elemento '%s' del directorio de problema '%s'" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "El nombre '%s' ser perdió, por favor, verifique si otro servicio que tenga ese nombre no se esté ejecutando.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Sale después de NUM de segundos de inactividad" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa debe ser ejecutado como root." + +@@ -399,8 +487,85 @@ msgstr "Número de argumentos no es válido" + msgid "Unknown option value: '%s'\n" + msgstr "Valor de opción desconocido: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Generación de seguimiento" + +@@ -409,32 +574,32 @@ msgstr "Generación de seguimiento" + msgid "Can't connect to system DBus: %s" + msgstr "No se puede conectar con el sistema DBys: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "No puedo hacer chown'%s': %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Falló el borrado del directorio de problema: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "No se pudo obtener datos del problema usando abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "No puede crear fichero temporal ‘%s’" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -442,7 +607,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:262 ++#: ../src/lib/ignored_problems.c:264 + #, 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’" +@@ -474,6 +639,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nCalcula y guarda UUID de coredump en directorio de problemas DIR" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "Analizando volcado de memoria '%s'" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "Build-id faltante: %s" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "Uso: %s [-v] [-o OUTFILE] -c COREFILE" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "No se ha especificado COREFILE " ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -500,29 +684,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nCalcula y guarda UUID y DUPHASH de volcados de daños de Python" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "Uso: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Archivo {0}no existe" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "Extrayendo los textos ups del núcleo" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "No se puede procesar {0}:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "No puedo extraer el mensaje ups:'{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "EL texto ups a sido extraído efectivamente " + +@@ -662,6 +846,38 @@ msgstr "Borrar archivos dentro de este directorio" + msgid "Preserve this directory" + msgstr "Preservar este directorio" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "Señal enviada por código de userspace" +@@ -852,11 +1068,15 @@ msgstr "Acelerando creación de directorio de problema a 1 por segundo" + 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:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + 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:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Durmiendo por %d segundos" +@@ -1428,31 +1648,35 @@ msgstr "Borrar los archivos con oopses encontrados" + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identificado más de un directory con problemas" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Uso: abrt-cli [--version] COMANDO [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "La lista aún no ha reportado problemas [en los DIR]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Retirar directorio de problemas DIR" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analizar y reportar datos de problemas en DIR" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Imprimir información sobre DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Imprima el conteo de las fallas recientes" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Para obtener mayor información, ver 'abrt-cli COMMAND --help' " + +@@ -1514,6 +1738,45 @@ msgstr "Imprimir únicamente los problemas más recientes que la marca de tiemp + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT a detectado %u problema(s). Para más información ejecute: abrt-cli list %s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/es_ES.po b/po/es_ES.po +deleted file mode 100644 +index f8609fd..0000000 +--- a/po/es_ES.po ++++ /dev/null +@@ -1,1588 +0,0 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: +-msgid "" +-msgstr "" +-"Project-Id-Version: ABRT\n" +-"Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Content-Transfer-Encoding: 8bit\n" +-"Language: es_ES\n" +-"Plural-Forms: nplurals=2; plural=(n != 1);\n" +- +-#: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" +- +-#: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../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" +-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:243 +-#, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:267 +-#, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:386 +-msgid "A problem has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:388 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:398 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" +-msgstr "" +- +-#: ../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:632 ../src/applet/applet.c:698 +-#, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:788 +-msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "" +- +-#: ../src/applet/applet.c:804 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:812 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:814 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:816 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:884 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:934 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:950 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../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:969 ../src/applet/applet.c:1004 +-msgid "Report" +-msgstr "" +- +-#: ../src/applet/applet.c:974 +-msgid "A Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1000 +-msgid "A Problem has been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:1008 +-msgid "A New Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1018 +-#, c-format +-msgid "Can't show notification: %s" +-msgstr "" +- +-#. TODO: Terminate child's process? +-#: ../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:1136 +-#, c-format +-msgid "Can't set encoding on gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1140 +-#, c-format +-msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1172 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1182 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../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: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:75 +-msgid "_Close" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:84 +-msgid "_Defaults" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:110 +-#: ../src/configuration-gui/main.c:36 +-msgid "Problem Reporting Configuration" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:75 +-msgid "About System Config ABRT" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:105 +-msgid "About" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:106 +-msgid "Quit" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:382 +-msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" +-"\n" +-"Query package database and save package and component name" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:394 +-#: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 +-#: ../src/plugins/abrt-action-analyze-oops.c:48 +-#: ../src/plugins/abrt-action-analyze-xorg.c:84 +-#: ../src/plugins/abrt-action-analyze-python.c:47 +-#: ../src/plugins/abrt-action-generate-backtrace.c:55 +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 +-msgid "Problem directory" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:395 +-msgid "Configuration file" +-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 "" +- +-#: ../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: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 "" +- +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 +-msgid "Add program names to log" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:123 +-msgid "Unknown error" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:188 +-#, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:223 +-#, c-format +-msgid "'%s' element can't be modified" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 +-#, c-format +-msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:580 +-#, c-format +-msgid "Can't get size of '%s'" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:595 +-msgid "No problem space left" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:627 +-#, c-format +-msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#: ../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 "" +- +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 +-msgid "This program must be run as root." +-msgstr "" +- +-#: ../src/daemon/abrtd.c:451 +-msgid "" +-"The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" +- +-#: ../src/daemon/abrtd.c:497 +-msgid "Do not daemonize" +-msgstr "" +- +-#: ../src/daemon/abrtd.c:498 +-msgid "Log to syslog even with -d" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:388 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:396 +-msgid "Run EVENT on DIR" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:397 +-msgid "Communicate directly to the user" +-msgstr "" +- +-#: ../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:258 +-msgid "" +-"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +-"\n" +-"\n" +-"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" +-"specified in abrt.conf\n" +-"\n" +-"If UPLOAD_DIRECTORY is not provided, uses a value of\n" +-"WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:281 +-msgid "Daemize" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:282 +-msgid "Number of concurrent workers. Default is " +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" +-msgstr "" +- +-#: ../src/daemon/abrt-auto-reporting.c:138 +-#, c-format +-msgid "Unknown option value: '%s'\n" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/lib/hooklib.c:251 +-msgid "Generating backtrace" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:42 +-#, c-format +-msgid "Can't connect to system DBus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:66 +-#, c-format +-msgid "Can't chown '%s': %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:93 +-#, c-format +-msgid "Deleting problem directory failed: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:127 +-#, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:161 +-#, c-format +-msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/ignored_problems.c:231 +-#, c-format +-msgid "Can't create temporary file '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 +-#, c-format +-msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:41 +-msgid "" +-"& [options] -d DIR\n" +-"\n" +-"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" +-"and identifies crash function in problem directory DIR" +-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 "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 +-msgid "Crash thread not found" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-c.c:67 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-oops.c:37 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/plugins/abrt-action-analyze-xorg.c:113 +-#, c-format +-msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-python.c:36 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 +-msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 +-msgid "File {0} doesn't exist" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 +-msgid "Extracting the oops text from core" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 +-msgid "" +-"Can't process {0}:\n" +-"{1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 +-msgid "Can't extract the oops message: '{0}'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 +-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" +-"\n" +-"Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:56 +-msgid "Additional debuginfo directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:57 +-msgid "Kill gdb if it runs for more than NUM seconds" +-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 "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 +-msgid "" +-"& [-v] [-r] -d DIR\n" +-"\n" +-"Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +-msgid "Do not hash fingerprints" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 +-msgid "Generating core_backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 +-msgid "Error: GDB did not return any data" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 +-#, c-format +-msgid "Error: %s" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:51 +-msgid "Exiting on user command" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 +-#, c-format +-msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" +-" [-e, --exact=PATH[:PATH]...]\n" +-"\n" +-"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +-"to CACHEDIR, using TMPDIR as temporary staging area.\n" +-"Old 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" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 +-msgid "Can't open {0}: {1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 +-msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 +-msgid "{0} of debuginfo files are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 +-msgid "Missing requested file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 +-msgid "Missing debuginfo file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 +-msgid "All debuginfo files are available" +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 +-msgid "" +-"Ok to upload core dump? (It may contain sensitive data). If your answer is " +-"'No', a stack trace will be generated locally. (It may download a huge " +-"amount of data)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 +-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 "" +- +-#: ../src/plugins/abrt-action-trim-files.c:222 +-msgid "" +-"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" +-"\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" +-"FILEs are preserved (never deleted)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:236 +-msgid "Delete whole problem directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:237 +-msgid "Delete files inside this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:238 +-msgid "Preserve this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:529 +-msgid "Signal sent by userspace code" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:533 +-msgid "Signal sent by timer/IO/async event" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:541 +-msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:544 +-msgid "Signal due to write to closed pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:550 +-#: ../src/plugins/abrt-gdb-exploitable:575 +-msgid "Signal sent by keyboard" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:554 +-#: ../src/plugins/abrt-gdb-exploitable:579 +-msgid "Job control signal sent by kernel" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:558 +-#: ../src/plugins/abrt-gdb-exploitable:587 +-msgid "Signal sent by window resize" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:562 +-#: ../src/plugins/abrt-gdb-exploitable:591 +-msgid "Signal sent by alarm(N) expiration" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:583 +-msgid "Signal due to write to broken pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:607 +-msgid "ABRT signal (abort() was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:616 +-msgid "XCPU signal (over CPU time limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:620 +-msgid "XFSZ signal (over file size limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:624 +-msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:628 +-msgid "SYS signal (unknown syscall was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:633 +-msgid "Arithmetic exception" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:637 +-msgid "Division by zero" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:641 +-msgid "Illegal instruction (jump to a random address?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:647 +-msgid "Non-crash related signal" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:652 +-msgid "Stack overflow" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:656 +-msgid "Write to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:660 +-msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:666 +-#: ../src/plugins/abrt-gdb-exploitable:670 +-msgid "Jump to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:674 +-msgid "" +-"Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:693 +-msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:706 +-msgid "Likely crash reason: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:707 +-msgid "Exploitable rating (0-9 scale): " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:709 +-msgid "Current instruction: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:711 +-msgid "Exploitability analysis came up empty\n" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:142 +-msgid "" +-"& [-vs] [-F STR]... FILE PROG [ARGS]\n" +-"\n" +-"Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:154 +-msgid "Don't run PROG if STRs aren't found" +-msgstr "" +- +-#: ../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: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: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:153 +-#, c-format +-msgid " Tainted modules: %s." +-msgstr "" +- +-#: ../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: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:278 +-msgid "Create new problem directory in DIR for every oops found" +-msgstr "" +- +-#: ../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:280 +-msgid "Save the extracted information in PROBLEM" +-msgstr "" +- +-#: ../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:282 +-msgid "Throttle problem directory creation to 1 per second" +-msgstr "" +- +-#: ../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:379 +-msgid "Can't update the problem: more than one oops found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:398 +-#, c-format +-msgid "Sleeping for %d seconds" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:237 +-msgid "" +-"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" +-"\n" +-"Extract Xorg crash from FILE (or standard input)" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:245 +-msgid "Print found crash data on standard output" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:246 +-msgid "Create problem directory in DIR for every crash found" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:70 +-msgid "" +-"Retrace server can not be used, because the crash is too large. Try local " +-"retracing." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:211 +-#: ../src/plugins/abrt-retrace-client.c:398 +-#: ../src/plugins/abrt-retrace-client.c:666 +-#: ../src/plugins/abrt-retrace-client.c:832 +-#, c-format +-msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:223 +-#: ../src/plugins/abrt-retrace-client.c:412 +-#: ../src/plugins/abrt-retrace-client.c:765 +-#: ../src/plugins/abrt-retrace-client.c:849 +-#: ../src/plugins/abrt-retrace-client.c:916 +-#: ../src/plugins/abrt-retrace-client.c:1001 +-#: ../src/plugins/abrt-retrace-client.c:1060 +-#, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" +-"%s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:232 +-#: ../src/plugins/abrt-retrace-client.c:745 +-#: ../src/plugins/abrt-retrace-client.c:841 +-#: ../src/plugins/abrt-retrace-client.c:908 +-#: ../src/plugins/abrt-retrace-client.c:982 +-#: ../src/plugins/abrt-retrace-client.c:1052 +-msgid "Invalid response from server: missing HTTP message body." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:424 +-#, c-format +-msgid "" +-"Retrace server is unable to process package '%s.%s'.\n" +-"Is it a part of official '%s' repositories?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:444 +-msgid "Querying server settings" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:452 +-msgid "The server is fully occupied. Try again later." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:453 +-msgid "The server denied your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:484 +-#: ../src/plugins/abrt-retrace-client.c:500 +-#, c-format +-msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:514 +-#, c-format +-msgid "" +-"The size of your crash is %lld bytes, but the retrace server only accepts " +-"crashes smaller or equal to %lld bytes." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:534 +-msgid "The server does not support xz-compressed tarballs." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:571 +-#, c-format +-msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:575 +-msgid "The server is not able to handle your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:594 +-msgid "Unknown package sent to Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:603 +-msgid "Preparing an archive to upload" +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:629 +-#, c-format +-msgid "You are going to upload %d megabytes. Continue?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:638 +-msgid "Cancelled by user" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:673 +-#, c-format +-msgid "Uploading %d megabytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:675 +-#, c-format +-msgid "Uploading %lld bytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:699 +-#, c-format +-msgid "Uploading %d%%\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:711 +-msgid "Failed to read from a pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:724 +-#, c-format +-msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:735 +-msgid "Upload successful" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:757 +-msgid "" +-"Your problem directory is corrupted and can not be processed by the Retrace " +-"server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:759 +-msgid "" +-"The archive contains malicious files (such as symlinks) and thus can not be " +-"processed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:772 +-msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:778 +-msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:785 +-msgid "Retrace job started" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:798 +-#, c-format +-msgid "" +-"Task Id: %s\n" +-"Task Password: %s\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:856 +-msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:868 +-#, c-format +-msgid "" +-"Task Status: %s\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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1160 +-msgid "" +-"Retrace failed. Try again later and if the problem persists report this " +-"issue please." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1207 +-msgid "log to syslog" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1209 +-msgid "allow insecure connection to retrace server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1211 +-msgid "" +-"do not check whether retrace server is able to process given package before " +-"uploading the archive" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1214 +-msgid "retrace server URL" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1216 +-msgid "retrace server port" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1218 +-msgid "(debug) show received HTTP headers" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1219 +-msgid "For create and batch operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1221 +-msgid "read data from ABRT problem directory" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1223 +-msgid "read data from coredump" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1225 +-msgid "Delay for polling operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1227 +-msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1229 +-msgid "For status, backtrace, and log operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1231 +-msgid "id of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1233 +-msgid "password of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1237 +-msgid "" +-"abrt-retrace-client [options]\n" +-"Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1282 +-#: ../src/plugins/abrt-retrace-client.c:1288 +-msgid "Either problem directory or coredump is needed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1294 +-#: ../src/plugins/abrt-retrace-client.c:1302 +-#: ../src/plugins/abrt-retrace-client.c:1310 +-#: ../src/plugins/abrt-retrace-client.c:1318 +-msgid "Task id is needed." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1324 +-#, c-format +-msgid "Unknown operation: %s." +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 +-msgid "Local GNU Debugger" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 +-msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 +-msgid "" +-"Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +-msgid "Send core dump to remote retrace server for analysis" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +-#: ../src/plugins/analyze_CCpp.xml.in.h:3 +-msgid "Retrace server 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 "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 +-#: ../src/plugins/analyze_CCpp.xml.in.h:5 +-msgid "Insecure" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 +-#: ../src/plugins/analyze_CCpp.xml.in.h:6 +-msgid "Whether or not to use insecure connection" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 +-#: ../src/plugins/analyze_CCpp.xml.in.h:7 +-msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:1 +-msgid "Collect .xsession-errors" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:2 +-msgid "Save relevant lines from ~/.xsession-errors file" +-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 "" +- +-#: ../src/plugins/https-utils.c:62 +-msgid "An error occurred on the server side." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:65 +-#, c-format +-msgid "A server-side error occurred on '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:74 +-msgid "An error occurred while connecting to the server" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:77 +-#, c-format +-msgid "An error occurred while connecting to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:97 +-#, c-format +-msgid "Issuer certificate is invalid: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:100 +-#, c-format +-msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:103 +-#, c-format +-msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:107 +-msgid "Remote certificate has expired." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:110 +-#, c-format +-msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:113 +-#, c-format +-msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:149 +-#, c-format +-msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:182 +-#, c-format +-msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" +- +-#. Host exists, but has neither IPv4 nor IPv6?? +-#: ../src/plugins/https-utils.c:203 +-#, c-format +-msgid "Can't resolve host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:210 +-msgid "Failed to set socket blocking mode." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:213 +-msgid "Failed to wrap TCP socket by SSL." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:215 +-msgid "Failed to enable client handshake to SSL socket." +-msgstr "" +- +-#: ../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:233 +-#, c-format +-msgid "Can't connect to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:241 +-msgid "Failed to set certificate hook." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:247 +-msgid "Failed to set handshake callback." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:251 +-msgid "Failed to reset handshake." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:258 +-#, c-format +-msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:267 +-msgid "Failed to close SSL socket." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:332 +-#, c-format +-msgid "Malformed HTTP response header: '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:369 +-#, c-format +-msgid "Receiving of data failed: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:398 +-msgid "Malformed chunked response." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:423 +-msgid "Failed to initialize NSS." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:429 +-msgid "Failed to initialize security module." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:444 +-msgid "Failed to shutdown NSS." +-msgstr "" +- +-#: ../src/plugins/bodhi.c:375 +-msgid "List of bug ids" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:376 +-msgid "Specify a bodhi server url" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:377 +-msgid "Specify a release" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:382 +-msgid "" +-"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" +-"\n" +-"Search for updates on bodhi server" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:434 +-msgid "Searching for updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:440 +-msgid "No updates for this package found" +-msgstr "" +- +-#. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 +-msgid "Local version of the package is newer than available updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:486 +-#, c-format +-msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:85 +-msgid "" +-"& [-v] [-od] FILE...\n" +-"\n" +-"Scans files for split oops message. Can print and/or delete them." +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:97 +-msgid "Print found oopses" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:98 +-msgid "Delete files with found oopses" +-msgstr "" +- +-#: ../src/cli/abrt-cli-core.c:91 +-#, c-format +-msgid "'%s' identifies more than one problem directory" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:142 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:147 +-msgid "Remove problem directory DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:148 +-msgid "Analyze and report problem data in DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:149 +-msgid "Print information about DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:150 +-msgid "Print the count of the recent crashes" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:165 +-msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +- +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "" +- +-#: ../src/cli/list.c:188 +-msgid "List only not-reported problems" +-msgstr "" +- +-#. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 +-msgid "Show detailed report" +-msgstr "" +- +-#: ../src/cli/list.c:191 +-msgid "List only the problems more recent than specified timestamp" +-msgstr "" +- +-#: ../src/cli/list.c:192 +-msgid "List only the problems older than specified timestamp" +-msgstr "" +- +-#: ../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:235 +-msgid "& info [options] DIR..." +-msgstr "" +- +-#: ../src/cli/list.c:244 +-msgid "Text larger than this will be shown abridged" +-msgstr "" +- +-#: ../src/cli/list.c:264 +-#, c-format +-msgid "No such problem directory '%s'" +-msgstr "" +- +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "" +- +-#: ../src/cli/status.c:78 +-msgid "Print only the problem count without any message" +-msgstr "" +- +-#: ../src/cli/status.c:79 +-msgid "Print only the problems more recent than specified timestamp" +-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 "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:1 +-msgid "" +-"Send core dump to remote retrace server for analysis or perform local " +-"analysis if the remote analysis fails" +-msgstr "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. If " +-"user doens't want to upload his coredump to anywhere the event performs " +-"local analysis. Local analysis is run event if remote analysis fails. Pros: " +-"no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " +-"private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:1 +-msgid "Analyze VM core" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:3 +-msgid "" +-"Needs to install kernel debuginfo packages, which might take significant " +-"time, and take up disk space." +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:1 +-msgid "Collect GConf configuration" +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:2 +-msgid "Save configuration from application's GConf directory" +-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 "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:1 +-msgid "Collect system-wide vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:2 +-msgid "Save /etc/vimrc and /etc/gvimrc" +-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 "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:1 +-msgid "Collect yours vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:2 +-msgid "Save .vimrc and .gvimrc from your home directory" +-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 "" +- +-#: ../src/plugins/post_report.xml.in.h:1 +-msgid "Post report" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:2 +-msgid "Executed after the reporting is finished" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:3 +-msgid "Used for updating of the databases" +-msgstr "" +diff --git a/po/et.po b/po/et.po +index eb7a2cb..ecac4a3 100644 +--- a/po/et.po ++++ b/po/et.po +@@ -8,10 +8,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Estonian (http://www.transifex.com/projects/p/fedora/language/et/)\n" ++"Language-Team: Estonian (http://www.transifex.com/projects/p/fedora-abrt/language/et/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "'%s'-i käivitamine nurjus" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Hoiatus" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "mihkel " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Peida" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Tuvastati probleem" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Teavita" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Tekkis probleem" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' omandamine nurjus" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -233,7 +319,7 @@ msgstr "Probleemide kataloog" + msgid "Configuration file" + msgstr "Seadistuste fail" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [valikud]" +@@ -300,19 +386,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Välju peale NUM sekundit tegevusetust" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Seda rakendust peab käivitama administraatori õigustes." + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Tagasijälituse genereerimine" + +@@ -397,32 +560,32 @@ msgstr "Tagasijälituse genereerimine" + msgid "Can't connect to system DBus: %s" + msgstr "Süsteemi DBus-ga ühendumine nurjus: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Probleemi kataloogi kustutamine nurjus: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Probleemi andmete pärimine üle abrt-dbus'i nurjus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d KATALOOG\n\nArvutab ja salvestab tuumatõmmise UUID probleemide kataloogi KATALOOG" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d KATALOOG\n\nArvutab ja salvestab pythoni krahhide tõmmiste UUID ja DUPHASH-d" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Faili {0} ei ole olemas" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -650,6 +832,38 @@ msgstr "Kustuta failid selle kataloogi seest" + msgid "Preserve this directory" + msgstr "Säilita see kataloog" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -840,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "Trüki otsingustringid stdout-i ja välju" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1416,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Kasutamine: abrt-cli [--versioon] KÄSK [KATALOOG]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Nimekiri veel teavitamata probleemidest (KATALOOGides)" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Eemalda probleemide kataloog KATALOOG" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analüüsi ja teavita probleemide andmed KATALOOGis" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Kuva infot KATALOOGi kohta" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Vaata 'abrt-cli KÄSK --help' info saamiseks" + +@@ -1502,6 +1724,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/eu.po b/po/eu.po +index 406c99b..ba31e79 100644 +--- a/po/eu.po ++++ b/po/eu.po +@@ -8,10 +8,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Basque (http://www.transifex.com/projects/p/fedora/language/eu/)\n" ++"Language-Team: Basque (http://www.transifex.com/projects/p/fedora-abrt/language/eu/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "Ezin da '%s' exekutatu" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Abisua" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Asier Iturralde Sarasola " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Ezkutatu" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Arazo bat gertatu da" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -233,7 +319,7 @@ msgstr "" + msgid "Configuration file" + msgstr "Konfigurazio fitxategia" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [aukerak]" +@@ -300,19 +386,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Programa hau root bezala exekutatu behar da." + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -397,32 +560,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "Ezin da sistemaren DBus-era konektatu: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Ezin da chown '%s': %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "{0} fitxategia ez da existitzen" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -650,6 +832,38 @@ msgstr "Ezabatu direktorio honetako fitxategiak" + msgid "Preserve this directory" + msgstr "Mantendu direktorio hau" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -840,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1416,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Erabilera: abrt-cli [--version] KOMANDOA [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1502,6 +1724,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/eu_ES.po b/po/eu_ES.po +deleted file mode 100644 +index c17e4d1..0000000 +--- a/po/eu_ES.po ++++ /dev/null +@@ -1,1588 +0,0 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: +-msgid "" +-msgstr "" +-"Project-Id-Version: ABRT\n" +-"Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Content-Transfer-Encoding: 8bit\n" +-"Language: eu_ES\n" +-"Plural-Forms: nplurals=2; plural=(n != 1);\n" +- +-#: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" +- +-#: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../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" +-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:243 +-#, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:267 +-#, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:386 +-msgid "A problem has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:388 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:398 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" +-msgstr "" +- +-#: ../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:632 ../src/applet/applet.c:698 +-#, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:788 +-msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "" +- +-#: ../src/applet/applet.c:804 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:812 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:814 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:816 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:884 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:934 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:950 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../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:969 ../src/applet/applet.c:1004 +-msgid "Report" +-msgstr "" +- +-#: ../src/applet/applet.c:974 +-msgid "A Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1000 +-msgid "A Problem has been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:1008 +-msgid "A New Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1018 +-#, c-format +-msgid "Can't show notification: %s" +-msgstr "" +- +-#. TODO: Terminate child's process? +-#: ../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:1136 +-#, c-format +-msgid "Can't set encoding on gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1140 +-#, c-format +-msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1172 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1182 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../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: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:75 +-msgid "_Close" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:84 +-msgid "_Defaults" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:110 +-#: ../src/configuration-gui/main.c:36 +-msgid "Problem Reporting Configuration" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:75 +-msgid "About System Config ABRT" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:105 +-msgid "About" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:106 +-msgid "Quit" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:382 +-msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" +-"\n" +-"Query package database and save package and component name" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:394 +-#: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 +-#: ../src/plugins/abrt-action-analyze-oops.c:48 +-#: ../src/plugins/abrt-action-analyze-xorg.c:84 +-#: ../src/plugins/abrt-action-analyze-python.c:47 +-#: ../src/plugins/abrt-action-generate-backtrace.c:55 +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 +-msgid "Problem directory" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:395 +-msgid "Configuration file" +-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 "" +- +-#: ../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: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 "" +- +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 +-msgid "Add program names to log" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:123 +-msgid "Unknown error" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:188 +-#, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:223 +-#, c-format +-msgid "'%s' element can't be modified" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 +-#, c-format +-msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:580 +-#, c-format +-msgid "Can't get size of '%s'" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:595 +-msgid "No problem space left" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:627 +-#, c-format +-msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#: ../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 "" +- +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 +-msgid "This program must be run as root." +-msgstr "" +- +-#: ../src/daemon/abrtd.c:451 +-msgid "" +-"The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" +- +-#: ../src/daemon/abrtd.c:497 +-msgid "Do not daemonize" +-msgstr "" +- +-#: ../src/daemon/abrtd.c:498 +-msgid "Log to syslog even with -d" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:388 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:396 +-msgid "Run EVENT on DIR" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:397 +-msgid "Communicate directly to the user" +-msgstr "" +- +-#: ../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:258 +-msgid "" +-"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +-"\n" +-"\n" +-"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" +-"specified in abrt.conf\n" +-"\n" +-"If UPLOAD_DIRECTORY is not provided, uses a value of\n" +-"WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:281 +-msgid "Daemize" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:282 +-msgid "Number of concurrent workers. Default is " +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" +-msgstr "" +- +-#: ../src/daemon/abrt-auto-reporting.c:138 +-#, c-format +-msgid "Unknown option value: '%s'\n" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/lib/hooklib.c:251 +-msgid "Generating backtrace" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:42 +-#, c-format +-msgid "Can't connect to system DBus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:66 +-#, c-format +-msgid "Can't chown '%s': %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:93 +-#, c-format +-msgid "Deleting problem directory failed: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:127 +-#, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:161 +-#, c-format +-msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/ignored_problems.c:231 +-#, c-format +-msgid "Can't create temporary file '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 +-#, c-format +-msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:41 +-msgid "" +-"& [options] -d DIR\n" +-"\n" +-"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" +-"and identifies crash function in problem directory DIR" +-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 "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 +-msgid "Crash thread not found" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-c.c:67 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-oops.c:37 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/plugins/abrt-action-analyze-xorg.c:113 +-#, c-format +-msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-python.c:36 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 +-msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 +-msgid "File {0} doesn't exist" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 +-msgid "Extracting the oops text from core" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 +-msgid "" +-"Can't process {0}:\n" +-"{1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 +-msgid "Can't extract the oops message: '{0}'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 +-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" +-"\n" +-"Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:56 +-msgid "Additional debuginfo directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:57 +-msgid "Kill gdb if it runs for more than NUM seconds" +-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 "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 +-msgid "" +-"& [-v] [-r] -d DIR\n" +-"\n" +-"Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +-msgid "Do not hash fingerprints" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 +-msgid "Generating core_backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 +-msgid "Error: GDB did not return any data" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 +-#, c-format +-msgid "Error: %s" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:51 +-msgid "Exiting on user command" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 +-#, c-format +-msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" +-" [-e, --exact=PATH[:PATH]...]\n" +-"\n" +-"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +-"to CACHEDIR, using TMPDIR as temporary staging area.\n" +-"Old 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" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 +-msgid "Can't open {0}: {1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 +-msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 +-msgid "{0} of debuginfo files are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 +-msgid "Missing requested file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 +-msgid "Missing debuginfo file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 +-msgid "All debuginfo files are available" +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 +-msgid "" +-"Ok to upload core dump? (It may contain sensitive data). If your answer is " +-"'No', a stack trace will be generated locally. (It may download a huge " +-"amount of data)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 +-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 "" +- +-#: ../src/plugins/abrt-action-trim-files.c:222 +-msgid "" +-"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" +-"\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" +-"FILEs are preserved (never deleted)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:236 +-msgid "Delete whole problem directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:237 +-msgid "Delete files inside this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:238 +-msgid "Preserve this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:529 +-msgid "Signal sent by userspace code" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:533 +-msgid "Signal sent by timer/IO/async event" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:541 +-msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:544 +-msgid "Signal due to write to closed pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:550 +-#: ../src/plugins/abrt-gdb-exploitable:575 +-msgid "Signal sent by keyboard" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:554 +-#: ../src/plugins/abrt-gdb-exploitable:579 +-msgid "Job control signal sent by kernel" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:558 +-#: ../src/plugins/abrt-gdb-exploitable:587 +-msgid "Signal sent by window resize" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:562 +-#: ../src/plugins/abrt-gdb-exploitable:591 +-msgid "Signal sent by alarm(N) expiration" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:583 +-msgid "Signal due to write to broken pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:607 +-msgid "ABRT signal (abort() was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:616 +-msgid "XCPU signal (over CPU time limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:620 +-msgid "XFSZ signal (over file size limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:624 +-msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:628 +-msgid "SYS signal (unknown syscall was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:633 +-msgid "Arithmetic exception" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:637 +-msgid "Division by zero" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:641 +-msgid "Illegal instruction (jump to a random address?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:647 +-msgid "Non-crash related signal" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:652 +-msgid "Stack overflow" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:656 +-msgid "Write to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:660 +-msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:666 +-#: ../src/plugins/abrt-gdb-exploitable:670 +-msgid "Jump to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:674 +-msgid "" +-"Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:693 +-msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:706 +-msgid "Likely crash reason: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:707 +-msgid "Exploitable rating (0-9 scale): " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:709 +-msgid "Current instruction: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:711 +-msgid "Exploitability analysis came up empty\n" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:142 +-msgid "" +-"& [-vs] [-F STR]... FILE PROG [ARGS]\n" +-"\n" +-"Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:154 +-msgid "Don't run PROG if STRs aren't found" +-msgstr "" +- +-#: ../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: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: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:153 +-#, c-format +-msgid " Tainted modules: %s." +-msgstr "" +- +-#: ../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: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:278 +-msgid "Create new problem directory in DIR for every oops found" +-msgstr "" +- +-#: ../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:280 +-msgid "Save the extracted information in PROBLEM" +-msgstr "" +- +-#: ../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:282 +-msgid "Throttle problem directory creation to 1 per second" +-msgstr "" +- +-#: ../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:379 +-msgid "Can't update the problem: more than one oops found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:398 +-#, c-format +-msgid "Sleeping for %d seconds" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:237 +-msgid "" +-"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" +-"\n" +-"Extract Xorg crash from FILE (or standard input)" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:245 +-msgid "Print found crash data on standard output" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:246 +-msgid "Create problem directory in DIR for every crash found" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:70 +-msgid "" +-"Retrace server can not be used, because the crash is too large. Try local " +-"retracing." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:211 +-#: ../src/plugins/abrt-retrace-client.c:398 +-#: ../src/plugins/abrt-retrace-client.c:666 +-#: ../src/plugins/abrt-retrace-client.c:832 +-#, c-format +-msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:223 +-#: ../src/plugins/abrt-retrace-client.c:412 +-#: ../src/plugins/abrt-retrace-client.c:765 +-#: ../src/plugins/abrt-retrace-client.c:849 +-#: ../src/plugins/abrt-retrace-client.c:916 +-#: ../src/plugins/abrt-retrace-client.c:1001 +-#: ../src/plugins/abrt-retrace-client.c:1060 +-#, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" +-"%s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:232 +-#: ../src/plugins/abrt-retrace-client.c:745 +-#: ../src/plugins/abrt-retrace-client.c:841 +-#: ../src/plugins/abrt-retrace-client.c:908 +-#: ../src/plugins/abrt-retrace-client.c:982 +-#: ../src/plugins/abrt-retrace-client.c:1052 +-msgid "Invalid response from server: missing HTTP message body." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:424 +-#, c-format +-msgid "" +-"Retrace server is unable to process package '%s.%s'.\n" +-"Is it a part of official '%s' repositories?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:444 +-msgid "Querying server settings" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:452 +-msgid "The server is fully occupied. Try again later." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:453 +-msgid "The server denied your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:484 +-#: ../src/plugins/abrt-retrace-client.c:500 +-#, c-format +-msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:514 +-#, c-format +-msgid "" +-"The size of your crash is %lld bytes, but the retrace server only accepts " +-"crashes smaller or equal to %lld bytes." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:534 +-msgid "The server does not support xz-compressed tarballs." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:571 +-#, c-format +-msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:575 +-msgid "The server is not able to handle your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:594 +-msgid "Unknown package sent to Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:603 +-msgid "Preparing an archive to upload" +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:629 +-#, c-format +-msgid "You are going to upload %d megabytes. Continue?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:638 +-msgid "Cancelled by user" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:673 +-#, c-format +-msgid "Uploading %d megabytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:675 +-#, c-format +-msgid "Uploading %lld bytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:699 +-#, c-format +-msgid "Uploading %d%%\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:711 +-msgid "Failed to read from a pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:724 +-#, c-format +-msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:735 +-msgid "Upload successful" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:757 +-msgid "" +-"Your problem directory is corrupted and can not be processed by the Retrace " +-"server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:759 +-msgid "" +-"The archive contains malicious files (such as symlinks) and thus can not be " +-"processed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:772 +-msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:778 +-msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:785 +-msgid "Retrace job started" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:798 +-#, c-format +-msgid "" +-"Task Id: %s\n" +-"Task Password: %s\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:856 +-msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:868 +-#, c-format +-msgid "" +-"Task Status: %s\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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1160 +-msgid "" +-"Retrace failed. Try again later and if the problem persists report this " +-"issue please." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1207 +-msgid "log to syslog" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1209 +-msgid "allow insecure connection to retrace server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1211 +-msgid "" +-"do not check whether retrace server is able to process given package before " +-"uploading the archive" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1214 +-msgid "retrace server URL" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1216 +-msgid "retrace server port" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1218 +-msgid "(debug) show received HTTP headers" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1219 +-msgid "For create and batch operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1221 +-msgid "read data from ABRT problem directory" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1223 +-msgid "read data from coredump" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1225 +-msgid "Delay for polling operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1227 +-msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1229 +-msgid "For status, backtrace, and log operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1231 +-msgid "id of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1233 +-msgid "password of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1237 +-msgid "" +-"abrt-retrace-client [options]\n" +-"Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1282 +-#: ../src/plugins/abrt-retrace-client.c:1288 +-msgid "Either problem directory or coredump is needed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1294 +-#: ../src/plugins/abrt-retrace-client.c:1302 +-#: ../src/plugins/abrt-retrace-client.c:1310 +-#: ../src/plugins/abrt-retrace-client.c:1318 +-msgid "Task id is needed." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1324 +-#, c-format +-msgid "Unknown operation: %s." +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 +-msgid "Local GNU Debugger" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 +-msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 +-msgid "" +-"Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +-msgid "Send core dump to remote retrace server for analysis" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +-#: ../src/plugins/analyze_CCpp.xml.in.h:3 +-msgid "Retrace server 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 "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 +-#: ../src/plugins/analyze_CCpp.xml.in.h:5 +-msgid "Insecure" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 +-#: ../src/plugins/analyze_CCpp.xml.in.h:6 +-msgid "Whether or not to use insecure connection" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 +-#: ../src/plugins/analyze_CCpp.xml.in.h:7 +-msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:1 +-msgid "Collect .xsession-errors" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:2 +-msgid "Save relevant lines from ~/.xsession-errors file" +-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 "" +- +-#: ../src/plugins/https-utils.c:62 +-msgid "An error occurred on the server side." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:65 +-#, c-format +-msgid "A server-side error occurred on '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:74 +-msgid "An error occurred while connecting to the server" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:77 +-#, c-format +-msgid "An error occurred while connecting to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:97 +-#, c-format +-msgid "Issuer certificate is invalid: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:100 +-#, c-format +-msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:103 +-#, c-format +-msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:107 +-msgid "Remote certificate has expired." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:110 +-#, c-format +-msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:113 +-#, c-format +-msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:149 +-#, c-format +-msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:182 +-#, c-format +-msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" +- +-#. Host exists, but has neither IPv4 nor IPv6?? +-#: ../src/plugins/https-utils.c:203 +-#, c-format +-msgid "Can't resolve host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:210 +-msgid "Failed to set socket blocking mode." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:213 +-msgid "Failed to wrap TCP socket by SSL." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:215 +-msgid "Failed to enable client handshake to SSL socket." +-msgstr "" +- +-#: ../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:233 +-#, c-format +-msgid "Can't connect to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:241 +-msgid "Failed to set certificate hook." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:247 +-msgid "Failed to set handshake callback." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:251 +-msgid "Failed to reset handshake." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:258 +-#, c-format +-msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:267 +-msgid "Failed to close SSL socket." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:332 +-#, c-format +-msgid "Malformed HTTP response header: '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:369 +-#, c-format +-msgid "Receiving of data failed: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:398 +-msgid "Malformed chunked response." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:423 +-msgid "Failed to initialize NSS." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:429 +-msgid "Failed to initialize security module." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:444 +-msgid "Failed to shutdown NSS." +-msgstr "" +- +-#: ../src/plugins/bodhi.c:375 +-msgid "List of bug ids" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:376 +-msgid "Specify a bodhi server url" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:377 +-msgid "Specify a release" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:382 +-msgid "" +-"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" +-"\n" +-"Search for updates on bodhi server" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:434 +-msgid "Searching for updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:440 +-msgid "No updates for this package found" +-msgstr "" +- +-#. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 +-msgid "Local version of the package is newer than available updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:486 +-#, c-format +-msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:85 +-msgid "" +-"& [-v] [-od] FILE...\n" +-"\n" +-"Scans files for split oops message. Can print and/or delete them." +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:97 +-msgid "Print found oopses" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:98 +-msgid "Delete files with found oopses" +-msgstr "" +- +-#: ../src/cli/abrt-cli-core.c:91 +-#, c-format +-msgid "'%s' identifies more than one problem directory" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:142 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:147 +-msgid "Remove problem directory DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:148 +-msgid "Analyze and report problem data in DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:149 +-msgid "Print information about DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:150 +-msgid "Print the count of the recent crashes" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:165 +-msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +- +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "" +- +-#: ../src/cli/list.c:188 +-msgid "List only not-reported problems" +-msgstr "" +- +-#. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 +-msgid "Show detailed report" +-msgstr "" +- +-#: ../src/cli/list.c:191 +-msgid "List only the problems more recent than specified timestamp" +-msgstr "" +- +-#: ../src/cli/list.c:192 +-msgid "List only the problems older than specified timestamp" +-msgstr "" +- +-#: ../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:235 +-msgid "& info [options] DIR..." +-msgstr "" +- +-#: ../src/cli/list.c:244 +-msgid "Text larger than this will be shown abridged" +-msgstr "" +- +-#: ../src/cli/list.c:264 +-#, c-format +-msgid "No such problem directory '%s'" +-msgstr "" +- +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "" +- +-#: ../src/cli/status.c:78 +-msgid "Print only the problem count without any message" +-msgstr "" +- +-#: ../src/cli/status.c:79 +-msgid "Print only the problems more recent than specified timestamp" +-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 "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:1 +-msgid "" +-"Send core dump to remote retrace server for analysis or perform local " +-"analysis if the remote analysis fails" +-msgstr "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. If " +-"user doens't want to upload his coredump to anywhere the event performs " +-"local analysis. Local analysis is run event if remote analysis fails. Pros: " +-"no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " +-"private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:1 +-msgid "Analyze VM core" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:3 +-msgid "" +-"Needs to install kernel debuginfo packages, which might take significant " +-"time, and take up disk space." +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:1 +-msgid "Collect GConf configuration" +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:2 +-msgid "Save configuration from application's GConf directory" +-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 "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:1 +-msgid "Collect system-wide vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:2 +-msgid "Save /etc/vimrc and /etc/gvimrc" +-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 "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:1 +-msgid "Collect yours vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:2 +-msgid "Save .vimrc and .gvimrc from your home directory" +-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 "" +- +-#: ../src/plugins/post_report.xml.in.h:1 +-msgid "Post report" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:2 +-msgid "Executed after the reporting is finished" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:3 +-msgid "Used for updating of the databases" +-msgstr "" +diff --git a/po/fa.po b/po/fa.po +index cd6ad42..f302f86 100644 +--- a/po/fa.po ++++ b/po/fa.po +@@ -10,10 +10,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Persian (http://www.transifex.com/projects/p/fedora/language/fa/)\n" ++"Language-Team: Persian (http://www.transifex.com/projects/p/fedora-abrt/language/fa/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -74,120 +74,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "اخطار" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "برنامه ناحیه اخطار که کاربران را درباره جریانات یافت شده توسط ای‌بی‌ار‌تی یافت شده اند" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "مترجمین" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "پنهان" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "گزارش" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "مشکلی رخ داده است" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -196,7 +282,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -235,7 +321,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -302,19 +388,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -389,8 +475,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -399,32 +562,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -432,7 +595,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -464,6 +627,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -490,29 +672,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -652,6 +834,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -842,11 +1056,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1418,31 +1636,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1504,6 +1726,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/fa_IR.po b/po/fa_IR.po +deleted file mode 100644 +index 7bde1f9..0000000 +--- a/po/fa_IR.po ++++ /dev/null +@@ -1,1588 +0,0 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: +-msgid "" +-msgstr "" +-"Project-Id-Version: ABRT\n" +-"Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Content-Transfer-Encoding: 8bit\n" +-"Language: fa_IR\n" +-"Plural-Forms: nplurals=1; plural=0;\n" +- +-#: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" +- +-#: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../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" +-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:243 +-#, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:267 +-#, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:386 +-msgid "A problem has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:388 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:398 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" +-msgstr "" +- +-#: ../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:632 ../src/applet/applet.c:698 +-#, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:788 +-msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "" +- +-#: ../src/applet/applet.c:804 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:812 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:814 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:816 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:884 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:934 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:950 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../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:969 ../src/applet/applet.c:1004 +-msgid "Report" +-msgstr "" +- +-#: ../src/applet/applet.c:974 +-msgid "A Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1000 +-msgid "A Problem has been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:1008 +-msgid "A New Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1018 +-#, c-format +-msgid "Can't show notification: %s" +-msgstr "" +- +-#. TODO: Terminate child's process? +-#: ../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:1136 +-#, c-format +-msgid "Can't set encoding on gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1140 +-#, c-format +-msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1172 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1182 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../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: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:75 +-msgid "_Close" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:84 +-msgid "_Defaults" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:110 +-#: ../src/configuration-gui/main.c:36 +-msgid "Problem Reporting Configuration" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:75 +-msgid "About System Config ABRT" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:105 +-msgid "About" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:106 +-msgid "Quit" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:382 +-msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" +-"\n" +-"Query package database and save package and component name" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:394 +-#: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 +-#: ../src/plugins/abrt-action-analyze-oops.c:48 +-#: ../src/plugins/abrt-action-analyze-xorg.c:84 +-#: ../src/plugins/abrt-action-analyze-python.c:47 +-#: ../src/plugins/abrt-action-generate-backtrace.c:55 +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 +-msgid "Problem directory" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:395 +-msgid "Configuration file" +-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 "" +- +-#: ../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: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 "" +- +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 +-msgid "Add program names to log" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:123 +-msgid "Unknown error" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:188 +-#, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:223 +-#, c-format +-msgid "'%s' element can't be modified" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 +-#, c-format +-msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:580 +-#, c-format +-msgid "Can't get size of '%s'" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:595 +-msgid "No problem space left" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:627 +-#, c-format +-msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#: ../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 "" +- +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 +-msgid "This program must be run as root." +-msgstr "" +- +-#: ../src/daemon/abrtd.c:451 +-msgid "" +-"The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" +- +-#: ../src/daemon/abrtd.c:497 +-msgid "Do not daemonize" +-msgstr "" +- +-#: ../src/daemon/abrtd.c:498 +-msgid "Log to syslog even with -d" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:388 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:396 +-msgid "Run EVENT on DIR" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:397 +-msgid "Communicate directly to the user" +-msgstr "" +- +-#: ../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:258 +-msgid "" +-"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +-"\n" +-"\n" +-"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" +-"specified in abrt.conf\n" +-"\n" +-"If UPLOAD_DIRECTORY is not provided, uses a value of\n" +-"WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:281 +-msgid "Daemize" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:282 +-msgid "Number of concurrent workers. Default is " +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" +-msgstr "" +- +-#: ../src/daemon/abrt-auto-reporting.c:138 +-#, c-format +-msgid "Unknown option value: '%s'\n" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/lib/hooklib.c:251 +-msgid "Generating backtrace" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:42 +-#, c-format +-msgid "Can't connect to system DBus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:66 +-#, c-format +-msgid "Can't chown '%s': %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:93 +-#, c-format +-msgid "Deleting problem directory failed: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:127 +-#, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:161 +-#, c-format +-msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/ignored_problems.c:231 +-#, c-format +-msgid "Can't create temporary file '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 +-#, c-format +-msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:41 +-msgid "" +-"& [options] -d DIR\n" +-"\n" +-"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" +-"and identifies crash function in problem directory DIR" +-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 "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 +-msgid "Crash thread not found" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-c.c:67 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-oops.c:37 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/plugins/abrt-action-analyze-xorg.c:113 +-#, c-format +-msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-python.c:36 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 +-msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 +-msgid "File {0} doesn't exist" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 +-msgid "Extracting the oops text from core" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 +-msgid "" +-"Can't process {0}:\n" +-"{1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 +-msgid "Can't extract the oops message: '{0}'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 +-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" +-"\n" +-"Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:56 +-msgid "Additional debuginfo directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:57 +-msgid "Kill gdb if it runs for more than NUM seconds" +-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 "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 +-msgid "" +-"& [-v] [-r] -d DIR\n" +-"\n" +-"Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +-msgid "Do not hash fingerprints" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 +-msgid "Generating core_backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 +-msgid "Error: GDB did not return any data" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 +-#, c-format +-msgid "Error: %s" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:51 +-msgid "Exiting on user command" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 +-#, c-format +-msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" +-" [-e, --exact=PATH[:PATH]...]\n" +-"\n" +-"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +-"to CACHEDIR, using TMPDIR as temporary staging area.\n" +-"Old 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" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 +-msgid "Can't open {0}: {1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 +-msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 +-msgid "{0} of debuginfo files are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 +-msgid "Missing requested file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 +-msgid "Missing debuginfo file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 +-msgid "All debuginfo files are available" +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 +-msgid "" +-"Ok to upload core dump? (It may contain sensitive data). If your answer is " +-"'No', a stack trace will be generated locally. (It may download a huge " +-"amount of data)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 +-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 "" +- +-#: ../src/plugins/abrt-action-trim-files.c:222 +-msgid "" +-"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" +-"\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" +-"FILEs are preserved (never deleted)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:236 +-msgid "Delete whole problem directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:237 +-msgid "Delete files inside this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:238 +-msgid "Preserve this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:529 +-msgid "Signal sent by userspace code" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:533 +-msgid "Signal sent by timer/IO/async event" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:541 +-msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:544 +-msgid "Signal due to write to closed pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:550 +-#: ../src/plugins/abrt-gdb-exploitable:575 +-msgid "Signal sent by keyboard" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:554 +-#: ../src/plugins/abrt-gdb-exploitable:579 +-msgid "Job control signal sent by kernel" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:558 +-#: ../src/plugins/abrt-gdb-exploitable:587 +-msgid "Signal sent by window resize" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:562 +-#: ../src/plugins/abrt-gdb-exploitable:591 +-msgid "Signal sent by alarm(N) expiration" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:583 +-msgid "Signal due to write to broken pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:607 +-msgid "ABRT signal (abort() was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:616 +-msgid "XCPU signal (over CPU time limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:620 +-msgid "XFSZ signal (over file size limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:624 +-msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:628 +-msgid "SYS signal (unknown syscall was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:633 +-msgid "Arithmetic exception" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:637 +-msgid "Division by zero" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:641 +-msgid "Illegal instruction (jump to a random address?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:647 +-msgid "Non-crash related signal" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:652 +-msgid "Stack overflow" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:656 +-msgid "Write to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:660 +-msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:666 +-#: ../src/plugins/abrt-gdb-exploitable:670 +-msgid "Jump to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:674 +-msgid "" +-"Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:693 +-msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:706 +-msgid "Likely crash reason: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:707 +-msgid "Exploitable rating (0-9 scale): " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:709 +-msgid "Current instruction: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:711 +-msgid "Exploitability analysis came up empty\n" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:142 +-msgid "" +-"& [-vs] [-F STR]... FILE PROG [ARGS]\n" +-"\n" +-"Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:154 +-msgid "Don't run PROG if STRs aren't found" +-msgstr "" +- +-#: ../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: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: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:153 +-#, c-format +-msgid " Tainted modules: %s." +-msgstr "" +- +-#: ../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: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:278 +-msgid "Create new problem directory in DIR for every oops found" +-msgstr "" +- +-#: ../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:280 +-msgid "Save the extracted information in PROBLEM" +-msgstr "" +- +-#: ../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:282 +-msgid "Throttle problem directory creation to 1 per second" +-msgstr "" +- +-#: ../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:379 +-msgid "Can't update the problem: more than one oops found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:398 +-#, c-format +-msgid "Sleeping for %d seconds" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:237 +-msgid "" +-"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" +-"\n" +-"Extract Xorg crash from FILE (or standard input)" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:245 +-msgid "Print found crash data on standard output" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:246 +-msgid "Create problem directory in DIR for every crash found" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:70 +-msgid "" +-"Retrace server can not be used, because the crash is too large. Try local " +-"retracing." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:211 +-#: ../src/plugins/abrt-retrace-client.c:398 +-#: ../src/plugins/abrt-retrace-client.c:666 +-#: ../src/plugins/abrt-retrace-client.c:832 +-#, c-format +-msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:223 +-#: ../src/plugins/abrt-retrace-client.c:412 +-#: ../src/plugins/abrt-retrace-client.c:765 +-#: ../src/plugins/abrt-retrace-client.c:849 +-#: ../src/plugins/abrt-retrace-client.c:916 +-#: ../src/plugins/abrt-retrace-client.c:1001 +-#: ../src/plugins/abrt-retrace-client.c:1060 +-#, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" +-"%s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:232 +-#: ../src/plugins/abrt-retrace-client.c:745 +-#: ../src/plugins/abrt-retrace-client.c:841 +-#: ../src/plugins/abrt-retrace-client.c:908 +-#: ../src/plugins/abrt-retrace-client.c:982 +-#: ../src/plugins/abrt-retrace-client.c:1052 +-msgid "Invalid response from server: missing HTTP message body." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:424 +-#, c-format +-msgid "" +-"Retrace server is unable to process package '%s.%s'.\n" +-"Is it a part of official '%s' repositories?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:444 +-msgid "Querying server settings" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:452 +-msgid "The server is fully occupied. Try again later." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:453 +-msgid "The server denied your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:484 +-#: ../src/plugins/abrt-retrace-client.c:500 +-#, c-format +-msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:514 +-#, c-format +-msgid "" +-"The size of your crash is %lld bytes, but the retrace server only accepts " +-"crashes smaller or equal to %lld bytes." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:534 +-msgid "The server does not support xz-compressed tarballs." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:571 +-#, c-format +-msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:575 +-msgid "The server is not able to handle your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:594 +-msgid "Unknown package sent to Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:603 +-msgid "Preparing an archive to upload" +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:629 +-#, c-format +-msgid "You are going to upload %d megabytes. Continue?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:638 +-msgid "Cancelled by user" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:673 +-#, c-format +-msgid "Uploading %d megabytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:675 +-#, c-format +-msgid "Uploading %lld bytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:699 +-#, c-format +-msgid "Uploading %d%%\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:711 +-msgid "Failed to read from a pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:724 +-#, c-format +-msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:735 +-msgid "Upload successful" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:757 +-msgid "" +-"Your problem directory is corrupted and can not be processed by the Retrace " +-"server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:759 +-msgid "" +-"The archive contains malicious files (such as symlinks) and thus can not be " +-"processed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:772 +-msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:778 +-msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:785 +-msgid "Retrace job started" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:798 +-#, c-format +-msgid "" +-"Task Id: %s\n" +-"Task Password: %s\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:856 +-msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:868 +-#, c-format +-msgid "" +-"Task Status: %s\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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1160 +-msgid "" +-"Retrace failed. Try again later and if the problem persists report this " +-"issue please." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1207 +-msgid "log to syslog" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1209 +-msgid "allow insecure connection to retrace server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1211 +-msgid "" +-"do not check whether retrace server is able to process given package before " +-"uploading the archive" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1214 +-msgid "retrace server URL" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1216 +-msgid "retrace server port" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1218 +-msgid "(debug) show received HTTP headers" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1219 +-msgid "For create and batch operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1221 +-msgid "read data from ABRT problem directory" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1223 +-msgid "read data from coredump" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1225 +-msgid "Delay for polling operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1227 +-msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1229 +-msgid "For status, backtrace, and log operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1231 +-msgid "id of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1233 +-msgid "password of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1237 +-msgid "" +-"abrt-retrace-client [options]\n" +-"Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1282 +-#: ../src/plugins/abrt-retrace-client.c:1288 +-msgid "Either problem directory or coredump is needed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1294 +-#: ../src/plugins/abrt-retrace-client.c:1302 +-#: ../src/plugins/abrt-retrace-client.c:1310 +-#: ../src/plugins/abrt-retrace-client.c:1318 +-msgid "Task id is needed." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1324 +-#, c-format +-msgid "Unknown operation: %s." +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 +-msgid "Local GNU Debugger" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 +-msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 +-msgid "" +-"Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +-msgid "Send core dump to remote retrace server for analysis" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +-#: ../src/plugins/analyze_CCpp.xml.in.h:3 +-msgid "Retrace server 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 "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 +-#: ../src/plugins/analyze_CCpp.xml.in.h:5 +-msgid "Insecure" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 +-#: ../src/plugins/analyze_CCpp.xml.in.h:6 +-msgid "Whether or not to use insecure connection" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 +-#: ../src/plugins/analyze_CCpp.xml.in.h:7 +-msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:1 +-msgid "Collect .xsession-errors" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:2 +-msgid "Save relevant lines from ~/.xsession-errors file" +-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 "" +- +-#: ../src/plugins/https-utils.c:62 +-msgid "An error occurred on the server side." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:65 +-#, c-format +-msgid "A server-side error occurred on '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:74 +-msgid "An error occurred while connecting to the server" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:77 +-#, c-format +-msgid "An error occurred while connecting to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:97 +-#, c-format +-msgid "Issuer certificate is invalid: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:100 +-#, c-format +-msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:103 +-#, c-format +-msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:107 +-msgid "Remote certificate has expired." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:110 +-#, c-format +-msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:113 +-#, c-format +-msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:149 +-#, c-format +-msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:182 +-#, c-format +-msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" +- +-#. Host exists, but has neither IPv4 nor IPv6?? +-#: ../src/plugins/https-utils.c:203 +-#, c-format +-msgid "Can't resolve host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:210 +-msgid "Failed to set socket blocking mode." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:213 +-msgid "Failed to wrap TCP socket by SSL." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:215 +-msgid "Failed to enable client handshake to SSL socket." +-msgstr "" +- +-#: ../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:233 +-#, c-format +-msgid "Can't connect to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:241 +-msgid "Failed to set certificate hook." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:247 +-msgid "Failed to set handshake callback." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:251 +-msgid "Failed to reset handshake." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:258 +-#, c-format +-msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:267 +-msgid "Failed to close SSL socket." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:332 +-#, c-format +-msgid "Malformed HTTP response header: '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:369 +-#, c-format +-msgid "Receiving of data failed: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:398 +-msgid "Malformed chunked response." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:423 +-msgid "Failed to initialize NSS." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:429 +-msgid "Failed to initialize security module." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:444 +-msgid "Failed to shutdown NSS." +-msgstr "" +- +-#: ../src/plugins/bodhi.c:375 +-msgid "List of bug ids" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:376 +-msgid "Specify a bodhi server url" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:377 +-msgid "Specify a release" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:382 +-msgid "" +-"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" +-"\n" +-"Search for updates on bodhi server" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:434 +-msgid "Searching for updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:440 +-msgid "No updates for this package found" +-msgstr "" +- +-#. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 +-msgid "Local version of the package is newer than available updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:486 +-#, c-format +-msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:85 +-msgid "" +-"& [-v] [-od] FILE...\n" +-"\n" +-"Scans files for split oops message. Can print and/or delete them." +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:97 +-msgid "Print found oopses" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:98 +-msgid "Delete files with found oopses" +-msgstr "" +- +-#: ../src/cli/abrt-cli-core.c:91 +-#, c-format +-msgid "'%s' identifies more than one problem directory" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:142 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:147 +-msgid "Remove problem directory DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:148 +-msgid "Analyze and report problem data in DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:149 +-msgid "Print information about DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:150 +-msgid "Print the count of the recent crashes" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:165 +-msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +- +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "" +- +-#: ../src/cli/list.c:188 +-msgid "List only not-reported problems" +-msgstr "" +- +-#. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 +-msgid "Show detailed report" +-msgstr "" +- +-#: ../src/cli/list.c:191 +-msgid "List only the problems more recent than specified timestamp" +-msgstr "" +- +-#: ../src/cli/list.c:192 +-msgid "List only the problems older than specified timestamp" +-msgstr "" +- +-#: ../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:235 +-msgid "& info [options] DIR..." +-msgstr "" +- +-#: ../src/cli/list.c:244 +-msgid "Text larger than this will be shown abridged" +-msgstr "" +- +-#: ../src/cli/list.c:264 +-#, c-format +-msgid "No such problem directory '%s'" +-msgstr "" +- +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "" +- +-#: ../src/cli/status.c:78 +-msgid "Print only the problem count without any message" +-msgstr "" +- +-#: ../src/cli/status.c:79 +-msgid "Print only the problems more recent than specified timestamp" +-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 "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:1 +-msgid "" +-"Send core dump to remote retrace server for analysis or perform local " +-"analysis if the remote analysis fails" +-msgstr "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. If " +-"user doens't want to upload his coredump to anywhere the event performs " +-"local analysis. Local analysis is run event if remote analysis fails. Pros: " +-"no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " +-"private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:1 +-msgid "Analyze VM core" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:3 +-msgid "" +-"Needs to install kernel debuginfo packages, which might take significant " +-"time, and take up disk space." +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:1 +-msgid "Collect GConf configuration" +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:2 +-msgid "Save configuration from application's GConf directory" +-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 "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:1 +-msgid "Collect system-wide vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:2 +-msgid "Save /etc/vimrc and /etc/gvimrc" +-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 "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:1 +-msgid "Collect yours vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:2 +-msgid "Save .vimrc and .gvimrc from your home directory" +-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 "" +- +-#: ../src/plugins/post_report.xml.in.h:1 +-msgid "Post report" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:2 +-msgid "Executed after the reporting is finished" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:3 +-msgid "Used for updating of the databases" +-msgstr "" +diff --git a/po/fi.po b/po/fi.po +index cbd773f..8999e7a 100644 +--- a/po/fi.po ++++ b/po/fi.po +@@ -10,10 +10,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Finnish (http://www.transifex.com/projects/p/fedora/language/fi/)\n" ++"Language-Team: Finnish (http://www.transifex.com/projects/p/fedora-abrt/language/fi/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -74,120 +74,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "Ohjelmaa ”%s” ei voida suorittaa" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Varoitus" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Ville-Pekka Vainio, 2009-2011." + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Piilota" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Ongelma havaittu" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Avaa" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Ilmoita" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Tapahtui ongelma" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Ongelma raportoitiin" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Tapahtui uusi ongelma" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kohteen ”%s” omistajuutta ei voida ottaa" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -196,7 +282,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -235,7 +321,7 @@ msgstr "Ongelmahakemisto" + msgid "Configuration file" + msgstr "Asetustiedosto" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [valitsimet]" +@@ -302,19 +388,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Lopeta NUM sekunnin toimettomuuden jälkeen" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Tämä ohjelma täytyy suorittaa pääkäyttäjänä." + +@@ -389,8 +475,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Luodaan pinolistausta" + +@@ -399,32 +562,32 @@ msgstr "Luodaan pinolistausta" + msgid "Can't connect to system DBus: %s" + msgstr "Ei voi yhdistää järjestelmän DBusiin: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -432,7 +595,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -464,6 +627,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -490,29 +672,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Tiedostoa {0} ei ole olemassa" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -652,6 +834,38 @@ msgstr "Poista tiedostot tästä hakemistosta" + msgid "Preserve this directory" + msgstr "Säästä tämä hakemisto" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -842,11 +1056,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1418,31 +1636,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Käyttö: abrt-cli [--version] KOMENTO [HAK]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Luetteloi ongelmat, joita ei ole vielä raportoitu [HAKemistoissa]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Poista ongelmallinen hakemisto HAK" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analysoi ja raportoi ongelmadata HAKemistossa" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Tulosta tietoja HAKemistosta" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Katso lisätietoja komennolla \"abrt-cli KOMENTO --help\"" + +@@ -1504,6 +1726,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/fr.po b/po/fr.po +index 02fa6f6..26e28ff 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -4,9 +4,10 @@ + # + # Translators: + # dominique bribanick , 2011,2013 +-# Dralyab , 2013 ++# Gé Baylard , 2013 + # erikap, 2013 + # Fil_Rouge , 2011 ++# Gé Baylard , 2014 + # Jérôme Fenal , 2014 + # Jiří Moskovčák , 2011 + # Sam Friedmann , 2014 +@@ -16,10 +17,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/language/fr/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -80,120 +81,206 @@ msgstr "%s et les données du diagnostique ont été soumis" + msgid "Can't execute '%s'" + msgstr "Impossible d'exécuter « %s »" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Impossible de fermer la notification : %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Avertissement" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + 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:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "_Quitter" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Masquer" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "À _propos" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Incident détecté" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Toujours ignorer" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Ouvrir" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "L'incident a déjà été rapporté" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Rapporter" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Un incident s'est produit" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Un incident a été rapporté" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Un nouvel incident s'est produit" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "Impossible d'afficher la notification : %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, 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:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Impossible de s'approprier « %s »" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Impossible d'ouvrir le répertoire pour écrire « %s »" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, 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:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "Demander avant d'occuper furtivement un répertoire" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "Envoyer automatiquement le « uReport »" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "Rapporter en mode abrégé" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "Rapporter silencieusement en mode abrégé" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "Le fichier du vidage de la mémoire est nécessaire pour générer la trace de la pile — cette opération est consommatrice de temps et d'espace. ABRT dispose d'un service générant la trace de la pile à partir du vidage de la mémoire, mais vous devez téléverser ce vidage pour bénéficier du service. Si cette option est désactivée, ABRT téléversera le vidage de la mémoire sans demander la permission." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "ABRT enregistre les données de l'incident dans des répertoires. Chaque fois que ABRT a besoin d'un répertoire dans lequel il puisse écrire, ce répertoire est déplacé de l'emplacement système vers votre répertoire personnel. Quand cette option est désactivée, ABRT déplace le répertoire des données de l'incident sans rien demander." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "Un « uReport » est une courte description de l'incident totalement anonyme. ABRT utilise des « uReports » pour une détection rapide et globale des doublons. Dans la configuration par défaut, le « uReport » est envoyé dès le début du processus de rapport. Quand cette option est activée, les « uReports » sont adressés automatiquement immédiatement après la détection de l'incident." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "Quand cette option est activée, le processus d'envoi de rapport initié en cliquant sur le bouton Rapporter dans la bulle de notification d'incident peut être interrompu après l'envoi du « uReport ». Vous pourrez toujours utiliser le navigateur d'incident par défaut pour faire un rapport complet." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "Quand cette option est activée, ABRT n'affiche aucune notification des incidents rapportés. Elle ne prend effet que si le mode rapport abrégé est activé." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "Demander avant de téléverser le vidage de la mémoire" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "Demander un ticket privé pour informations sensibles" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "Notifier des incidents incomplets" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "Des incidents incomplets sont détectés lorsque l'ordinateur a été éteint ou que l'utilisateur s'est déconnecté. Pour que ne soient adressés que des rapports d'incidents valables, ABRT ne vous autorise pas à soumettre ces incidents." ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "_Fermer" +@@ -202,7 +289,7 @@ msgstr "_Fermer" + msgid "_Defaults" + msgstr "Par _défaut" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Incident lors du rapport de la configuration" +@@ -241,7 +328,7 @@ msgstr "Répertoire des incidents" + msgid "Configuration file" + msgstr "Fichier de configuration" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -308,19 +395,19 @@ msgstr "Il ne reste plus d'espace pour les incidents" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Impossible de supprimer l'élément « %s » du répertoire des incidents « %s »" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "Le nom « %s » a été perdu, merci de vérifier qu'un autre service utilisant ce même nom ne tourne pas.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Quitter après NUM secondes d'inactivité" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Le programme doit être lancé en tant que root." + +@@ -395,8 +482,85 @@ msgstr "Nombre d'arguments non valide" + msgid "Unknown option value: '%s'\n" + msgstr "Valeur de l'option inconnue : « %s »\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Création de la trace arrière" + +@@ -405,32 +569,32 @@ msgstr "Création de la trace arrière" + msgid "Can't connect to system DBus: %s" + msgstr "Impossible de se connecter au DBUS système : %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "chown impossible sur « %s » : %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "La suppression du répertoire d'incidents a échoué : %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Impossible d'obtenir les données de l'incident depuis abrt-dbus : %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Impossible de créer le fichier temporaire « %s »" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -438,7 +602,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:262 ++#: ../src/lib/ignored_problems.c:264 + #, 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 »" +@@ -470,6 +634,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nCalcule et enregistre l'UUID du vidage du processus dans le répertoire DIR des incidents" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "Analyse en cours du vidage de la mémoire '%s'" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "Identifiant de construction manquant : %s" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "Utilisation : %s [-v] [-o FICHIER_SORTIE] -c FICHIER_CORE" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "Le FICHIER_CORE n'est pas indiqué" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -496,29 +679,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nCalcule et enregistre l'UUID et le DUPHASH pour les vidages sur incident python" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "Syntaxe : {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Le fichier {0} n'existe pas" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "Extraction du texte du oops depuis le vidage mémoire" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "Impossible de traiter {0}:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "Impossible d'extraire le message oops : « {0} »" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Extraction réussie du texte du oops" + +@@ -658,6 +841,38 @@ msgstr "Supprimer les fichiers se trouvant dans ce répertoire" + msgid "Preserve this directory" + msgstr "Préserver ce répertoire" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "Signal envoyé par du code de l'espace utilisateur" +@@ -848,11 +1063,15 @@ msgstr "Limiter la création de répertoire d'incident à 1 par seconde" + 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:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + 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:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Mise en sommeil pour %d secondes" +@@ -1424,31 +1643,35 @@ msgstr "Supprimer les fichiers avec des oops trouvés" + msgid "'%s' identifies more than one problem directory" + msgstr "« %s » identifie plus d'un répertoire d'incident" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Usage : abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Répertorier les incidents qui n'ont pas encore été rapportés [dans les DIR]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Supprimer le répertoire d'incidents DIR" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analyser et rapporter les données des incidents dans DIR" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Imprimer des informations sur DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Affiche le nombre de plantages récents" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Voir « abrt-cli COMMAND --help » pour obtenir davantage d'informations" + +@@ -1510,6 +1733,45 @@ msgstr "Affiche les seuls incidents plus récents que l'horodatage indiqué" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT a détecté %u incident(s). Pour plus d'informations, lancer : abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ga.po b/po/ga.po +index 2ab33b5..9493f7f 100644 +--- a/po/ga.po ++++ b/po/ga.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Irish (http://www.transifex.com/projects/p/fedora/language/ga/)\n" ++"Language-Team: Irish (http://www.transifex.com/projects/p/fedora-abrt/language/ga/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/gl.po b/po/gl.po +index e266e85..d2b510d 100644 +--- a/po/gl.po ++++ b/po/gl.po +@@ -3,15 +3,15 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# xosecalvo , 2013 ++# Xosé , 2013 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Galician (http://www.transifex.com/projects/p/fedora/language/gl/)\n" ++"Language-Team: Galician (http://www.transifex.com/projects/p/fedora-abrt/language/gl/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "Non é posíbel executar «%s»" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Non é posíbel fechar a notificación: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Advertencia" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Xosé" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Agochar" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Detectouse un problema" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Abrir" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Informe" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Produciuse un problema" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Informouse sobre un problema" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Produciuse un problema novo" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, 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:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, 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:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Non é posíbel asumir a propiedade sobre «%s»" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Non é posíbel abrir o directorio para escribir «%s»" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -233,7 +319,7 @@ msgstr "Directorio de problemas" + msgid "Configuration file" + msgstr "Ficheiro de configuración" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [opcións]" +@@ -300,19 +386,19 @@ msgstr "Non fica espazo para os problemas" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Non é posíbel eliminar o elemento «%s» do directorio de problemas «%s»" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "Perdeuse o nome «%s»; comprobe se outro servizo que posúa o nome non está en execución.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Saír despois de NUM segundos de inactividade" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa débese executar como administrador." + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "A xerar o trazado inverso" + +@@ -397,32 +560,32 @@ msgstr "A xerar o trazado inverso" + msgid "Can't connect to system DBus: %s" + msgstr "Non é posíbel conectar co DBus do sistema: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Non é posíbel cambiar o propietario de «%s»: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Fallou a eliminación do directorio de problemas: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Non é posíbel obter os datos do problema de abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Non é posíbel crear o ficheiro temporal «%s»" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,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:262 ++#: ../src/lib/ignored_problems.c:264 + #, 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»" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nCalcula e grava o UUID do envorcado do core no directorio de problemas DIR" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nCalcula e grava o UUID e o DUPHASH dos envorcados dos fallos de python" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "O ficheiro {0} non existe" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -650,6 +832,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -840,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1416,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1502,6 +1724,45 @@ msgstr "Imprimir só os problemas anteriores á marca temporal indicada" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/gu.po b/po/gu.po +index f123470..eeb551c 100644 +--- a/po/gu.po ++++ b/po/gu.po +@@ -4,16 +4,16 @@ + # + # Translators: + # Jiří Moskovčák , 2011 +-# kepatel , 2014 ++# Keralkumar Patel , 2014 + # sweta , 2013 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Gujarati (http://www.transifex.com/projects/p/fedora-abrt/language/gu/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -74,120 +74,206 @@ msgstr "%s અને તપાસ માહિતી જમા થઇ ગઇ" + msgid "Can't execute '%s'" + msgstr "'%s' ને ચલાવી શકાતુ નથી" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "સૂચનાને બંધ કરી શકાતી નથી: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "ચેતવણી" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "સૂચના વિસ્તાર એપલેટ કે જે ABRT દ્દારા શોધેલ મુદ્દાઓ વિશે વપરાશકર્તાને સૂચિત કરે છે" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "શ્ર્વેતા કોઠારી " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "બહાર નીકળો (_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "છુપાડો" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "વિશે (_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "સમસ્યા મળી" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "હંમેશ માટે અવગણો" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "ખોલો" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "સમસ્યાનો પહેલાથી જ અહેવાલ અપાઇ ગયો છે" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "જાણીતી સમસ્યા ઉદ્ભવી" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "અહેવાલ" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "સમસ્યા ઉદ્ભવી" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "સમસ્યાનો અહેવાલ કરી દેવામાં આવ્યો છે" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "નવી સમસ્યા ઉદ્ભવી" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "સૂચનાને બતાવી શકાતુ નથી: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ચેનલમાંથી વાંચી શકાતુ નથી: '%s'" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ચેનલ પર એનકોડીંગ સુયોજિત કરી શકાતુ નથી: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ચેનલ માટે બ્લોક ન થાય તેવી સ્થિતિને ચાલુ કરી શકાતી નથી: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ની માલિકી લઇ શકાતી નથી" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' ને લખવા માટે ડિરેક્ટરીને ખોલી શકાતી નથી" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "સત્ર સંચાલકમાં જોડાણને ખોલવા માટે નિષ્ફળતા: '%s', સૂચના એ આગળનાં પર્વેશે ફરી દેખાઇ શકે છે" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "ડિરેક્ટરીની ચોરી પહેલાં પૂછો" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "આપોઆપ uReport મોકલો" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "ટૂંકો અહેવાલ કરો" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "નિઃશબ્દ ટૂંકો અહેવાલ કરો" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "Coredump અપલોડ કરતા પહેલા પૂછો " ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "સંવેદનશીલ માહિતી માટે ખાનગી ટિકિટની વિનંતી" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "અપૂર્ણ સમસ્યાઓ સૂચિત" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "બંધ કરો (_C)" +@@ -196,7 +282,7 @@ msgstr "બંધ કરો (_C)" + msgid "_Defaults" + msgstr "મૂળભૂત (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "રૂપરેખાંકનને અહેવાલ કરવામાં સમસ્યા" +@@ -235,7 +321,7 @@ msgstr "સમસ્યા ડિરેક્ટરી" + msgid "Configuration file" + msgstr "રૂપરેખાંકન ફાઇલ" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -302,19 +388,19 @@ msgstr "સમસ્યાની જગ્યા બાકી રહેલ ન + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "સમસ્યા ડિરેક્ટરી '%s' માંથી ઘટક '%s' ને કાઢી શકાતુ નથી" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "નામ '%s' ગુમ થઇ ગયુ છે, મહેરબાની કરીને ચકાસો જો માલિકી ધરાવતા નામ વાળી બીજી સેવા ચાલી રહી નથી.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "નિષ્ક્રિયતાની NUM સેકંડ પછી બહાર નીકળો" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "આ કાર્યક્રમ રુટ તરીકે જ ચલાવવો જોઇએ." + +@@ -389,8 +475,85 @@ msgstr "દલીલોની અયોગ્ય સંખ્યા" + msgid "Unknown option value: '%s'\n" + msgstr "અજ્ઞાત વિકલ્પ કિંમત: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "બેકટ્રેસને ઉત્પન્ન કરી રહ્યા છે" + +@@ -399,32 +562,32 @@ msgstr "બેકટ્રેસને ઉત્પન્ન કરી રહ્ + msgid "Can't connect to system DBus: %s" + msgstr "સિસ્ટમ બસમાં જોડી શકાતુ નથી: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "'%s' નું chown કરી શકાતુ નથી: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "ડિરેક્ટરીની સમસ્યાને કાઢી નાંખવામાં નિષ્ફળતા: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus માંથી સમસ્યા માહિતીને મેળવી શકાતી નથી: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus માંથી સમસ્યા યાદીને મેળવી શકાતી નથી: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "કામચલાઉ ફાઇલ '%s' ને બનાવી શકાતુ નથી" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -432,7 +595,7 @@ msgid "" + msgstr "'%s' માં લખી શકાતુ નથી. સમસ્યા '%s' એ અવગણેલ સમસ્યાઓ '%s' માંથી દૂર થયેલ હશે" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s' માં '%s' નું નામ બદલી શકાતુ નથી. સમસ્યા '%s' ને દૂર કરવામાં નિષ્ફળતા" +@@ -464,6 +627,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nસમસ્યા ડિરેક્ટરી DIR માં coredump ની UUID ની ગણતરી અને સંગ્રહ કરે છે" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "ગેરહાજર build id: %s" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "ઉપયોગ: %s [-v] [-o OUTFILE] -c COREFILE" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "COREFILE સ્પષ્ટ થયેલ નહિં હોય" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -490,29 +672,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\npython ભંગાણ ડમ્પની UUID અને DUPHASH ની ગણતરી અને સંગ્રહ કરે છે" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "વપરાશ: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "ફાઇલ {0} અસ્તિત્વ ધરાવતી નથી" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "કૉરમાંથી oops ને કાઢી રહ્યા છે" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "પ્રક્રિયા {0} કરી શકાતી નથી:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "oops સંદેશાને કાઢી શકાતુ નથી: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops લખાણને સફળતાપૂર્વક કાઢી નાંખેલ છે" + +@@ -652,6 +834,38 @@ msgstr "આ ડિરેક્ટરીની અંદર ફાઇલોને + msgid "Preserve this directory" + msgstr "આ ડિરેક્ટરીને સાચવો" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "વપરાશકર્તા જગ્યા દ્દારા મોકલેલ સંકેત" +@@ -842,11 +1056,15 @@ msgstr "દરેક 1 સેકંડે થ્રોટલ સમસ્યા + msgid "Print search string(s) to stdout and exit" + msgstr "stdout માટે શોધ શબ્દમાળા (ઓ) ને છાપો અને બહાર નીકળો" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "સમસ્યાને સુધારી શકાતી નથી: એક કરતા વધારે oops મળ્યુ" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d સેકંડ માટે નિષ્ક્રિય" +@@ -1418,31 +1636,35 @@ msgstr "મળેલ oopses સાથે ફાઇલોને કાઢી ન + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' એ એક કરતા વધારે સમસ્યા ડિરેક્ટરીને ઓળખે છે" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "વપરાશ: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "યાદી એ હજુ સમસ્યાઓનો અહેવાલ કરેલ નથી [DIRs માં]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "સમસ્યા ડિરેક્ટરી DIR ને દૂર કરો" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "DIR માં સમસ્યા માહિતીનું વિશ્ર્લેષણ અને અહેવાલ કરો" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR વિશે જાણકારીને છાપો" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "તાજેતરનાં ભંગાણોની ગણતરીને છાપો" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "વધારે જાણકારી માટે 'abrt-cli COMMAND --help' જુઓ" + +@@ -1504,6 +1726,45 @@ msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કર + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT એ %u સમસ્યા(ઓ) ને શોધી. વધારે જાણકારી માટે ચલાવો: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/he.po b/po/he.po +index c7a724d..4ca0b1a 100644 +--- a/po/he.po ++++ b/po/he.po +@@ -10,10 +10,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Hebrew (http://www.transifex.com/projects/p/fedora/language/he/)\n" ++"Language-Team: Hebrew (http://www.transifex.com/projects/p/fedora-abrt/language/he/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -74,120 +74,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "אזהרה" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "יישומון לאזור ההתרעות שמתריע למשתמש על בעיות שזוהו ע\"י ABRT" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "אלעד אלפסה \nאסף ספיר " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "הסתר" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "דווח" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "התרחשה תקלה" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -196,7 +282,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -235,7 +321,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -302,19 +388,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -389,8 +475,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -399,32 +562,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -432,7 +595,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -464,6 +627,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -490,29 +672,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -652,6 +834,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -842,11 +1056,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1418,31 +1636,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1504,6 +1726,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/hi.po b/po/hi.po +index 6201f4c..6f6fce7 100644 +--- a/po/hi.po ++++ b/po/hi.po +@@ -5,21 +5,21 @@ + # Translators: + # Chandan kumar , 2012 + # Jiří Moskovčák , 2011 +-# Keshav Mishra , 2013 ++# keshav mishra , 2013 + # rajesh , 2012 + # Rajesh Ranjan , 2014 + # Rajesh , 2011,2014 +-# Tarsem , 2014 ++# Tarsem singh , 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-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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Hindi (http://www.transifex.com/projects/p/fedora-abrt/language/hi/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -80,120 +80,206 @@ msgstr "%s और निदानकारी आँकड़ा सौंपे + msgid "Can't execute '%s'" + msgstr "'%s' को निष्पादित नहीं कर सकता है" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "अधिसूचना बंद नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "चेतावनी" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "अधिसूचना क्षेत्र एप्लेट जो ABRT के द्वारा पता किए मुद्दों के बारे में उपयोक्ता को सूचित करता है" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "राजेश रंजन (rranjan@redhat.com, rajeshkajha@yahoo.com)" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "बाहर (_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "छिपाएँ" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "परिचय (_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "समस्या पाई गई" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "सदा के लिये अनदेखा करें" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "खोलें" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "समस्या को पहले ही रिपोर्ट किया गया है" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "एक ज्ञात समस्या आ गई है" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "रिपोर्ट" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "एक त्रुटि हुई" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "एक समस्या की सूचना दी गई है" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "एक नई समस्या आ गई है" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "अधिसूचना नहीं दिखा सकता है: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio चैनल से पढ़ा नहीं जा सकता: '% s'" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "जिओ चैनल पर एन्कोडिंग सेट नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "जिओ चैनल के लिए गैर ब्लॉकिंग पर चालू नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' का स्वामित्व नहीं ले सकता है" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "लिखने के लिए निर्देशिका नहीं खोल सकते हैं '% s' " + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "सत्र प्रबंधक में कनेक्शन खोलने में विफल: '%s', अगले लॉगिन में अधिसूचना फिर प्रकट हो सकता है" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "बंद करें (_C)" +@@ -202,7 +288,7 @@ msgstr "बंद करें (_C)" + msgid "_Defaults" + msgstr "तयशुदा (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "विन्यास रिपोर्टिंग में समस्या" +@@ -241,7 +327,7 @@ msgstr "समस्या निर्देशिका" + msgid "Configuration file" + msgstr "विन्यास फाइल" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [विकल्प]" +@@ -308,19 +394,19 @@ msgstr "कोई समस्या स्थान नहीं छोड़ + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "तत्व '%s' को समस्या निर्देशिका '%s' से मिटा नहीं सकता है" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "नाम '%s' खो गया है, कृपया जाँचें कि क्या अन्य सेवाएँ जो नाम का स्वामित्व रखती है नहीं चल रहा हो.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM सेकेंड की निष्क्रियता के बाद बाहर निकलें" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "इस प्रोग्राम को जरूर बतौर रूट चलाया जाना चाहिए." + +@@ -395,8 +481,85 @@ msgstr "तर्क की अवैध संख्या" + msgid "Unknown option value: '%s'\n" + msgstr "अज्ञात विकल्प मान '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "बैकट्रैस उत्पन्न कर रहा है" + +@@ -405,32 +568,32 @@ msgstr "बैकट्रैस उत्पन्न कर रहा है" + msgid "Can't connect to system DBus: %s" + msgstr "तंत्र DBus से कनेक्ट नहीं कर सकता है: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "chown '%s' नहीं कर सकता है: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "समस्या निर्देशिका को मिटाना विफल रहा: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus से समस्या आँकड़ा पा नहीं सकता है: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus से समस्या सूची पा नहीं सकता है: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "अस्थायी फ़ाइल '%s' नहीं बना सकता है" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -438,7 +601,7 @@ msgid "" + msgstr "'%s' में लिख नहीं सकता है. '%s' समस्या को समस्या '%s' से हटाया नहीं जा सकता है" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s' को '%s' में बदला नहीं जा सकता है. समस्या '%s' हटाने में विफल" +@@ -470,6 +633,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nकोरडंप के UUID को समस्या निर्देशिका DIR में सहेजता और गणना करता है" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -496,29 +678,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nUUID और DUPHASH को पायथन क्रैश डंप की गणना और सहेजता है" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "प्रयोग: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "फ़ाइल {0} मौजूद नहीं" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "कोर से वूप्स पाठ निकाल रहा है" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "{0} की प्रक्रिया नहीं कर सकता है:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "वूप्स संदेश निकाल नहीं सकता है: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "वूप्स पाठ सफलतापूर्वक निकाले गए" + +@@ -658,6 +840,38 @@ msgstr "इस निर्देशिका के भीतर की फ़ + msgid "Preserve this directory" + msgstr "इस निर्देशिका को संरक्षित रखता है" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "अपरकेस कोड से संकेत प्रेषित" +@@ -848,11 +1062,15 @@ msgstr "1 प्रति सेकेंड से थ्रोटल समस + msgid "Print search string(s) to stdout and exit" + msgstr "stdout में खोज स्ट्रिंग छापें और बाहर निकलें" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "समस्या नहीं अद्यतन कर सका: एकाधिक वूप्स मिला" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d सेकेंड से लिए सुप्त" +@@ -1424,31 +1642,35 @@ msgstr "मिले वूप्स से फ़ाइल मिटाएँ" + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ने एकाधिक समस्या निर्देशिका की पहचान की" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "उपयोग: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "सूची ने अबतक समस्या रिपोर्ट नहीं की [DIR में]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "समस्या निर्देशिका DIR को हटाएँ" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "DIR में समस्या आँकड़े को विश्लेषित और रिपोर्ट करें" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR के बारे में प्रिंट सूचना" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "हालिया क्रैश की गिनती छापें" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "'abrt-cli COMMAND --help' को अधिक सूचना के लिए देखें" + +@@ -1510,6 +1732,45 @@ msgstr "निर्दिष्ट टाइमस्टैंप के बन + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT ने %u समस्या का पता किया है. अधिक जानकारी के लिए चलाएँ: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/hr.po b/po/hr.po +index 450c407..1978445 100644 +--- a/po/hr.po ++++ b/po/hr.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Croatian (http://www.transifex.com/projects/p/fedora/language/hr/)\n" ++"Language-Team: Croatian (http://www.transifex.com/projects/p/fedora-abrt/language/hr/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/hr_HR.po b/po/hr_HR.po +deleted file mode 100644 +index 873e6e7..0000000 +--- a/po/hr_HR.po ++++ /dev/null +@@ -1,1588 +0,0 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: +-msgid "" +-msgstr "" +-"Project-Id-Version: ABRT\n" +-"Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Content-Transfer-Encoding: 8bit\n" +-"Language: hr_HR\n" +-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +- +-#: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" +- +-#: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../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" +-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:243 +-#, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:267 +-#, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:386 +-msgid "A problem has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:388 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:398 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" +-msgstr "" +- +-#: ../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:632 ../src/applet/applet.c:698 +-#, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:788 +-msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "" +- +-#: ../src/applet/applet.c:804 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:812 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:814 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:816 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:884 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:934 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:950 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../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:969 ../src/applet/applet.c:1004 +-msgid "Report" +-msgstr "" +- +-#: ../src/applet/applet.c:974 +-msgid "A Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1000 +-msgid "A Problem has been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:1008 +-msgid "A New Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1018 +-#, c-format +-msgid "Can't show notification: %s" +-msgstr "" +- +-#. TODO: Terminate child's process? +-#: ../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:1136 +-#, c-format +-msgid "Can't set encoding on gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1140 +-#, c-format +-msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1172 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1182 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../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: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:75 +-msgid "_Close" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:84 +-msgid "_Defaults" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:110 +-#: ../src/configuration-gui/main.c:36 +-msgid "Problem Reporting Configuration" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:75 +-msgid "About System Config ABRT" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:105 +-msgid "About" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:106 +-msgid "Quit" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:382 +-msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" +-"\n" +-"Query package database and save package and component name" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:394 +-#: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 +-#: ../src/plugins/abrt-action-analyze-oops.c:48 +-#: ../src/plugins/abrt-action-analyze-xorg.c:84 +-#: ../src/plugins/abrt-action-analyze-python.c:47 +-#: ../src/plugins/abrt-action-generate-backtrace.c:55 +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 +-msgid "Problem directory" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:395 +-msgid "Configuration file" +-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 "" +- +-#: ../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: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 "" +- +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 +-msgid "Add program names to log" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:123 +-msgid "Unknown error" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:188 +-#, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:223 +-#, c-format +-msgid "'%s' element can't be modified" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 +-#, c-format +-msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:580 +-#, c-format +-msgid "Can't get size of '%s'" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:595 +-msgid "No problem space left" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:627 +-#, c-format +-msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#: ../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 "" +- +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 +-msgid "This program must be run as root." +-msgstr "" +- +-#: ../src/daemon/abrtd.c:451 +-msgid "" +-"The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" +- +-#: ../src/daemon/abrtd.c:497 +-msgid "Do not daemonize" +-msgstr "" +- +-#: ../src/daemon/abrtd.c:498 +-msgid "Log to syslog even with -d" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:388 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:396 +-msgid "Run EVENT on DIR" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:397 +-msgid "Communicate directly to the user" +-msgstr "" +- +-#: ../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:258 +-msgid "" +-"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +-"\n" +-"\n" +-"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" +-"specified in abrt.conf\n" +-"\n" +-"If UPLOAD_DIRECTORY is not provided, uses a value of\n" +-"WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:281 +-msgid "Daemize" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:282 +-msgid "Number of concurrent workers. Default is " +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" +-msgstr "" +- +-#: ../src/daemon/abrt-auto-reporting.c:138 +-#, c-format +-msgid "Unknown option value: '%s'\n" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/lib/hooklib.c:251 +-msgid "Generating backtrace" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:42 +-#, c-format +-msgid "Can't connect to system DBus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:66 +-#, c-format +-msgid "Can't chown '%s': %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:93 +-#, c-format +-msgid "Deleting problem directory failed: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:127 +-#, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:161 +-#, c-format +-msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/ignored_problems.c:231 +-#, c-format +-msgid "Can't create temporary file '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 +-#, c-format +-msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:41 +-msgid "" +-"& [options] -d DIR\n" +-"\n" +-"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" +-"and identifies crash function in problem directory DIR" +-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 "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 +-msgid "Crash thread not found" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-c.c:67 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-oops.c:37 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/plugins/abrt-action-analyze-xorg.c:113 +-#, c-format +-msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-python.c:36 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 +-msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 +-msgid "File {0} doesn't exist" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 +-msgid "Extracting the oops text from core" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 +-msgid "" +-"Can't process {0}:\n" +-"{1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 +-msgid "Can't extract the oops message: '{0}'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 +-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" +-"\n" +-"Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:56 +-msgid "Additional debuginfo directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:57 +-msgid "Kill gdb if it runs for more than NUM seconds" +-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 "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 +-msgid "" +-"& [-v] [-r] -d DIR\n" +-"\n" +-"Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +-msgid "Do not hash fingerprints" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 +-msgid "Generating core_backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 +-msgid "Error: GDB did not return any data" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 +-#, c-format +-msgid "Error: %s" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:51 +-msgid "Exiting on user command" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 +-#, c-format +-msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" +-" [-e, --exact=PATH[:PATH]...]\n" +-"\n" +-"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +-"to CACHEDIR, using TMPDIR as temporary staging area.\n" +-"Old 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" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 +-msgid "Can't open {0}: {1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 +-msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 +-msgid "{0} of debuginfo files are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 +-msgid "Missing requested file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 +-msgid "Missing debuginfo file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 +-msgid "All debuginfo files are available" +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 +-msgid "" +-"Ok to upload core dump? (It may contain sensitive data). If your answer is " +-"'No', a stack trace will be generated locally. (It may download a huge " +-"amount of data)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 +-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 "" +- +-#: ../src/plugins/abrt-action-trim-files.c:222 +-msgid "" +-"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" +-"\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" +-"FILEs are preserved (never deleted)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:236 +-msgid "Delete whole problem directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:237 +-msgid "Delete files inside this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:238 +-msgid "Preserve this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:529 +-msgid "Signal sent by userspace code" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:533 +-msgid "Signal sent by timer/IO/async event" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:541 +-msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:544 +-msgid "Signal due to write to closed pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:550 +-#: ../src/plugins/abrt-gdb-exploitable:575 +-msgid "Signal sent by keyboard" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:554 +-#: ../src/plugins/abrt-gdb-exploitable:579 +-msgid "Job control signal sent by kernel" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:558 +-#: ../src/plugins/abrt-gdb-exploitable:587 +-msgid "Signal sent by window resize" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:562 +-#: ../src/plugins/abrt-gdb-exploitable:591 +-msgid "Signal sent by alarm(N) expiration" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:583 +-msgid "Signal due to write to broken pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:607 +-msgid "ABRT signal (abort() was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:616 +-msgid "XCPU signal (over CPU time limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:620 +-msgid "XFSZ signal (over file size limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:624 +-msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:628 +-msgid "SYS signal (unknown syscall was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:633 +-msgid "Arithmetic exception" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:637 +-msgid "Division by zero" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:641 +-msgid "Illegal instruction (jump to a random address?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:647 +-msgid "Non-crash related signal" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:652 +-msgid "Stack overflow" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:656 +-msgid "Write to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:660 +-msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:666 +-#: ../src/plugins/abrt-gdb-exploitable:670 +-msgid "Jump to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:674 +-msgid "" +-"Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:693 +-msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:706 +-msgid "Likely crash reason: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:707 +-msgid "Exploitable rating (0-9 scale): " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:709 +-msgid "Current instruction: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:711 +-msgid "Exploitability analysis came up empty\n" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:142 +-msgid "" +-"& [-vs] [-F STR]... FILE PROG [ARGS]\n" +-"\n" +-"Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:154 +-msgid "Don't run PROG if STRs aren't found" +-msgstr "" +- +-#: ../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: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: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:153 +-#, c-format +-msgid " Tainted modules: %s." +-msgstr "" +- +-#: ../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: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:278 +-msgid "Create new problem directory in DIR for every oops found" +-msgstr "" +- +-#: ../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:280 +-msgid "Save the extracted information in PROBLEM" +-msgstr "" +- +-#: ../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:282 +-msgid "Throttle problem directory creation to 1 per second" +-msgstr "" +- +-#: ../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:379 +-msgid "Can't update the problem: more than one oops found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:398 +-#, c-format +-msgid "Sleeping for %d seconds" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:237 +-msgid "" +-"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" +-"\n" +-"Extract Xorg crash from FILE (or standard input)" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:245 +-msgid "Print found crash data on standard output" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:246 +-msgid "Create problem directory in DIR for every crash found" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:70 +-msgid "" +-"Retrace server can not be used, because the crash is too large. Try local " +-"retracing." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:211 +-#: ../src/plugins/abrt-retrace-client.c:398 +-#: ../src/plugins/abrt-retrace-client.c:666 +-#: ../src/plugins/abrt-retrace-client.c:832 +-#, c-format +-msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:223 +-#: ../src/plugins/abrt-retrace-client.c:412 +-#: ../src/plugins/abrt-retrace-client.c:765 +-#: ../src/plugins/abrt-retrace-client.c:849 +-#: ../src/plugins/abrt-retrace-client.c:916 +-#: ../src/plugins/abrt-retrace-client.c:1001 +-#: ../src/plugins/abrt-retrace-client.c:1060 +-#, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" +-"%s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:232 +-#: ../src/plugins/abrt-retrace-client.c:745 +-#: ../src/plugins/abrt-retrace-client.c:841 +-#: ../src/plugins/abrt-retrace-client.c:908 +-#: ../src/plugins/abrt-retrace-client.c:982 +-#: ../src/plugins/abrt-retrace-client.c:1052 +-msgid "Invalid response from server: missing HTTP message body." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:424 +-#, c-format +-msgid "" +-"Retrace server is unable to process package '%s.%s'.\n" +-"Is it a part of official '%s' repositories?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:444 +-msgid "Querying server settings" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:452 +-msgid "The server is fully occupied. Try again later." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:453 +-msgid "The server denied your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:484 +-#: ../src/plugins/abrt-retrace-client.c:500 +-#, c-format +-msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:514 +-#, c-format +-msgid "" +-"The size of your crash is %lld bytes, but the retrace server only accepts " +-"crashes smaller or equal to %lld bytes." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:534 +-msgid "The server does not support xz-compressed tarballs." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:571 +-#, c-format +-msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:575 +-msgid "The server is not able to handle your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:594 +-msgid "Unknown package sent to Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:603 +-msgid "Preparing an archive to upload" +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:629 +-#, c-format +-msgid "You are going to upload %d megabytes. Continue?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:638 +-msgid "Cancelled by user" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:673 +-#, c-format +-msgid "Uploading %d megabytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:675 +-#, c-format +-msgid "Uploading %lld bytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:699 +-#, c-format +-msgid "Uploading %d%%\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:711 +-msgid "Failed to read from a pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:724 +-#, c-format +-msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:735 +-msgid "Upload successful" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:757 +-msgid "" +-"Your problem directory is corrupted and can not be processed by the Retrace " +-"server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:759 +-msgid "" +-"The archive contains malicious files (such as symlinks) and thus can not be " +-"processed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:772 +-msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:778 +-msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:785 +-msgid "Retrace job started" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:798 +-#, c-format +-msgid "" +-"Task Id: %s\n" +-"Task Password: %s\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:856 +-msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:868 +-#, c-format +-msgid "" +-"Task Status: %s\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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1160 +-msgid "" +-"Retrace failed. Try again later and if the problem persists report this " +-"issue please." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1207 +-msgid "log to syslog" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1209 +-msgid "allow insecure connection to retrace server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1211 +-msgid "" +-"do not check whether retrace server is able to process given package before " +-"uploading the archive" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1214 +-msgid "retrace server URL" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1216 +-msgid "retrace server port" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1218 +-msgid "(debug) show received HTTP headers" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1219 +-msgid "For create and batch operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1221 +-msgid "read data from ABRT problem directory" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1223 +-msgid "read data from coredump" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1225 +-msgid "Delay for polling operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1227 +-msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1229 +-msgid "For status, backtrace, and log operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1231 +-msgid "id of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1233 +-msgid "password of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1237 +-msgid "" +-"abrt-retrace-client [options]\n" +-"Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1282 +-#: ../src/plugins/abrt-retrace-client.c:1288 +-msgid "Either problem directory or coredump is needed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1294 +-#: ../src/plugins/abrt-retrace-client.c:1302 +-#: ../src/plugins/abrt-retrace-client.c:1310 +-#: ../src/plugins/abrt-retrace-client.c:1318 +-msgid "Task id is needed." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1324 +-#, c-format +-msgid "Unknown operation: %s." +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 +-msgid "Local GNU Debugger" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 +-msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 +-msgid "" +-"Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +-msgid "Send core dump to remote retrace server for analysis" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +-#: ../src/plugins/analyze_CCpp.xml.in.h:3 +-msgid "Retrace server 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 "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 +-#: ../src/plugins/analyze_CCpp.xml.in.h:5 +-msgid "Insecure" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 +-#: ../src/plugins/analyze_CCpp.xml.in.h:6 +-msgid "Whether or not to use insecure connection" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 +-#: ../src/plugins/analyze_CCpp.xml.in.h:7 +-msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:1 +-msgid "Collect .xsession-errors" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:2 +-msgid "Save relevant lines from ~/.xsession-errors file" +-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 "" +- +-#: ../src/plugins/https-utils.c:62 +-msgid "An error occurred on the server side." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:65 +-#, c-format +-msgid "A server-side error occurred on '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:74 +-msgid "An error occurred while connecting to the server" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:77 +-#, c-format +-msgid "An error occurred while connecting to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:97 +-#, c-format +-msgid "Issuer certificate is invalid: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:100 +-#, c-format +-msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:103 +-#, c-format +-msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:107 +-msgid "Remote certificate has expired." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:110 +-#, c-format +-msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:113 +-#, c-format +-msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:149 +-#, c-format +-msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:182 +-#, c-format +-msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" +- +-#. Host exists, but has neither IPv4 nor IPv6?? +-#: ../src/plugins/https-utils.c:203 +-#, c-format +-msgid "Can't resolve host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:210 +-msgid "Failed to set socket blocking mode." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:213 +-msgid "Failed to wrap TCP socket by SSL." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:215 +-msgid "Failed to enable client handshake to SSL socket." +-msgstr "" +- +-#: ../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:233 +-#, c-format +-msgid "Can't connect to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:241 +-msgid "Failed to set certificate hook." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:247 +-msgid "Failed to set handshake callback." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:251 +-msgid "Failed to reset handshake." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:258 +-#, c-format +-msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:267 +-msgid "Failed to close SSL socket." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:332 +-#, c-format +-msgid "Malformed HTTP response header: '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:369 +-#, c-format +-msgid "Receiving of data failed: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:398 +-msgid "Malformed chunked response." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:423 +-msgid "Failed to initialize NSS." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:429 +-msgid "Failed to initialize security module." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:444 +-msgid "Failed to shutdown NSS." +-msgstr "" +- +-#: ../src/plugins/bodhi.c:375 +-msgid "List of bug ids" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:376 +-msgid "Specify a bodhi server url" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:377 +-msgid "Specify a release" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:382 +-msgid "" +-"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" +-"\n" +-"Search for updates on bodhi server" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:434 +-msgid "Searching for updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:440 +-msgid "No updates for this package found" +-msgstr "" +- +-#. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 +-msgid "Local version of the package is newer than available updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:486 +-#, c-format +-msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:85 +-msgid "" +-"& [-v] [-od] FILE...\n" +-"\n" +-"Scans files for split oops message. Can print and/or delete them." +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:97 +-msgid "Print found oopses" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:98 +-msgid "Delete files with found oopses" +-msgstr "" +- +-#: ../src/cli/abrt-cli-core.c:91 +-#, c-format +-msgid "'%s' identifies more than one problem directory" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:142 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:147 +-msgid "Remove problem directory DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:148 +-msgid "Analyze and report problem data in DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:149 +-msgid "Print information about DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:150 +-msgid "Print the count of the recent crashes" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:165 +-msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +- +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "" +- +-#: ../src/cli/list.c:188 +-msgid "List only not-reported problems" +-msgstr "" +- +-#. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 +-msgid "Show detailed report" +-msgstr "" +- +-#: ../src/cli/list.c:191 +-msgid "List only the problems more recent than specified timestamp" +-msgstr "" +- +-#: ../src/cli/list.c:192 +-msgid "List only the problems older than specified timestamp" +-msgstr "" +- +-#: ../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:235 +-msgid "& info [options] DIR..." +-msgstr "" +- +-#: ../src/cli/list.c:244 +-msgid "Text larger than this will be shown abridged" +-msgstr "" +- +-#: ../src/cli/list.c:264 +-#, c-format +-msgid "No such problem directory '%s'" +-msgstr "" +- +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "" +- +-#: ../src/cli/status.c:78 +-msgid "Print only the problem count without any message" +-msgstr "" +- +-#: ../src/cli/status.c:79 +-msgid "Print only the problems more recent than specified timestamp" +-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 "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:1 +-msgid "" +-"Send core dump to remote retrace server for analysis or perform local " +-"analysis if the remote analysis fails" +-msgstr "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. If " +-"user doens't want to upload his coredump to anywhere the event performs " +-"local analysis. Local analysis is run event if remote analysis fails. Pros: " +-"no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " +-"private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:1 +-msgid "Analyze VM core" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:3 +-msgid "" +-"Needs to install kernel debuginfo packages, which might take significant " +-"time, and take up disk space." +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:1 +-msgid "Collect GConf configuration" +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:2 +-msgid "Save configuration from application's GConf directory" +-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 "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:1 +-msgid "Collect system-wide vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:2 +-msgid "Save /etc/vimrc and /etc/gvimrc" +-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 "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:1 +-msgid "Collect yours vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:2 +-msgid "Save .vimrc and .gvimrc from your home directory" +-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 "" +- +-#: ../src/plugins/post_report.xml.in.h:1 +-msgid "Post report" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:2 +-msgid "Executed after the reporting is finished" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:3 +-msgid "Used for updating of the databases" +-msgstr "" +diff --git a/po/hu.po b/po/hu.po +index 6c422c3..f4fb9a0 100644 +--- a/po/hu.po ++++ b/po/hu.po +@@ -3,19 +3,19 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# Ferenc Teknős , 2013 ++# teknos.ferenc , 2013 + # Gábor Molnár , 2011 + # Jiří Moskovčák , 2011 + # Máté Gelei , 2011 +-# ptr , 2013 ++# Peter Bojtos , 2013 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora/language/hu/)\n" ++"Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora-abrt/language/hu/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -76,120 +76,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "'%s' nem végrehajtható" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Jelzés nem bezárható: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Figyelmeztetés" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Zoltan Hoppar " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "_Kilépés" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Elrejt" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "_Rólunk" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Probléma felfedezve" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Mindig figyelmen kivül hagyja" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Megnyitás" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "A probléma már bejelentésre került." + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Jelentés" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Hiba történt" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "A probléma már bejelentésre került." + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Új probléma merült fel" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "Jelzés nem megjeleníthető: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, 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:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' tulajdona nem átvehető" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Mappa nem megnyitható írásra: '%s'" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, 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:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -198,7 +284,7 @@ msgstr "" + msgid "_Defaults" + msgstr "_Alapbeállítások" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "A hiba bejelentő beállítása" +@@ -237,7 +323,7 @@ msgstr "Probléma könyvtár" + msgid "Configuration file" + msgstr "Konfigurációs fájl" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [opciók]" +@@ -304,19 +390,19 @@ msgstr "Nem maradt hibagyűjtő terület" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "A probléma mappából '%s' nem törölhető '%s'" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "A '%s' név elveszett, kérem elllenőrizze, hogy más futó szolgáltatás nem épp ezzel a névvel aktív-e vagy sem.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Kilépés NUM másodperc inaktivitás után" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Ennek a programnak root jogokkal kell futnia." + +@@ -391,8 +477,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Nyomkövetési információk előállítása" + +@@ -401,32 +564,32 @@ msgstr "Nyomkövetési információk előállítása" + msgid "Can't connect to system DBus: %s" + msgstr "Sikertelen csatlakozás a rendszer DBus szolgáltatásához: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Sikertelen chown '%s': %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Hibagyüjtő mappa törlése sikertelen: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Probléma adatok nem elérhetőek az abrt-dbus szolgáltatásból: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "'%s' ideiglenes fájl létrehozása sikertelen" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -434,7 +597,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:262 ++#: ../src/lib/ignored_problems.c:264 + #, 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" +@@ -466,6 +629,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nKiszámítja és elmenti a DIR hibagyűjtó könyvtárban az összeomlási adatok UUID-it" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -492,29 +674,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nKiszámítja és elmenti a UUID és DUPHASH adatokat a python összeomlási adatokból" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "Használata: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Fájl {0} nem létezik" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "Oops szöveg kibontása a core-ból" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "nem feldolgozható {0}:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "Oops üzenet nem kibontható: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops szöveg sikeresen kibontva" + +@@ -654,6 +836,38 @@ msgstr "Ezen a könyvtáron belül törölje az összes fájlt" + msgid "Preserve this directory" + msgstr "Könyvtár megörzése" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "A felhasználói térben levő program jelzést küldött" +@@ -844,11 +1058,15 @@ msgstr "Aktiválja a probéma mappa létrehozását 1 másodpercenként" + 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:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + 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:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Kivárás %d másodpercig" +@@ -1420,31 +1638,35 @@ msgstr "Fájlok törlése közben oops történt" + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' egyidejűleg egyszerre több problémagyüjtő könyvtára is azonosított" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Használat: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Listázza a még be nem jelentett hibákat [DIR könyvtárakban]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Hibagyűjtő DIR könyvtár eltávolítása" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Elemzi és bejelenti a hibaadatokat a DIR könyvtárban" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Információk nyomtatása DIR könyvtárról" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Írja ki a legutóbbi összeomlások számát" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Tekintse meg az 'abrt-cli PARANCS --help' a további információkért" + +@@ -1506,6 +1728,45 @@ msgstr "Csak azoknak az eseteknek a számát jelenítse meg, ami a megjelölt id + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "Az ABRT több hibát is talált %u (s) . További információhoz futtasa az abrt-cli list %s parancsot\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/hy.po b/po/hy.po +index 3734fa9..217d6cd 100644 +--- a/po/hy.po ++++ b/po/hy.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Armenian (http://www.transifex.com/projects/p/fedora/language/hy/)\n" ++"Language-Team: Armenian (http://www.transifex.com/projects/p/fedora-abrt/language/hy/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ia.po b/po/ia.po +index 01d3a93..9c4677f 100644 +--- a/po/ia.po ++++ b/po/ia.po +@@ -8,10 +8,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Interlingua (http://www.transifex.com/projects/p/fedora/language/ia/)\n" ++"Language-Team: Interlingua (http://www.transifex.com/projects/p/fedora-abrt/language/ia/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Celar" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Reportar" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -233,7 +319,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -300,19 +386,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -397,32 +560,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -650,6 +832,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -840,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1416,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1502,6 +1724,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/id.po b/po/id.po +index 790c2b4..31ccc17 100644 +--- a/po/id.po ++++ b/po/id.po +@@ -12,10 +12,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Indonesian (http://www.transifex.com/projects/p/fedora/language/id/)\n" ++"Language-Team: Indonesian (http://www.transifex.com/projects/p/fedora-abrt/language/id/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -76,120 +76,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Peringatan" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "penghargaan pada penterjemah" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Sembunyi" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Laporan" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Masalah telah terjadi" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -198,7 +284,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -237,7 +323,7 @@ msgstr "Direktori masalah" + msgid "Configuration file" + msgstr "Berkas konfigurasi" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -304,19 +390,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -391,8 +477,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Membuat backtrace" + +@@ -401,32 +564,32 @@ msgstr "Membuat backtrace" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -434,7 +597,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -466,6 +629,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -492,29 +674,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -654,6 +836,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -844,11 +1058,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1420,31 +1638,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1506,6 +1728,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ilo.po b/po/ilo.po +index 6b67ebf..ed4e3bf 100644 +--- a/po/ilo.po ++++ b/po/ilo.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Iloko (http://www.transifex.com/projects/p/fedora/language/ilo/)\n" ++"Language-Team: Iloko (http://www.transifex.com/projects/p/fedora-abrt/language/ilo/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/is.po b/po/is.po +index e54acc9..32a7f25 100644 +--- a/po/is.po ++++ b/po/is.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Icelandic (http://www.transifex.com/projects/p/fedora/language/is/)\n" ++"Language-Team: Icelandic (http://www.transifex.com/projects/p/fedora-abrt/language/is/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/it.po b/po/it.po +index 0d1702a..1e1d9a5 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -3,7 +3,7 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# antoniomontag , 2013 ++# antonio montagnani , 2013 + # Antonio Trande , 2011 + # Francesco D'Aluisio , 2011,2013 + # fvalen , 2013 +@@ -18,10 +18,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Italian (http://www.transifex.com/projects/p/fedora-abrt/language/it/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -82,120 +82,206 @@ msgstr "%s e i dati diagnostici sono stati inviati" + msgid "Can't execute '%s'" + msgstr "Impossibile eseguire '%s'" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Impossibile chiudere la notifica: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Attenzione" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Silvio Pierro , 2013." + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "_Esci" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Nascondi" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "_Informazioni" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Problema rilevato" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Ignora sempre" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Apri" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "Il problema è stato già riportato" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Notifica" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Si è verificato un problema" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "È stato riportato un problema" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Si è verificato un nuovo problema" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "Impossibile mostrare la notifica: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Impossibile impostare la codifica sul canale gio: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Impossibile ottenere la proprietà di '%s'" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Impossibile aprire la directory per la scrittura: '%s'" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, 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:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "_Chiudi" +@@ -204,7 +290,7 @@ msgstr "_Chiudi" + msgid "_Defaults" + msgstr "_Predefiniti" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Configurazione del report problemi" +@@ -243,7 +329,7 @@ msgstr "Directory del problema" + msgid "Configuration file" + msgstr "File di configurazione" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [opzioni]" +@@ -310,19 +396,19 @@ msgstr "Nessuno spazio del problema rimasto" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Impossibile cancellare l'elemento '%s' dalla directory del problema '%s'" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "Il nome '%s' è stato perso, verificare che altri servizi che utilizzano questo nome non siano in esecuzione.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Esci dopo NUM secondi di inattività" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Questo programma deve essere eseguito come root." + +@@ -397,8 +483,85 @@ msgstr "Numero non valido di argomenti" + msgid "Unknown option value: '%s'\n" + msgstr "Valore opzione sconosciuto: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Generazione messaggi di backtrace in corso" + +@@ -407,32 +570,32 @@ msgstr "Generazione messaggi di backtrace in corso" + msgid "Can't connect to system DBus: %s" + msgstr "Impossibile connettersi al sistema DBus: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Impossibile ottenere la proprietà '%s': %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Cancellazione directory del problema non riuscita: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Impossibile ottenere i dati del problema da abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Impossibile creare il file temporaneo '%s'" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -440,7 +603,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:262 ++#: ../src/lib/ignored_problems.c:264 + #, 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'" +@@ -472,6 +635,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nCalcola e salva UUID di coredump nella directory del problema DIR" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -498,29 +680,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nCalcola e salva UUID e DUPHASH dei crash dump di python" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "Utilizzo: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Il file {0} non esiste" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "Estrazione testo oops dal core" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "Impossibile processare {0}:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "Impossibile estrarre il messaggio oops: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Estratto con successo il testo oops" + +@@ -660,6 +842,38 @@ msgstr "Cancella i file all'interno di questa directory" + msgid "Preserve this directory" + msgstr "Preserva questa directory" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "Segnale inviato da codice nello spazio utente" +@@ -850,11 +1064,15 @@ msgstr "Aumenta la creazione della directory del problema a 1 per secondo" + 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:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "Impossibile aggiornare il problema: travati più di un oops" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "In sospensione per %d secondi" +@@ -1426,31 +1644,35 @@ msgstr "Cancella file con errori trovati" + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identifica più di una directory del problema" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Utilizzo: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Elenca i problemi non ancora riportati [in DIR]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Rimuovi la directory del problema DIR" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analizza e riporta i dati del problema in DIR" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Stampa le informazioni sulla DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Stampa il contatore dei crash recenti" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Consultare 'abrt-cli COMMAND --help' per maggiori informazioni" + +@@ -1512,6 +1734,45 @@ msgstr "Stampa solo i problemi più recenti di un timestamp specificato" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT ha trovato %u problema(i). Per maggiori informazioni usare: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/it_IT.po b/po/it_IT.po +deleted file mode 100644 +index f588d74..0000000 +--- a/po/it_IT.po ++++ /dev/null +@@ -1,1588 +0,0 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: +-msgid "" +-msgstr "" +-"Project-Id-Version: ABRT\n" +-"Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Content-Transfer-Encoding: 8bit\n" +-"Language: it_IT\n" +-"Plural-Forms: nplurals=2; plural=(n != 1);\n" +- +-#: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" +- +-#: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../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" +-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:243 +-#, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:267 +-#, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:386 +-msgid "A problem has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:388 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:398 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" +-msgstr "" +- +-#: ../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:632 ../src/applet/applet.c:698 +-#, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:788 +-msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "" +- +-#: ../src/applet/applet.c:804 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:812 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:814 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:816 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:884 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:934 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:950 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../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:969 ../src/applet/applet.c:1004 +-msgid "Report" +-msgstr "" +- +-#: ../src/applet/applet.c:974 +-msgid "A Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1000 +-msgid "A Problem has been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:1008 +-msgid "A New Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1018 +-#, c-format +-msgid "Can't show notification: %s" +-msgstr "" +- +-#. TODO: Terminate child's process? +-#: ../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:1136 +-#, c-format +-msgid "Can't set encoding on gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1140 +-#, c-format +-msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1172 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1182 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../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: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:75 +-msgid "_Close" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:84 +-msgid "_Defaults" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:110 +-#: ../src/configuration-gui/main.c:36 +-msgid "Problem Reporting Configuration" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:75 +-msgid "About System Config ABRT" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:105 +-msgid "About" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:106 +-msgid "Quit" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:382 +-msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" +-"\n" +-"Query package database and save package and component name" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:394 +-#: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 +-#: ../src/plugins/abrt-action-analyze-oops.c:48 +-#: ../src/plugins/abrt-action-analyze-xorg.c:84 +-#: ../src/plugins/abrt-action-analyze-python.c:47 +-#: ../src/plugins/abrt-action-generate-backtrace.c:55 +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 +-msgid "Problem directory" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:395 +-msgid "Configuration file" +-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 "" +- +-#: ../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: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 "" +- +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 +-msgid "Add program names to log" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:123 +-msgid "Unknown error" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:188 +-#, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:223 +-#, c-format +-msgid "'%s' element can't be modified" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 +-#, c-format +-msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:580 +-#, c-format +-msgid "Can't get size of '%s'" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:595 +-msgid "No problem space left" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:627 +-#, c-format +-msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#: ../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 "" +- +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 +-msgid "This program must be run as root." +-msgstr "" +- +-#: ../src/daemon/abrtd.c:451 +-msgid "" +-"The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" +- +-#: ../src/daemon/abrtd.c:497 +-msgid "Do not daemonize" +-msgstr "" +- +-#: ../src/daemon/abrtd.c:498 +-msgid "Log to syslog even with -d" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:388 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:396 +-msgid "Run EVENT on DIR" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:397 +-msgid "Communicate directly to the user" +-msgstr "" +- +-#: ../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:258 +-msgid "" +-"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +-"\n" +-"\n" +-"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" +-"specified in abrt.conf\n" +-"\n" +-"If UPLOAD_DIRECTORY is not provided, uses a value of\n" +-"WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:281 +-msgid "Daemize" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:282 +-msgid "Number of concurrent workers. Default is " +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" +-msgstr "" +- +-#: ../src/daemon/abrt-auto-reporting.c:138 +-#, c-format +-msgid "Unknown option value: '%s'\n" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/lib/hooklib.c:251 +-msgid "Generating backtrace" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:42 +-#, c-format +-msgid "Can't connect to system DBus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:66 +-#, c-format +-msgid "Can't chown '%s': %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:93 +-#, c-format +-msgid "Deleting problem directory failed: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:127 +-#, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:161 +-#, c-format +-msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/ignored_problems.c:231 +-#, c-format +-msgid "Can't create temporary file '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 +-#, c-format +-msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:41 +-msgid "" +-"& [options] -d DIR\n" +-"\n" +-"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" +-"and identifies crash function in problem directory DIR" +-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 "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 +-msgid "Crash thread not found" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-c.c:67 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-oops.c:37 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/plugins/abrt-action-analyze-xorg.c:113 +-#, c-format +-msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-python.c:36 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 +-msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 +-msgid "File {0} doesn't exist" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 +-msgid "Extracting the oops text from core" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 +-msgid "" +-"Can't process {0}:\n" +-"{1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 +-msgid "Can't extract the oops message: '{0}'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 +-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" +-"\n" +-"Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:56 +-msgid "Additional debuginfo directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:57 +-msgid "Kill gdb if it runs for more than NUM seconds" +-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 "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 +-msgid "" +-"& [-v] [-r] -d DIR\n" +-"\n" +-"Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +-msgid "Do not hash fingerprints" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 +-msgid "Generating core_backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 +-msgid "Error: GDB did not return any data" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 +-#, c-format +-msgid "Error: %s" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:51 +-msgid "Exiting on user command" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 +-#, c-format +-msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" +-" [-e, --exact=PATH[:PATH]...]\n" +-"\n" +-"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +-"to CACHEDIR, using TMPDIR as temporary staging area.\n" +-"Old 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" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 +-msgid "Can't open {0}: {1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 +-msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 +-msgid "{0} of debuginfo files are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 +-msgid "Missing requested file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 +-msgid "Missing debuginfo file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 +-msgid "All debuginfo files are available" +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 +-msgid "" +-"Ok to upload core dump? (It may contain sensitive data). If your answer is " +-"'No', a stack trace will be generated locally. (It may download a huge " +-"amount of data)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 +-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 "" +- +-#: ../src/plugins/abrt-action-trim-files.c:222 +-msgid "" +-"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" +-"\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" +-"FILEs are preserved (never deleted)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:236 +-msgid "Delete whole problem directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:237 +-msgid "Delete files inside this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:238 +-msgid "Preserve this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:529 +-msgid "Signal sent by userspace code" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:533 +-msgid "Signal sent by timer/IO/async event" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:541 +-msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:544 +-msgid "Signal due to write to closed pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:550 +-#: ../src/plugins/abrt-gdb-exploitable:575 +-msgid "Signal sent by keyboard" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:554 +-#: ../src/plugins/abrt-gdb-exploitable:579 +-msgid "Job control signal sent by kernel" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:558 +-#: ../src/plugins/abrt-gdb-exploitable:587 +-msgid "Signal sent by window resize" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:562 +-#: ../src/plugins/abrt-gdb-exploitable:591 +-msgid "Signal sent by alarm(N) expiration" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:583 +-msgid "Signal due to write to broken pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:607 +-msgid "ABRT signal (abort() was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:616 +-msgid "XCPU signal (over CPU time limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:620 +-msgid "XFSZ signal (over file size limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:624 +-msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:628 +-msgid "SYS signal (unknown syscall was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:633 +-msgid "Arithmetic exception" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:637 +-msgid "Division by zero" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:641 +-msgid "Illegal instruction (jump to a random address?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:647 +-msgid "Non-crash related signal" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:652 +-msgid "Stack overflow" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:656 +-msgid "Write to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:660 +-msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:666 +-#: ../src/plugins/abrt-gdb-exploitable:670 +-msgid "Jump to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:674 +-msgid "" +-"Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:693 +-msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:706 +-msgid "Likely crash reason: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:707 +-msgid "Exploitable rating (0-9 scale): " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:709 +-msgid "Current instruction: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:711 +-msgid "Exploitability analysis came up empty\n" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:142 +-msgid "" +-"& [-vs] [-F STR]... FILE PROG [ARGS]\n" +-"\n" +-"Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:154 +-msgid "Don't run PROG if STRs aren't found" +-msgstr "" +- +-#: ../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: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: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:153 +-#, c-format +-msgid " Tainted modules: %s." +-msgstr "" +- +-#: ../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: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:278 +-msgid "Create new problem directory in DIR for every oops found" +-msgstr "" +- +-#: ../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:280 +-msgid "Save the extracted information in PROBLEM" +-msgstr "" +- +-#: ../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:282 +-msgid "Throttle problem directory creation to 1 per second" +-msgstr "" +- +-#: ../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:379 +-msgid "Can't update the problem: more than one oops found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:398 +-#, c-format +-msgid "Sleeping for %d seconds" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:237 +-msgid "" +-"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" +-"\n" +-"Extract Xorg crash from FILE (or standard input)" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:245 +-msgid "Print found crash data on standard output" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:246 +-msgid "Create problem directory in DIR for every crash found" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:70 +-msgid "" +-"Retrace server can not be used, because the crash is too large. Try local " +-"retracing." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:211 +-#: ../src/plugins/abrt-retrace-client.c:398 +-#: ../src/plugins/abrt-retrace-client.c:666 +-#: ../src/plugins/abrt-retrace-client.c:832 +-#, c-format +-msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:223 +-#: ../src/plugins/abrt-retrace-client.c:412 +-#: ../src/plugins/abrt-retrace-client.c:765 +-#: ../src/plugins/abrt-retrace-client.c:849 +-#: ../src/plugins/abrt-retrace-client.c:916 +-#: ../src/plugins/abrt-retrace-client.c:1001 +-#: ../src/plugins/abrt-retrace-client.c:1060 +-#, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" +-"%s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:232 +-#: ../src/plugins/abrt-retrace-client.c:745 +-#: ../src/plugins/abrt-retrace-client.c:841 +-#: ../src/plugins/abrt-retrace-client.c:908 +-#: ../src/plugins/abrt-retrace-client.c:982 +-#: ../src/plugins/abrt-retrace-client.c:1052 +-msgid "Invalid response from server: missing HTTP message body." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:424 +-#, c-format +-msgid "" +-"Retrace server is unable to process package '%s.%s'.\n" +-"Is it a part of official '%s' repositories?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:444 +-msgid "Querying server settings" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:452 +-msgid "The server is fully occupied. Try again later." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:453 +-msgid "The server denied your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:484 +-#: ../src/plugins/abrt-retrace-client.c:500 +-#, c-format +-msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:514 +-#, c-format +-msgid "" +-"The size of your crash is %lld bytes, but the retrace server only accepts " +-"crashes smaller or equal to %lld bytes." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:534 +-msgid "The server does not support xz-compressed tarballs." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:571 +-#, c-format +-msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:575 +-msgid "The server is not able to handle your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:594 +-msgid "Unknown package sent to Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:603 +-msgid "Preparing an archive to upload" +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:629 +-#, c-format +-msgid "You are going to upload %d megabytes. Continue?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:638 +-msgid "Cancelled by user" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:673 +-#, c-format +-msgid "Uploading %d megabytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:675 +-#, c-format +-msgid "Uploading %lld bytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:699 +-#, c-format +-msgid "Uploading %d%%\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:711 +-msgid "Failed to read from a pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:724 +-#, c-format +-msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:735 +-msgid "Upload successful" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:757 +-msgid "" +-"Your problem directory is corrupted and can not be processed by the Retrace " +-"server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:759 +-msgid "" +-"The archive contains malicious files (such as symlinks) and thus can not be " +-"processed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:772 +-msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:778 +-msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:785 +-msgid "Retrace job started" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:798 +-#, c-format +-msgid "" +-"Task Id: %s\n" +-"Task Password: %s\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:856 +-msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:868 +-#, c-format +-msgid "" +-"Task Status: %s\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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1160 +-msgid "" +-"Retrace failed. Try again later and if the problem persists report this " +-"issue please." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1207 +-msgid "log to syslog" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1209 +-msgid "allow insecure connection to retrace server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1211 +-msgid "" +-"do not check whether retrace server is able to process given package before " +-"uploading the archive" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1214 +-msgid "retrace server URL" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1216 +-msgid "retrace server port" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1218 +-msgid "(debug) show received HTTP headers" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1219 +-msgid "For create and batch operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1221 +-msgid "read data from ABRT problem directory" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1223 +-msgid "read data from coredump" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1225 +-msgid "Delay for polling operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1227 +-msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1229 +-msgid "For status, backtrace, and log operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1231 +-msgid "id of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1233 +-msgid "password of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1237 +-msgid "" +-"abrt-retrace-client [options]\n" +-"Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1282 +-#: ../src/plugins/abrt-retrace-client.c:1288 +-msgid "Either problem directory or coredump is needed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1294 +-#: ../src/plugins/abrt-retrace-client.c:1302 +-#: ../src/plugins/abrt-retrace-client.c:1310 +-#: ../src/plugins/abrt-retrace-client.c:1318 +-msgid "Task id is needed." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1324 +-#, c-format +-msgid "Unknown operation: %s." +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 +-msgid "Local GNU Debugger" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 +-msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 +-msgid "" +-"Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +-msgid "Send core dump to remote retrace server for analysis" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +-#: ../src/plugins/analyze_CCpp.xml.in.h:3 +-msgid "Retrace server 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 "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 +-#: ../src/plugins/analyze_CCpp.xml.in.h:5 +-msgid "Insecure" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 +-#: ../src/plugins/analyze_CCpp.xml.in.h:6 +-msgid "Whether or not to use insecure connection" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 +-#: ../src/plugins/analyze_CCpp.xml.in.h:7 +-msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:1 +-msgid "Collect .xsession-errors" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:2 +-msgid "Save relevant lines from ~/.xsession-errors file" +-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 "" +- +-#: ../src/plugins/https-utils.c:62 +-msgid "An error occurred on the server side." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:65 +-#, c-format +-msgid "A server-side error occurred on '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:74 +-msgid "An error occurred while connecting to the server" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:77 +-#, c-format +-msgid "An error occurred while connecting to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:97 +-#, c-format +-msgid "Issuer certificate is invalid: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:100 +-#, c-format +-msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:103 +-#, c-format +-msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:107 +-msgid "Remote certificate has expired." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:110 +-#, c-format +-msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:113 +-#, c-format +-msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:149 +-#, c-format +-msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:182 +-#, c-format +-msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" +- +-#. Host exists, but has neither IPv4 nor IPv6?? +-#: ../src/plugins/https-utils.c:203 +-#, c-format +-msgid "Can't resolve host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:210 +-msgid "Failed to set socket blocking mode." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:213 +-msgid "Failed to wrap TCP socket by SSL." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:215 +-msgid "Failed to enable client handshake to SSL socket." +-msgstr "" +- +-#: ../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:233 +-#, c-format +-msgid "Can't connect to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:241 +-msgid "Failed to set certificate hook." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:247 +-msgid "Failed to set handshake callback." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:251 +-msgid "Failed to reset handshake." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:258 +-#, c-format +-msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:267 +-msgid "Failed to close SSL socket." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:332 +-#, c-format +-msgid "Malformed HTTP response header: '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:369 +-#, c-format +-msgid "Receiving of data failed: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:398 +-msgid "Malformed chunked response." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:423 +-msgid "Failed to initialize NSS." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:429 +-msgid "Failed to initialize security module." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:444 +-msgid "Failed to shutdown NSS." +-msgstr "" +- +-#: ../src/plugins/bodhi.c:375 +-msgid "List of bug ids" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:376 +-msgid "Specify a bodhi server url" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:377 +-msgid "Specify a release" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:382 +-msgid "" +-"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" +-"\n" +-"Search for updates on bodhi server" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:434 +-msgid "Searching for updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:440 +-msgid "No updates for this package found" +-msgstr "" +- +-#. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 +-msgid "Local version of the package is newer than available updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:486 +-#, c-format +-msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:85 +-msgid "" +-"& [-v] [-od] FILE...\n" +-"\n" +-"Scans files for split oops message. Can print and/or delete them." +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:97 +-msgid "Print found oopses" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:98 +-msgid "Delete files with found oopses" +-msgstr "" +- +-#: ../src/cli/abrt-cli-core.c:91 +-#, c-format +-msgid "'%s' identifies more than one problem directory" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:142 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:147 +-msgid "Remove problem directory DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:148 +-msgid "Analyze and report problem data in DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:149 +-msgid "Print information about DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:150 +-msgid "Print the count of the recent crashes" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:165 +-msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +- +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "" +- +-#: ../src/cli/list.c:188 +-msgid "List only not-reported problems" +-msgstr "" +- +-#. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 +-msgid "Show detailed report" +-msgstr "" +- +-#: ../src/cli/list.c:191 +-msgid "List only the problems more recent than specified timestamp" +-msgstr "" +- +-#: ../src/cli/list.c:192 +-msgid "List only the problems older than specified timestamp" +-msgstr "" +- +-#: ../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:235 +-msgid "& info [options] DIR..." +-msgstr "" +- +-#: ../src/cli/list.c:244 +-msgid "Text larger than this will be shown abridged" +-msgstr "" +- +-#: ../src/cli/list.c:264 +-#, c-format +-msgid "No such problem directory '%s'" +-msgstr "" +- +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "" +- +-#: ../src/cli/status.c:78 +-msgid "Print only the problem count without any message" +-msgstr "" +- +-#: ../src/cli/status.c:79 +-msgid "Print only the problems more recent than specified timestamp" +-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 "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:1 +-msgid "" +-"Send core dump to remote retrace server for analysis or perform local " +-"analysis if the remote analysis fails" +-msgstr "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. If " +-"user doens't want to upload his coredump to anywhere the event performs " +-"local analysis. Local analysis is run event if remote analysis fails. Pros: " +-"no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " +-"private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:1 +-msgid "Analyze VM core" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:3 +-msgid "" +-"Needs to install kernel debuginfo packages, which might take significant " +-"time, and take up disk space." +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:1 +-msgid "Collect GConf configuration" +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:2 +-msgid "Save configuration from application's GConf directory" +-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 "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:1 +-msgid "Collect system-wide vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:2 +-msgid "Save /etc/vimrc and /etc/gvimrc" +-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 "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:1 +-msgid "Collect yours vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:2 +-msgid "Save .vimrc and .gvimrc from your home directory" +-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 "" +- +-#: ../src/plugins/post_report.xml.in.h:1 +-msgid "Post report" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:2 +-msgid "Executed after the reporting is finished" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:3 +-msgid "Used for updating of the databases" +-msgstr "" +diff --git a/po/ja.po b/po/ja.po +index a320655..c2c2a00 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -10,15 +10,15 @@ + # nnakakit , 2013 + # noriko , 2014 + # noriko , 2010,2012-2013 +-# 高一人参 @欠陥遺伝子 , 2011-2012 ++# carrotsoft , 2011-2012 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-abrt/language/ja/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -79,120 +79,206 @@ msgstr "%s および診断データが送信されました" + msgid "Can't execute '%s'" + msgstr "「%s」を実行できません" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "通知を閉じることができません: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "警告" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT によって検出された問題をユーザーに通知するための通知エリアアプレット" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Casey Jones \nHajime Taira \nNoriko Mizumoto " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "終了 (_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "非表示" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "ABRT について (_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "問題を発見しました" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "永久に無視" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "開く" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "この問題はすでに報告済みです" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "既知の問題が発生しました" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "報告する" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "問題が発生しました" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "問題が報告されました" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "新しい問題が発生しました" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "通知を表示できません: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio チャネルからの読み込みができません: '%s'" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio チャネルでエンコーディングを設定できません: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio チャネルのノンブロッキングモードを有効にできません: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' の所有権を取得できません" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' を書き込むためのディレクトリを開くことができません" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "セッションマネージャに対する接続を開くのに失敗しました: 「%s」、次回のログイン時に通知が再表示される場合があります。" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "閉じる (_C)" +@@ -201,7 +287,7 @@ msgstr "閉じる (_C)" + msgid "_Defaults" + msgstr "デフォルト (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "問題報告の設定" +@@ -240,7 +326,7 @@ msgstr "問題ディレクトリ" + msgid "Configuration file" + msgstr "設定ファイル" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [オプション]" +@@ -307,19 +393,19 @@ msgstr "残っている問題領域はありません" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "「%s」エレメントを問題ディレクトリの「%s」から削除できません" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "'%s' の名前を紛失しました。その名前を持つ他のサービスが実行していないかチェックして下さい。\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "休止状態が NUM 秒以上続いた場合は終了します" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "このプログラムは root で実行しなければなりません" + +@@ -394,8 +480,85 @@ msgstr "引数の数が無効な数です" + msgid "Unknown option value: '%s'\n" + msgstr "不明なオプション値です: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "バックトレースの生成中" + +@@ -404,32 +567,32 @@ msgstr "バックトレースの生成中" + msgid "Can't connect to system DBus: %s" + msgstr "システムの DBus に接続できません: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "'%s の chown ができません: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "問題ディレクトリの削除に失敗しました: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus から問題のデータを取り込めません: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus から問題の一覧を取りこめません: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "一時ファイル '%s' を作成できません" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -437,7 +600,7 @@ msgid "" + msgstr "'%s' に書き込みできません。問題 '%s' は、無視した問題 '%s' からは削除されません。" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s' の名前を '%s' に変更できません。問題 '%s' の削除に失敗しました。" +@@ -469,6 +632,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nDIR 問題ディレクトリ内のコアダンプの UUID を算出して保存\nします" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -495,29 +677,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\npython クラッシュダンプの UUID と DUPHASH を算出して保存\nします" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "使用法: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "ファイル {0} は存在していません" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "core からウップステキストを抽出します" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "{0} を処理できません:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "ウップスメッセージを抽出できません: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "ウップステキストが正常に抽出されました" + +@@ -657,6 +839,38 @@ msgstr "このディレクトリ内のファイル群を削除" + msgid "Preserve this directory" + msgstr "このディレクトリを維持" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "ユーザー領域コードにより送信された警告" +@@ -847,11 +1061,15 @@ msgstr "問題のディレクトリの作成を毎秒 1 個に制限" + msgid "Print search string(s) to stdout and exit" + msgstr "検索文字列を標準出力に表示して終了" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "問題を更新できません: 複数のウップスが見つかりました" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d 秒スリープします" +@@ -1423,31 +1641,35 @@ msgstr "検出した oops を含んでいるファイルを削除" + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' が複数の問題ディレクトリを確認しました" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "使い方: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "まだ報告されていない問題を表示する [DIR 内]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "DIR 問題ディレクトリを削除する" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "DIR 内の問題データを分析、 報告する" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR に関する情報を出力する" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "最新のクラッシュ回数を表示する" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "詳細については abrt-cli COMMAND --help を参照してください" + +@@ -1509,6 +1731,45 @@ msgstr "指定されたタイムスタンプよりも新しい問題のみを表 + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT により %u 件の問題が検出されました。次を実行して詳細を確認してください: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ja_JP.po b/po/ja_JP.po +deleted file mode 100644 +index 6f23286..0000000 +--- a/po/ja_JP.po ++++ /dev/null +@@ -1,1588 +0,0 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: +-msgid "" +-msgstr "" +-"Project-Id-Version: ABRT\n" +-"Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Content-Transfer-Encoding: 8bit\n" +-"Language: ja_JP\n" +-"Plural-Forms: nplurals=1; plural=0;\n" +- +-#: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" +- +-#: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../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" +-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:243 +-#, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:267 +-#, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:386 +-msgid "A problem has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:388 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:398 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" +-msgstr "" +- +-#: ../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:632 ../src/applet/applet.c:698 +-#, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:788 +-msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "" +- +-#: ../src/applet/applet.c:804 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:812 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:814 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:816 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:884 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:934 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:950 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../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:969 ../src/applet/applet.c:1004 +-msgid "Report" +-msgstr "" +- +-#: ../src/applet/applet.c:974 +-msgid "A Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1000 +-msgid "A Problem has been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:1008 +-msgid "A New Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1018 +-#, c-format +-msgid "Can't show notification: %s" +-msgstr "" +- +-#. TODO: Terminate child's process? +-#: ../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:1136 +-#, c-format +-msgid "Can't set encoding on gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1140 +-#, c-format +-msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1172 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1182 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../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: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:75 +-msgid "_Close" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:84 +-msgid "_Defaults" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:110 +-#: ../src/configuration-gui/main.c:36 +-msgid "Problem Reporting Configuration" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:75 +-msgid "About System Config ABRT" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:105 +-msgid "About" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:106 +-msgid "Quit" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:382 +-msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" +-"\n" +-"Query package database and save package and component name" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:394 +-#: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 +-#: ../src/plugins/abrt-action-analyze-oops.c:48 +-#: ../src/plugins/abrt-action-analyze-xorg.c:84 +-#: ../src/plugins/abrt-action-analyze-python.c:47 +-#: ../src/plugins/abrt-action-generate-backtrace.c:55 +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 +-msgid "Problem directory" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:395 +-msgid "Configuration file" +-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 "" +- +-#: ../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: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 "" +- +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 +-msgid "Add program names to log" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:123 +-msgid "Unknown error" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:188 +-#, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:223 +-#, c-format +-msgid "'%s' element can't be modified" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 +-#, c-format +-msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:580 +-#, c-format +-msgid "Can't get size of '%s'" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:595 +-msgid "No problem space left" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:627 +-#, c-format +-msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#: ../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 "" +- +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 +-msgid "This program must be run as root." +-msgstr "" +- +-#: ../src/daemon/abrtd.c:451 +-msgid "" +-"The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" +- +-#: ../src/daemon/abrtd.c:497 +-msgid "Do not daemonize" +-msgstr "" +- +-#: ../src/daemon/abrtd.c:498 +-msgid "Log to syslog even with -d" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:388 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:396 +-msgid "Run EVENT on DIR" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:397 +-msgid "Communicate directly to the user" +-msgstr "" +- +-#: ../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:258 +-msgid "" +-"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +-"\n" +-"\n" +-"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" +-"specified in abrt.conf\n" +-"\n" +-"If UPLOAD_DIRECTORY is not provided, uses a value of\n" +-"WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:281 +-msgid "Daemize" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:282 +-msgid "Number of concurrent workers. Default is " +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" +-msgstr "" +- +-#: ../src/daemon/abrt-auto-reporting.c:138 +-#, c-format +-msgid "Unknown option value: '%s'\n" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/lib/hooklib.c:251 +-msgid "Generating backtrace" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:42 +-#, c-format +-msgid "Can't connect to system DBus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:66 +-#, c-format +-msgid "Can't chown '%s': %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:93 +-#, c-format +-msgid "Deleting problem directory failed: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:127 +-#, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:161 +-#, c-format +-msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/ignored_problems.c:231 +-#, c-format +-msgid "Can't create temporary file '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 +-#, c-format +-msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:41 +-msgid "" +-"& [options] -d DIR\n" +-"\n" +-"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" +-"and identifies crash function in problem directory DIR" +-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 "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 +-msgid "Crash thread not found" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-c.c:67 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-oops.c:37 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/plugins/abrt-action-analyze-xorg.c:113 +-#, c-format +-msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-python.c:36 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 +-msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 +-msgid "File {0} doesn't exist" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 +-msgid "Extracting the oops text from core" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 +-msgid "" +-"Can't process {0}:\n" +-"{1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 +-msgid "Can't extract the oops message: '{0}'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 +-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" +-"\n" +-"Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:56 +-msgid "Additional debuginfo directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:57 +-msgid "Kill gdb if it runs for more than NUM seconds" +-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 "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 +-msgid "" +-"& [-v] [-r] -d DIR\n" +-"\n" +-"Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +-msgid "Do not hash fingerprints" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 +-msgid "Generating core_backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 +-msgid "Error: GDB did not return any data" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 +-#, c-format +-msgid "Error: %s" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:51 +-msgid "Exiting on user command" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 +-#, c-format +-msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" +-" [-e, --exact=PATH[:PATH]...]\n" +-"\n" +-"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +-"to CACHEDIR, using TMPDIR as temporary staging area.\n" +-"Old 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" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 +-msgid "Can't open {0}: {1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 +-msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 +-msgid "{0} of debuginfo files are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 +-msgid "Missing requested file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 +-msgid "Missing debuginfo file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 +-msgid "All debuginfo files are available" +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 +-msgid "" +-"Ok to upload core dump? (It may contain sensitive data). If your answer is " +-"'No', a stack trace will be generated locally. (It may download a huge " +-"amount of data)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 +-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 "" +- +-#: ../src/plugins/abrt-action-trim-files.c:222 +-msgid "" +-"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" +-"\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" +-"FILEs are preserved (never deleted)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:236 +-msgid "Delete whole problem directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:237 +-msgid "Delete files inside this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:238 +-msgid "Preserve this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:529 +-msgid "Signal sent by userspace code" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:533 +-msgid "Signal sent by timer/IO/async event" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:541 +-msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:544 +-msgid "Signal due to write to closed pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:550 +-#: ../src/plugins/abrt-gdb-exploitable:575 +-msgid "Signal sent by keyboard" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:554 +-#: ../src/plugins/abrt-gdb-exploitable:579 +-msgid "Job control signal sent by kernel" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:558 +-#: ../src/plugins/abrt-gdb-exploitable:587 +-msgid "Signal sent by window resize" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:562 +-#: ../src/plugins/abrt-gdb-exploitable:591 +-msgid "Signal sent by alarm(N) expiration" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:583 +-msgid "Signal due to write to broken pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:607 +-msgid "ABRT signal (abort() was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:616 +-msgid "XCPU signal (over CPU time limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:620 +-msgid "XFSZ signal (over file size limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:624 +-msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:628 +-msgid "SYS signal (unknown syscall was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:633 +-msgid "Arithmetic exception" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:637 +-msgid "Division by zero" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:641 +-msgid "Illegal instruction (jump to a random address?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:647 +-msgid "Non-crash related signal" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:652 +-msgid "Stack overflow" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:656 +-msgid "Write to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:660 +-msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:666 +-#: ../src/plugins/abrt-gdb-exploitable:670 +-msgid "Jump to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:674 +-msgid "" +-"Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:693 +-msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:706 +-msgid "Likely crash reason: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:707 +-msgid "Exploitable rating (0-9 scale): " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:709 +-msgid "Current instruction: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:711 +-msgid "Exploitability analysis came up empty\n" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:142 +-msgid "" +-"& [-vs] [-F STR]... FILE PROG [ARGS]\n" +-"\n" +-"Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:154 +-msgid "Don't run PROG if STRs aren't found" +-msgstr "" +- +-#: ../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: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: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:153 +-#, c-format +-msgid " Tainted modules: %s." +-msgstr "" +- +-#: ../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: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:278 +-msgid "Create new problem directory in DIR for every oops found" +-msgstr "" +- +-#: ../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:280 +-msgid "Save the extracted information in PROBLEM" +-msgstr "" +- +-#: ../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:282 +-msgid "Throttle problem directory creation to 1 per second" +-msgstr "" +- +-#: ../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:379 +-msgid "Can't update the problem: more than one oops found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:398 +-#, c-format +-msgid "Sleeping for %d seconds" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:237 +-msgid "" +-"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" +-"\n" +-"Extract Xorg crash from FILE (or standard input)" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:245 +-msgid "Print found crash data on standard output" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:246 +-msgid "Create problem directory in DIR for every crash found" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:70 +-msgid "" +-"Retrace server can not be used, because the crash is too large. Try local " +-"retracing." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:211 +-#: ../src/plugins/abrt-retrace-client.c:398 +-#: ../src/plugins/abrt-retrace-client.c:666 +-#: ../src/plugins/abrt-retrace-client.c:832 +-#, c-format +-msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:223 +-#: ../src/plugins/abrt-retrace-client.c:412 +-#: ../src/plugins/abrt-retrace-client.c:765 +-#: ../src/plugins/abrt-retrace-client.c:849 +-#: ../src/plugins/abrt-retrace-client.c:916 +-#: ../src/plugins/abrt-retrace-client.c:1001 +-#: ../src/plugins/abrt-retrace-client.c:1060 +-#, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" +-"%s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:232 +-#: ../src/plugins/abrt-retrace-client.c:745 +-#: ../src/plugins/abrt-retrace-client.c:841 +-#: ../src/plugins/abrt-retrace-client.c:908 +-#: ../src/plugins/abrt-retrace-client.c:982 +-#: ../src/plugins/abrt-retrace-client.c:1052 +-msgid "Invalid response from server: missing HTTP message body." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:424 +-#, c-format +-msgid "" +-"Retrace server is unable to process package '%s.%s'.\n" +-"Is it a part of official '%s' repositories?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:444 +-msgid "Querying server settings" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:452 +-msgid "The server is fully occupied. Try again later." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:453 +-msgid "The server denied your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:484 +-#: ../src/plugins/abrt-retrace-client.c:500 +-#, c-format +-msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:514 +-#, c-format +-msgid "" +-"The size of your crash is %lld bytes, but the retrace server only accepts " +-"crashes smaller or equal to %lld bytes." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:534 +-msgid "The server does not support xz-compressed tarballs." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:571 +-#, c-format +-msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:575 +-msgid "The server is not able to handle your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:594 +-msgid "Unknown package sent to Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:603 +-msgid "Preparing an archive to upload" +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:629 +-#, c-format +-msgid "You are going to upload %d megabytes. Continue?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:638 +-msgid "Cancelled by user" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:673 +-#, c-format +-msgid "Uploading %d megabytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:675 +-#, c-format +-msgid "Uploading %lld bytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:699 +-#, c-format +-msgid "Uploading %d%%\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:711 +-msgid "Failed to read from a pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:724 +-#, c-format +-msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:735 +-msgid "Upload successful" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:757 +-msgid "" +-"Your problem directory is corrupted and can not be processed by the Retrace " +-"server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:759 +-msgid "" +-"The archive contains malicious files (such as symlinks) and thus can not be " +-"processed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:772 +-msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:778 +-msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:785 +-msgid "Retrace job started" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:798 +-#, c-format +-msgid "" +-"Task Id: %s\n" +-"Task Password: %s\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:856 +-msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:868 +-#, c-format +-msgid "" +-"Task Status: %s\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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1160 +-msgid "" +-"Retrace failed. Try again later and if the problem persists report this " +-"issue please." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1207 +-msgid "log to syslog" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1209 +-msgid "allow insecure connection to retrace server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1211 +-msgid "" +-"do not check whether retrace server is able to process given package before " +-"uploading the archive" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1214 +-msgid "retrace server URL" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1216 +-msgid "retrace server port" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1218 +-msgid "(debug) show received HTTP headers" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1219 +-msgid "For create and batch operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1221 +-msgid "read data from ABRT problem directory" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1223 +-msgid "read data from coredump" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1225 +-msgid "Delay for polling operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1227 +-msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1229 +-msgid "For status, backtrace, and log operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1231 +-msgid "id of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1233 +-msgid "password of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1237 +-msgid "" +-"abrt-retrace-client [options]\n" +-"Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1282 +-#: ../src/plugins/abrt-retrace-client.c:1288 +-msgid "Either problem directory or coredump is needed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1294 +-#: ../src/plugins/abrt-retrace-client.c:1302 +-#: ../src/plugins/abrt-retrace-client.c:1310 +-#: ../src/plugins/abrt-retrace-client.c:1318 +-msgid "Task id is needed." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1324 +-#, c-format +-msgid "Unknown operation: %s." +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 +-msgid "Local GNU Debugger" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 +-msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 +-msgid "" +-"Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +-msgid "Send core dump to remote retrace server for analysis" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +-#: ../src/plugins/analyze_CCpp.xml.in.h:3 +-msgid "Retrace server 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 "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 +-#: ../src/plugins/analyze_CCpp.xml.in.h:5 +-msgid "Insecure" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 +-#: ../src/plugins/analyze_CCpp.xml.in.h:6 +-msgid "Whether or not to use insecure connection" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 +-#: ../src/plugins/analyze_CCpp.xml.in.h:7 +-msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:1 +-msgid "Collect .xsession-errors" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:2 +-msgid "Save relevant lines from ~/.xsession-errors file" +-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 "" +- +-#: ../src/plugins/https-utils.c:62 +-msgid "An error occurred on the server side." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:65 +-#, c-format +-msgid "A server-side error occurred on '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:74 +-msgid "An error occurred while connecting to the server" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:77 +-#, c-format +-msgid "An error occurred while connecting to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:97 +-#, c-format +-msgid "Issuer certificate is invalid: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:100 +-#, c-format +-msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:103 +-#, c-format +-msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:107 +-msgid "Remote certificate has expired." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:110 +-#, c-format +-msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:113 +-#, c-format +-msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:149 +-#, c-format +-msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:182 +-#, c-format +-msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" +- +-#. Host exists, but has neither IPv4 nor IPv6?? +-#: ../src/plugins/https-utils.c:203 +-#, c-format +-msgid "Can't resolve host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:210 +-msgid "Failed to set socket blocking mode." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:213 +-msgid "Failed to wrap TCP socket by SSL." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:215 +-msgid "Failed to enable client handshake to SSL socket." +-msgstr "" +- +-#: ../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:233 +-#, c-format +-msgid "Can't connect to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:241 +-msgid "Failed to set certificate hook." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:247 +-msgid "Failed to set handshake callback." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:251 +-msgid "Failed to reset handshake." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:258 +-#, c-format +-msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:267 +-msgid "Failed to close SSL socket." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:332 +-#, c-format +-msgid "Malformed HTTP response header: '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:369 +-#, c-format +-msgid "Receiving of data failed: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:398 +-msgid "Malformed chunked response." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:423 +-msgid "Failed to initialize NSS." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:429 +-msgid "Failed to initialize security module." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:444 +-msgid "Failed to shutdown NSS." +-msgstr "" +- +-#: ../src/plugins/bodhi.c:375 +-msgid "List of bug ids" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:376 +-msgid "Specify a bodhi server url" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:377 +-msgid "Specify a release" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:382 +-msgid "" +-"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" +-"\n" +-"Search for updates on bodhi server" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:434 +-msgid "Searching for updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:440 +-msgid "No updates for this package found" +-msgstr "" +- +-#. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 +-msgid "Local version of the package is newer than available updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:486 +-#, c-format +-msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:85 +-msgid "" +-"& [-v] [-od] FILE...\n" +-"\n" +-"Scans files for split oops message. Can print and/or delete them." +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:97 +-msgid "Print found oopses" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:98 +-msgid "Delete files with found oopses" +-msgstr "" +- +-#: ../src/cli/abrt-cli-core.c:91 +-#, c-format +-msgid "'%s' identifies more than one problem directory" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:142 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:147 +-msgid "Remove problem directory DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:148 +-msgid "Analyze and report problem data in DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:149 +-msgid "Print information about DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:150 +-msgid "Print the count of the recent crashes" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:165 +-msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +- +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "" +- +-#: ../src/cli/list.c:188 +-msgid "List only not-reported problems" +-msgstr "" +- +-#. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 +-msgid "Show detailed report" +-msgstr "" +- +-#: ../src/cli/list.c:191 +-msgid "List only the problems more recent than specified timestamp" +-msgstr "" +- +-#: ../src/cli/list.c:192 +-msgid "List only the problems older than specified timestamp" +-msgstr "" +- +-#: ../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:235 +-msgid "& info [options] DIR..." +-msgstr "" +- +-#: ../src/cli/list.c:244 +-msgid "Text larger than this will be shown abridged" +-msgstr "" +- +-#: ../src/cli/list.c:264 +-#, c-format +-msgid "No such problem directory '%s'" +-msgstr "" +- +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "" +- +-#: ../src/cli/status.c:78 +-msgid "Print only the problem count without any message" +-msgstr "" +- +-#: ../src/cli/status.c:79 +-msgid "Print only the problems more recent than specified timestamp" +-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 "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:1 +-msgid "" +-"Send core dump to remote retrace server for analysis or perform local " +-"analysis if the remote analysis fails" +-msgstr "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. If " +-"user doens't want to upload his coredump to anywhere the event performs " +-"local analysis. Local analysis is run event if remote analysis fails. Pros: " +-"no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " +-"private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:1 +-msgid "Analyze VM core" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:3 +-msgid "" +-"Needs to install kernel debuginfo packages, which might take significant " +-"time, and take up disk space." +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:1 +-msgid "Collect GConf configuration" +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:2 +-msgid "Save configuration from application's GConf directory" +-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 "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:1 +-msgid "Collect system-wide vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:2 +-msgid "Save /etc/vimrc and /etc/gvimrc" +-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 "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:1 +-msgid "Collect yours vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:2 +-msgid "Save .vimrc and .gvimrc from your home directory" +-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 "" +- +-#: ../src/plugins/post_report.xml.in.h:1 +-msgid "Post report" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:2 +-msgid "Executed after the reporting is finished" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:3 +-msgid "Used for updating of the databases" +-msgstr "" +diff --git a/po/ka.po b/po/ka.po +index 12be4b5..7b2c4de 100644 +--- a/po/ka.po ++++ b/po/ka.po +@@ -8,10 +8,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Georgian (http://www.transifex.com/projects/p/fedora/language/ka/)\n" ++"Language-Team: Georgian (http://www.transifex.com/projects/p/fedora-abrt/language/ka/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "თარჯიმნები" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "დამალვა" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "ანგარიში" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -233,7 +319,7 @@ msgstr "" + msgid "Configuration file" + msgstr "კონფიგურაციის ფაილი" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -300,19 +386,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -397,32 +560,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "სისტემურ DBus-თან დაკავშირება ვერ მოხერხდა: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -650,6 +832,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -840,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1416,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1502,6 +1724,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/kk.po b/po/kk.po +index 3b196da..be63a50 100644 +--- a/po/kk.po ++++ b/po/kk.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Kazakh (http://www.transifex.com/projects/p/fedora/language/kk/)\n" ++"Language-Team: Kazakh (http://www.transifex.com/projects/p/fedora-abrt/language/kk/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/km.po b/po/km.po +index ec2c8c9..56a2347 100644 +--- a/po/km.po ++++ b/po/km.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Khmer (http://www.transifex.com/projects/p/fedora/language/km/)\n" ++"Language-Team: Khmer (http://www.transifex.com/projects/p/fedora-abrt/language/km/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/kn.po b/po/kn.po +index a3afcf3..7214cb8 100644 +--- a/po/kn.po ++++ b/po/kn.po +@@ -11,10 +11,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Kannada (http://www.transifex.com/projects/p/fedora-abrt/language/kn/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -75,120 +75,206 @@ msgstr "%s ಮತ್ತು ದೋಷಪತ್ತೆಯ ಮಾಹಿತಿಯನ + msgid "Can't execute '%s'" + msgstr "'%s' ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸಲಾಗಿಲ್ಲ" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "ಸೂಚನೆಯನ್ನು ಮುಚ್ಚಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "ಎಚ್ಚರಿಕೆ" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT ಇಂದ ಪತ್ತೆ ಮಾಡಲಾದ ತೊಂದರೆಗಳನ್ನು ಬಳಕೆದಾರರಿಗೆ ಸೂಚಿಸುವ ಸೂಚನಾ ಸ್ಥಳದ ಆಪ್ಲೆಟ್" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "ಶಂಕರ್ ಪ್ರಸಾದ್ " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "ನಿರ್ಗಮಿಸು (_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "ಅಡಗಿಸು" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "ಇದರ ಬಗ್ಗೆ (_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "ತೊಂದರೆಯು ಕಂಡುಬಂದಿದೆ" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "ಯಾವಾಗಲೂ ಕಡೆಗಣಿಸು" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "ತೆರೆ" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "ತೊಂದರೆಯನ್ನು ಈಗಾಗಲೆ ವರದಿ ಮಾಡಲಾಗಿದೆ" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "ಒಂದು ಗೊತ್ತಿರುವ ತೊಂದರೆಯು ಎದುರಾಗಿದೆ" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "ವರದಿ" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "ದೋಷವೊಂದು ಸಂಭವಿಸಿದೆ" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "ಒಂದು ತೊಂದರೆಯನ್ನು ವರದಿ ಮಾಡಲಾಗಿದೆ" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "ಒಂದು ಹೊಸ ತೊಂದರೆಯು ಕಂಡುಬಂದಿದೆ" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "ಸೂಚನೆಯನ್ನು ತೋರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ಮಾರ್ಗದಿಂದ ಓದಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: '%s'" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ಚಾನಲ್‌ನಲ್ಲಿ ಎನ್ಕೋಡಿಂಗ್ ಅನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ಚಾನಲ್‌ಗಾಗಿ ಬ್ಲಾಕಿಂಗ್ ಸ್ಥಿತಿಯಲ್ಲದ ಕ್ರಮವನ್ನು ಆನ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ನ ಮಾಲಿಕತ್ವವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "ಕೋಶವನ್ನು '%s' ಬರೆಯುವ ಸಲುವಾಗಿ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ " + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "ಅಧಿವೇಶನದ ವ್ಯವಸ್ಥಾಪಕಕ್ಕೆ ಸಂಪರ್ಕವನ್ನು ತೆರೆಯಲು ವಿಫಲಗೊಂಡಿದೆ: '%s', ಸೂಚನೆಯು ಮುಂದಿನ ಲಾಗಿನ್‌ನಲ್ಲಿ ಮರಳಿ ಕಾಣಿಸಿಕೊಳ್ಳುತ್ತದೆ" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "ಮುಚ್ಚು (_C)" +@@ -197,7 +283,7 @@ msgstr "ಮುಚ್ಚು (_C)" + msgid "_Defaults" + msgstr "ಪೂರ್ವನಿಯೋಜಿತಗಳು (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "ತೊಂದರೆ ವರದಿ ಸಂರಚನೆ" +@@ -236,7 +322,7 @@ msgstr "ತೊಂದರೆಯ ಕೋಶ" + msgid "Configuration file" + msgstr "ಸಂರಚನಾ ಕಡತ" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [ಆಯ್ಕೆಗಳು]" +@@ -303,19 +389,19 @@ msgstr "ಯಾವುದೆ ತೊಂದರೆ ಸ್ಥಳವು ಉಳಿದಿ + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "'%s' ಘಟಕವನ್ನು '%s' ತೊಂದರೆಯ ಕೋಶದಿಂದ ಅಳಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "'%s' ಎಂಬ ಹೆಸರು ಕಾಣೆಯಾಗಿದೆ, ಇದೇ ಹೆಸರಿನ ಇನ್ನೊಂದು ಸೇವೆಯು ಚಾಲನೆಯಲ್ಲಿಲ್ಲವೆ ಎಂದು ಪರೀಕ್ಷಿಸಿ.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM ಸೆಕೆಂಡುಗಳ ನಿಷ್ಕ್ರಿಯತೆಯ ನಂತರ ನಿರ್ಗಮಿಸು" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ಈ ಪ್ರೊಗ್ರಾಮ್ ಅನ್ನು ನಿರ್ವಾಹಕರಾಗಿ ಚಲಾಯಿಸಬೇಕು." + +@@ -390,8 +476,85 @@ msgstr "ಅಮಾನ್ಯವಾದ ಆರ್ಗ್ಯುಮೆಂಟ್‌ಗ + msgid "Unknown option value: '%s'\n" + msgstr "ಗೊತ್ತಿರದ ಆಯ್ಕೆ ಮೌಲ್ಯ: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "ಬ್ಯಾಕ್‌ಟ್ರೇಸನ್ನು ಉತ್ಪಾದಿಸಲಾಗುತ್ತಿದೆ" + +@@ -400,32 +563,32 @@ msgstr "ಬ್ಯಾಕ್‌ಟ್ರೇಸನ್ನು ಉತ್ಪಾದಿ + msgid "Can't connect to system DBus: %s" + msgstr "ವ್ಯವಸ್ಥೆಯ DBusಗೆ ಸಂಪರ್ಕ ಕಲ್ಪಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "'%s' ಅನ್ನು chown ಮಾಡಲಾಗಿಲ್ಲ: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "ತೊಂದರೆಯ ಕೋಶವನ್ನು ಅಳಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ದತ್ತಾಂಶವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ಪಟ್ಟಿಯನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "'%s' ನಲ್ಲಿ ತಾತ್ಕಾಲಿಕ ಕಡತವನ್ನು ನಿರ್ಮಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -433,7 +596,7 @@ msgid "" + msgstr "'%s' ಅನ್ನು ಬರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ. '%s' ತೊಂದರೆಯನ್ನು ಕಡೆಗಣಿಸಲಾದ '%s' ತೊಂದರೆಗಳಿಂದ ತೆಗೆದುಹಾಕಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s' ಅನ್ನು '%s' ಎಂದು ಮರುಹೆಸರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ. '%s' ತೊಂದರೆಯನ್ನು ತೆಗೆಯುವಲ್ಲಿ ವಿಫಲತೆ" +@@ -465,6 +628,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nCalculates and saves UUID of coredump in problem directory DIR" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -491,29 +673,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nCalculates and saves UUID and DUPHASH of python crash dumps" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "ಬಳಕೆ: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "{0} ಎಂಬ ಕಡತವು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "ಕೋರ್ ಇಂದ oops ಪಠ್ಯವನ್ನು ಹೊರತೆಗೆಯುವಿಕೆ" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "{0} ಅನ್ನು ಸಂಸ್ಕರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "ಸಂದೇಶವನ್ನು ಹೊರತೆಗೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops ಪಠ್ಯವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಹೊರತೆಗೆಯಲಾಗಿದೆ" + +@@ -653,6 +835,38 @@ msgstr "ಈ ಕೋಶದಲ್ಲಿನ ಕಡತಗಳನ್ನು ಅಳಿಸ + msgid "Preserve this directory" + msgstr "ಈ ಕೋಶವನ್ನು ಇರಿಸಿಕೊ" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "ಯೂಸರ್-ಸ್ಪೇಸ್ ಕೋಡ್‌ನಿಂದ ಕಳುಹಿಸಲಾದ ಸಂಕೇತ" +@@ -843,11 +1057,15 @@ msgstr "ತೊಂದರೆ ಕೋಶದ ರಚನೆಯು ಪ್ರತಿ ಸ + msgid "Print search string(s) to stdout and exit" + msgstr "ಹುಡುಕು ವಾಕ್ಯಾಂಶವನ್ನು(ಗಳನ್ನು) stdout ಗೆ ಮುದ್ರಿಸು ಮತ್ತು ನಿರ್ಗಮಿಸು" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "ತೊಂದರೆಯನ್ನು ಅಪ್‌ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ; ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ oops ಕಂಡುಬಂದಿದೆ" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d ಸೆಕೆಂಡುಗಳವರೆಗೆ ಜಡವಾಗಿರುತ್ತದೆ" +@@ -1419,31 +1637,35 @@ msgstr "ಕಂಡುಬಂದ oopses ಗಳಿಂದ ಕಡತಗಳನ್ನು + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ ತೊಂದರೆ ಕೋಶವನ್ನು ಗುರುತಿಸುತ್ತದೆ" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "ಬಳಕೆ: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "ಇನ್ನೂ ಸಹ ವರದಿ ಮಾಡದೆ ಇರುವ ತೊಂದರೆಗಳನ್ನು ತೋರಿಸು [DIR ಗಳಲ್ಲಿ]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "ತೊಂದರೆಯ ಕೋಶ DIR ಅನ್ನು ತೆಗೆದುಹಾಕು" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "ತೊಂದರೆಯ ಮಾಹಿತಿಯನ್ನು DIR ನಲ್ಲಿ ವಿಶ್ಲೇಷಿಸು ಹಾಗು ವರದಿ ಮಾಡು" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR ಬಗೆಗಿನ ಮಾಹಿತಿಯನ್ನು ಮುದ್ರಿಸು" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "ಇತ್ತೀಚಿನ ಕ್ರಾಶ್‌ಗಳ ಎಣಿಕೆಯನ್ನು ಮುದ್ರಿಸಲಾಗುತ್ತಿದೆ" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ 'abrt-cli COMMAND --help' ಅನ್ನು ನೋಡಿ" + +@@ -1505,6 +1727,45 @@ msgstr "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿ + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT ಗೆ %u ತೊಂದರೆ(ಗಳು) ಕಂಡುಬಂದಿದೆ. (ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ ಇದನ್ನು ಚಲಾಯಿಸಿ: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ko.po b/po/ko.po +index 1e93de7..ff8bc41 100644 +--- a/po/ko.po ++++ b/po/ko.po +@@ -12,10 +12,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Korean (http://www.transifex.com/projects/p/fedora-abrt/language/ko/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -76,120 +76,206 @@ msgstr "%s 및 진단 데이터가 전송되었습니다 " + msgid "Can't execute '%s'" + msgstr "'%s'을(를) 실행할 수 없습니다 " + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "통지를 종료할 수 없음: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "경고" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT가 감지한 문제를 사용자에게 통지하기 위한 통지 영역 애플릿" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "김은주\n오현석" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "종료 (_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "숨기기" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "ABRT에 대해 (_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "문제가 감지되었습니다" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "영원히 무시" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "열기 " + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "이미 문제가 보고되었습니다 " + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "이미 알려진 문제가 발생했습니다 " + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "보고 " + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "한 가지 문제가 발생했습니다 " + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "문제가 보고되었습니다 " + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "새로운 문제가 발생했습니다 " + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "통지를 표시할 수 없음: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio 채널에서 읽을 수 없음: '%s'" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio 채널에서 인코딩을 설정할 수 없음: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio 채널의 비 차단 모드를 활성화할 수 없습니다: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'의 소유 권한을 갖을 수 없음 " + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s'을 작성하기 위해 디렉토리를 열 수 없습니다 " + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "세션 관리자로의 연결을 오픈하는데 실패했습니다: '%s', 다음에 로그인할 때 알림이 다시 나타날 수 있습니다 " + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "종료 (_C)" +@@ -198,7 +284,7 @@ msgstr "종료 (_C)" + msgid "_Defaults" + msgstr "기본값 (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "문제 보고 설정 " +@@ -237,7 +323,7 @@ msgstr "문제가 있는 디렉토리 " + msgid "Configuration file" + msgstr "설정 파일 " + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -304,19 +390,19 @@ msgstr "남은 문제 공간이 없음 " + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "문제 디렉토리 '%s'에서 요소 '%s'를 삭제할 수 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "'%s'의 이름이 분실되었습니다. 이 이름을 갖는 다른 서비스가 실행되고 있지 않은지 확인하십시오.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM 초 동안 동작하지 않을 경우 종료합니다 " + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "이 프로그램은 root로 실행해야 합니다." + +@@ -391,8 +477,85 @@ msgstr "잘못된 인수 개수 " + msgid "Unknown option value: '%s'\n" + msgstr "알 수 없는 옵션 값: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "백트레이스 생성 " + +@@ -401,32 +564,32 @@ msgstr "백트레이스 생성 " + msgid "Can't connect to system DBus: %s" + msgstr "시스템 DBus에 연결할 수 없음: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "'%s'의 chown할 수 없음: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "문제 디렉토리 삭제 실패: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus에서 문제 데이터를 가져올 수 없음: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus에서 문제 목록을 가져올 수 없음: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "임시 파일 '%s'을 생성할 수 없습니다" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -434,7 +597,7 @@ msgid "" + msgstr "'%s'에 작성할 수 없습니다. 무시된 오류 '%s'에서 오류 '%s'가 제거되지 않습니다 " + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s'을 '%s'로 이름 변경할 수 없습니다. 오류 '%s' 를 제거 실패했습니다 " +@@ -466,6 +629,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\n문제 디렉토리 DIR에 있는 코어 덤프의 UUID를 계산 및 저장합니다 " + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -492,29 +674,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "python 크래시 덤프의 UUID 및 DUPHASH를 계산하고 저장합니다 " + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "사용법: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "파일 {0}이 존재하지 않음 " + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "코어에서 oops 텍스트를 추출합니다 " + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "{0}을(를) 처리할 수 없습니다:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "oops 메세지를 추출할 수 없습니다: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops 텍스트가 성공적으로 추출되었습니다 " + +@@ -654,6 +836,38 @@ msgstr "디렉토리 내에 있는 파일 삭제 " + msgid "Preserve this directory" + msgstr "이 디렉토리를 보관합니다 " + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "사용자 영역 코드에 의해 전송된 신호 " +@@ -844,11 +1058,15 @@ msgstr "1 초당 한 개로 문제 디렉토리 생성 제한 " + msgid "Print search string(s) to stdout and exit" + msgstr "검색 문자열을 표준 출력에 인쇄하고 종료 " + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "문제를 업데이트할 수 없습니다: 하나 이상의 oops 발견 " + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d 초 동안 절전 " +@@ -1420,31 +1638,35 @@ msgstr "검색된 oopses가 있는 파일을 삭제합니다 " + msgid "'%s' identifies more than one problem directory" + msgstr "'%s'가 하나 이상의 문제 디렉토리를 확인했습니다 " + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "사용법: abrt-cli [--version] COMMAND [DIR]... " + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "아직 보고되지 않은 문제를 나열합니다 [DIR 에]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "문제 디렉토리 DIR 제거 " + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "DIR에 문제가 있는 데이터를 분석 및 보고 " + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR에 관한 정보 출력 " + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "최근 충돌 횟수를 출력" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "보다 자세한 내용은 'abrt-cli COMMAND --help'에서 참조하십시오 " + +@@ -1506,6 +1728,45 @@ msgstr "지정된 타임 스탬프 보다 최신의 문제만 출력" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT에 의해 '%u' 건의 문제가 발견되었습니다. (다음을 실행하여 보다 자세한 내용을 확인합니다: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ks.po b/po/ks.po +index 7e00c58..4a9600c 100644 +--- a/po/ks.po ++++ b/po/ks.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Kashmiri (http://www.transifex.com/projects/p/fedora/language/ks/)\n" ++"Language-Team: Kashmiri (http://www.transifex.com/projects/p/fedora-abrt/language/ks/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ku.po b/po/ku.po +index c01261a..5b7bce1 100644 +--- a/po/ku.po ++++ b/po/ku.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Kurdish (http://www.transifex.com/projects/p/fedora/language/ku/)\n" ++"Language-Team: Kurdish (http://www.transifex.com/projects/p/fedora-abrt/language/ku/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ky.po b/po/ky.po +index 87c4f7f..32b2a71 100644 +--- a/po/ky.po ++++ b/po/ky.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Kirgyz (http://www.transifex.com/projects/p/fedora/language/ky/)\n" ++"Language-Team: Kirgyz (http://www.transifex.com/projects/p/fedora-abrt/language/ky/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/la.po b/po/la.po +index 2ecb0a4..cf8f549 100644 +--- a/po/la.po ++++ b/po/la.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Latin (http://www.transifex.com/projects/p/fedora/language/la/)\n" ++"Language-Team: Latin (http://www.transifex.com/projects/p/fedora-abrt/language/la/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/lo.po b/po/lo.po +index a8ae66c..85f92ad 100644 +--- a/po/lo.po ++++ b/po/lo.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Lao (http://www.transifex.com/projects/p/fedora/language/lo/)\n" ++"Language-Team: Lao (http://www.transifex.com/projects/p/fedora-abrt/language/lo/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/lt.po b/po/lt.po +index a953cb3..318aa8a 100644 +--- a/po/lt.po ++++ b/po/lt.po +@@ -8,10 +8,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Lithuanian (http://www.transifex.com/projects/p/fedora/language/lt/)\n" ++"Language-Team: Lithuanian (http://www.transifex.com/projects/p/fedora-abrt/language/lt/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "Nepavyko paleisti „%s“" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nepavyksta užverti pranešimo: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Įspėjimas" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "išvertė:\nAurimas Černius " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "_Išeiti" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Slėpti" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "_Apie" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Aptikta problema" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Visada nepaisyti" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Atverti" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "Apie šią problemą jau pranešta" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Pranešti" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Kilo problema" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Apie šią problemą jau pranešta" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Kilo nauja problema" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nepavyksta parodyti pranešimo: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Nepavyksta nustatyti gio kanalo koduotės: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nepavyko tapti „%s“ savininku" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nepavyksta atverti katalogo rašymui „%s“" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, 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:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "_Numatytieji" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Pranešimo apie problemas konfigūracija" +@@ -233,7 +319,7 @@ msgstr "Problemų katalogas" + msgid "Configuration file" + msgstr "Konfigūracijos failas" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [parinktys]" +@@ -300,19 +386,19 @@ msgstr "Nėra likusios problemų vietos" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nepavyksta ištrinti elemento „%s“ iš problemų katalogo „%s“" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "Vardas „%s“ buvo prarastas, patikrinkite, ar neveikia kita tarnyba su šiuo vardu.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Išeiti po NUM sekundžių neaktyvumo" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Šią programą reikia paleisti root naudotojo teisėmis." + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Generuoti pėdsaką" + +@@ -397,32 +560,32 @@ msgstr "Generuoti pėdsaką" + msgid "Can't connect to system DBus: %s" + msgstr "Nepavyko prisijungti prie sistemos DBus: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Nepavyko chown „%s“: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Nepavyko ištrinti problemos katalogo: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Nepavyko gauti problemos duomenų iš abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Nepavyko sukurti laikinojo failo „%s“" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,7 @@ msgid "" + msgstr "Nepavyko įrašyti į „%s“. Problema „%s“ nebus pašalinta iš nepaisomų problemų „%s“" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "Nepavyko pervadinti „%s“ į „%s“. Nepavyko pašalinti problemos „%s“" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d KAT\n\nSuskaičiuoja ir įrašo pagrindo išklotinės UUID į problemos katalogą KAT" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d KAT\n\nSuskaičiuoja ir įrašo python lūžimų išklotinių UUID ir DUPHASH" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "Naudojimas: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Failo {0} nėra" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "Išgaunamas oops tekstas iš išklotinės" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "Nepavyksta apdoroti {0}:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "Nepavyksta išgauti oops pranešimo: „{0}“" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops tekstas sėkmingai išgautas" + +@@ -650,6 +832,38 @@ msgstr "Ištrinti failus šiame kataloge" + msgid "Preserve this directory" + msgstr "Palikti šį katalogą" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "Signalą atsiunti naudotojo srities kodas" +@@ -840,11 +1054,15 @@ msgstr "Nustatyti problemų aplankų kūrimą į 1 per sekundę" + 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:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + 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:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Miegama %d sekundžių" +@@ -1416,31 +1634,35 @@ msgstr "Ištrinti failus su rastais oops" + msgid "'%s' identifies more than one problem directory" + msgstr "„%s“ nurodo daugiau nei vieną problemos aplanką" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Naudojimas: abrt-cli [--version] KOMANDA [KAT]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Išvardinti dar nepraneštas klaidas [kataloguose]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Pašalinti problemos katalogą KAT" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analizuoti ir pranešti KAT problemos duomenis" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Atspausdinti informaciją apie KAT" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Atspausdinti nesenų lūžimų skaičių" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Daugiau informacijos gausite įvykdę „abrt-cli KOMANDAS --help“" + +@@ -1502,6 +1724,45 @@ msgstr "Atspausdinti tik problemas, naujesnes nei nurodyta laiko žyma" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT aptiko %u problemą(as). Daugiau informacijos gausite įvykdę: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/lt_LT.po b/po/lt_LT.po +deleted file mode 100644 +index 78c421f..0000000 +--- a/po/lt_LT.po ++++ /dev/null +@@ -1,1517 +0,0 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: +-msgid "" +-msgstr "" +-"Project-Id-Version: ABRT\n" +-"Report-Msgid-Bugs-To: http://bugzilla.redhat.com/\n" +-"POT-Creation-Date: 2013-08-20 12:59+0200\n" +-"PO-Revision-Date: 2013-08-20 10:59+0000\n" +-"Last-Translator: Jiří Moskovčák \n" +-"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/fedora/language/lt_LT/)\n" +-"MIME-Version: 1.0\n" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Content-Transfer-Encoding: 8bit\n" +-"Language: lt_LT\n" +-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +- +-#: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "Automatinių pranešimų apie klaidas įrankis" +- +-#: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "ABRT pranešimų įtaisas" +- +-#: ../src/applet/applet.c:99 +-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 NetworkManager DBus service is not available. +-#: ../src/applet/applet.c:197 +-#, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:221 +-#, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:325 +-msgid "A problem has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:327 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:485 ../src/plugins/abrt-retrace-client.c:129 +-#: ../src/plugins/abrt-retrace-client.c:166 +-#, c-format +-msgid "Can't execute '%s'" +-msgstr "Nepavyksta įvykdyti „%s“" +- +-#: ../src/applet/applet.c:559 ../src/applet/applet.c:621 +-#, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:661 ../src/applet/applet.c:663 +-msgid "Warning" +-msgstr "Perspėjimas" +- +-#: ../src/applet/applet.c:711 +-msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "Pranešimų vietos įtaisas, kuris praneša apie ABRT aptiktas problemas" +- +-#: ../src/applet/applet.c:727 +-msgid "translator-credits" +-msgstr "Išvertė:Aurimas Černius" +- +-#: ../src/applet/applet.c:735 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:737 +-msgid "Hide" +-msgstr "Slėpti" +- +-#: ../src/applet/applet.c:739 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:807 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:854 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#. +-#: ../src/applet/applet.c:863 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:867 +-msgid "A Known Problem has Occurred" +-msgstr "" +- +-#. Problem has not yet been 'autoreported' and can be +-#. * 'autoreported' on user request. +-#. +-#: ../src/applet/applet.c:875 ../src/applet/applet.c:909 +-msgid "Report" +-msgstr "Pranešti" +- +-#: ../src/applet/applet.c:879 +-msgid "A Problem has Occurred" +-msgstr "Kilo problema" +- +-#: ../src/applet/applet.c:905 +-msgid "A Problem has been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:913 +-msgid "A New Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:923 +-#, c-format +-msgid "Can't show notification: %s" +-msgstr "" +- +-#. TODO: Terminate child's process? +-#: ../src/applet/applet.c:953 +-#, c-format +-msgid "Can't read from gio channel: '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1035 +-#, c-format +-msgid "Can't set encoding on gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1039 +-#, c-format +-msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1071 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1081 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1366 +-#, c-format +-msgid "" +-"Failed to open connection to session manager: '%s', notification may " +-"reappear on the next login" +-msgstr "" +- +-#: ../src/applet/applet.c:1503 +-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:66 +-msgid "Apply setting changes" +-msgstr "" +- +-#. xalign +-#. yalign +-#. xscale +-#. yscale +-#. expand +-#. fill +-#. padding +-#: ../src/configuration-gui/system-config-abrt.c:69 +-#: ../src/configuration-gui/system-config-abrt.c:147 +-msgid "_Apply" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:70 +-msgid "_Discard" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:71 +-msgid "_Cancel" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:129 +-msgid "_Close" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:138 +-msgid "_Defaults" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:183 +-#: ../src/configuration-gui/main.c:46 +-msgid "Problem Reporting Configuration" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:86 +-msgid "About System Config ABRT" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:116 +-msgid "About" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:117 +-msgid "Quit" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:365 +-msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" +-"\n" +-"Query package database and save package and component name" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:377 +-#: ../src/plugins/abrt-action-analyze-backtrace.c:65 +-#: ../src/plugins/abrt-action-analyze-c.c:90 +-#: ../src/plugins/abrt-action-analyze-oops.c:48 +-#: ../src/plugins/abrt-action-analyze-xorg.c:82 +-#: ../src/plugins/abrt-action-analyze-python.c:47 +-#: ../src/plugins/abrt-action-generate-backtrace.c:54 +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 +-#: ../src/plugins/abrt-dedup-client.c:104 +-msgid "Problem directory" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:378 +-msgid "Configuration file" +-msgstr "Konfigūracijos failas" +- +-#: ../src/daemon/abrt-server.c:780 ../src/dbus/abrt-dbus.c:777 +-#: ../src/daemon/abrtd.c:610 +-msgid "& [options]" +-msgstr "" +- +-#: ../src/daemon/abrt-server.c:791 +-msgid "Use NUM as client uid" +-msgstr "" +- +-#: ../src/daemon/abrt-server.c:792 ../src/plugins/abrt-watch-log.c:154 +-#: ../src/plugins/abrt-dump-oops.c:258 ../src/plugins/abrt-dump-xorg.c:245 +-msgid "Log to syslog" +-msgstr "Įrašyti į syslog" +- +-#: ../src/daemon/abrt-server.c:793 ../src/daemon/abrtd.c:626 +-msgid "Add program names to log" +-msgstr "Pridėti programų pavadinimus į žurnalą" +- +-#: ../src/dbus/abrt-dbus.c:123 +-msgid "Unknown error" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:188 +-#, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:223 +-#, c-format +-msgid "'%s' element can't be modified" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 +-msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:580 +-#, c-format +-msgid "Can't get size of '%s'" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:595 +-msgid "No problem space left" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:627 +-#, c-format +-msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:759 +-#, c-format +-msgid "" +-"The name '%s' has been lost, please check if other service owning the name " +-"is not running.\n" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:786 ../src/daemon/abrtd.c:625 +-msgid "Exit after NUM seconds of inactivity" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:804 +-msgid "This program must be run as root." +-msgstr "" +- +-#: ../src/daemon/abrtd.c:577 +-msgid "" +-"The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" +- +-#: ../src/daemon/abrtd.c:623 +-msgid "Do not daemonize" +-msgstr "Neveikti tarnybos veiksena" +- +-#: ../src/daemon/abrtd.c:624 +-msgid "Log to syslog even with -d" +-msgstr "Įrašyti į syslog net naudojant -d" +- +-#: ../src/daemon/abrt-handle-event.c:360 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:368 +-msgid "Run EVENT on DIR" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:369 +-msgid "Communicate directly to the user" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ../src/plugins/abrt-action-analyze-vmcore.in:127 +-msgid "Generating backtrace" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:41 +-#, c-format +-msgid "Can't connect to system DBus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:65 +-#, c-format +-msgid "Can't chown '%s': %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:92 +-#, c-format +-msgid "Deleting problem directory failed: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:126 +-#, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:160 +-#, c-format +-msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/ignored_problems.c:236 +-#, c-format +-msgid "Can't create temporary file '%s'" +-msgstr "" +- +-#: ../src/lib/ignored_problems.c:253 +-#, c-format +-msgid "" +-"Can't write to '%s'. Problem '%s' will not be removed from the ignored " +-"problems '%s'" +-msgstr "" +- +-#. Something nefarious happened +-#: ../src/lib/ignored_problems.c:267 +-#, c-format +-msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-msgid "" +-"& [options] -d DIR\n" +-"\n" +-"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" +-"and identifies crash function in problem directory DIR" +-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:102 +-#, c-format +-msgid "Backtrace parsing failed for %s" +-msgstr "Nepavyko perskaityti %s pėdsako" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:158 +-msgid "Crash thread not found" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-c.c:79 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-oops.c:37 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-xorg.c:71 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH for xorg problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-xorg.c:111 +-#, c-format +-msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-python.c:36 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 +-msgid "" +-"Usage: {0} [-v[v]] [--core=VMCORE] [--tmpdir=TMPDIR] [--cache=CACHEDIR]" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:63 +-msgid "File {0} doesn't exist" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:96 +-msgid "{0} is not a valid vmcore" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:102 +-msgid "Required vmlinux debuginfo is installed in {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:108 +-msgid "Installing kernel debuginfo(s)" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:115 +-#: ../src/plugins/abrt-action-analyze-vmcore.in:124 +-msgid "Can't download required debuginfo" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:41 +-msgid "" +-"& [options] -d DIR\n" +-"\n" +-"Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:55 +-msgid "Additional debuginfo directories" +-msgstr "Papildomi derinimo informacijos katalogai" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:56 +-msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "Išjungti gdb, jei jis veikia ilgiau nei NUM sekudž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:102 +-#, c-format +-msgid "Backtrace is generated and saved, %u bytes" +-msgstr "Pėdsakas sugeneruotas ir išsaugotas, %u baitų" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 +-msgid "" +-"& [-v] [-r] -d DIR\n" +-"\n" +-"Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +-msgid "Do not hash fingerprints" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 +-msgid "Generating core_backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 +-msgid "Error: GDB did not return any data" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 +-#, c-format +-msgid "Error: %s" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:50 +-msgid "Exiting on user command" +-msgstr "Išeinama po naudotojo komandos" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:86 +-#, c-format +-msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" +-" [-e, --exact=PATH]\n" +-"\n" +-"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +-"to CACHEDIR, using TMPDIR as temporary staging area.\n" +-"Old 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" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:171 +-msgid "Can't open {0}: {1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 +-msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:217 +-msgid "Missing debuginfo file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:220 +-msgid "All debuginfo files are available" +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 +-msgid "" +-"Ok to upload core dump? (It may contain sensitive data). If your answer is " +-"'No', a stack trace will be generated locally. (It may download a huge " +-"amount of data)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 +-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 "" +- +-#: ../src/plugins/abrt-action-trim-files.c:222 +-msgid "" +-"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" +-"\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" +-"FILEs are preserved (never deleted)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:236 +-msgid "Delete whole problem directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:237 +-msgid "Delete files inside this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:238 +-msgid "Preserve this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-dedup-client.c:96 +-#: ../src/plugins/abrt-retrace-client.c:1142 +-msgid "log to syslog" +-msgstr "įrašyti į syslog" +- +-#: ../src/plugins/abrt-dedup-client.c:98 +-msgid "allow insecure connection to dedup server" +-msgstr "" +- +-#: ../src/plugins/abrt-dedup-client.c:100 +-msgid "dedup server URL" +-msgstr "" +- +-#: ../src/plugins/abrt-dedup-client.c:102 +-msgid "dedup server port" +-msgstr "" +- +-#: ../src/plugins/abrt-dedup-client.c:106 +-#: ../src/plugins/abrt-retrace-client.c:1153 +-msgid "(debug) show received HTTP headers" +-msgstr "(derinimas) rodyti gautas HTTP antraštes" +- +-#: ../src/plugins/abrt-dedup-client.c:110 +-msgid "abrt-dedup-client component backtrace_file [options]" +-msgstr "" +- +-#: ../src/plugins/abrt-dedup-client.c:153 +-msgid "'" +-msgstr "" +- +-#: ../src/plugins/abrt-dedup-client.c:157 +-#, c-format +-msgid "Forbidden component name: '%s'." +-msgstr "" +- +-#: ../src/plugins/abrt-dedup-client.c:202 +-#, c-format +-msgid "Failed to send HTTP request of length %d: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:529 +-msgid "Signal sent by userspace code" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:533 +-msgid "Signal sent by timer/IO/async event" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:541 +-msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:544 +-msgid "Signal due to write to closed pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:550 +-#: ../src/plugins/abrt-gdb-exploitable:575 +-msgid "Signal sent by keyboard" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:554 +-#: ../src/plugins/abrt-gdb-exploitable:579 +-msgid "Job control signal sent by kernel" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:558 +-#: ../src/plugins/abrt-gdb-exploitable:587 +-msgid "Signal sent by window resize" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:562 +-#: ../src/plugins/abrt-gdb-exploitable:591 +-msgid "Signal sent by alarm(N) expiration" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:583 +-msgid "Signal due to write to broken pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:607 +-msgid "ABRT signal (abort() was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:616 +-msgid "XCPU signal (over CPU time limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:620 +-msgid "XFSZ signal (over file size limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:624 +-msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:628 +-msgid "SYS signal (unknown syscall was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:633 +-msgid "Arithmetic exception" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:637 +-msgid "Division by zero" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:641 +-msgid "Illegal instruction (jump to a random address?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:647 +-msgid "Non-crash related signal" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:652 +-msgid "Stack overflow" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:656 +-msgid "Write to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:660 +-msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:666 +-#: ../src/plugins/abrt-gdb-exploitable:670 +-msgid "Jump to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:674 +-msgid "" +-"Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:693 +-msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:706 +-msgid "Likely crash reason: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:707 +-msgid "Exploitable rating (0-9 scale): " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:709 +-msgid "Exploitability analysis came up empty\n" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:143 +-msgid "" +-"& [-vs] [-F STR]... FILE PROG [ARGS]\n" +-"\n" +-"Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:155 +-msgid "Don't run PROG if STRs aren't found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:137 +-#, 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:145 +-#, c-format +-msgid " Tainted modules: %s." +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:240 +-msgid "" +-"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" +-"\n" +-"Extract oops from FILE (or standard input)" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:259 +-msgid "Print found oopses on standard output" +-msgstr "Išspausdinti oops į standartinę išvestį" +- +-#. 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:263 +-msgid "Create new problem directory in DIR for every oops found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:264 ../src/plugins/abrt-dump-xorg.c:248 +-msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:265 +-msgid "Save the extracted information in PROBLEM" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:266 ../src/plugins/abrt-dump-xorg.c:249 +-msgid "Make the problem directory world readable" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:267 ../src/plugins/abrt-dump-xorg.c:250 +-msgid "Print search string(s) to stdout and exit" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:353 +-msgid "Cannot update the problem because of no oops found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:366 +-msgid "Cannot update the problem because of more oopses were found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:238 +-msgid "" +-"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" +-"\n" +-"Extract Xorg crash from FILE (or standard input)" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:246 +-msgid "Print found crash data on standard output" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:247 +-msgid "Create problem directory in DIR for every crash found" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:68 +-msgid "" +-"Retrace server can not be used, because the crash is too large. Try local " +-"retracing." +-msgstr "" +- +-#. Hopefully, by this time child emitted more meaningful +-#. * error message. But just in case it didn't: +-#. +-#: ../src/plugins/abrt-retrace-client.c:101 +-#: ../src/plugins/abrt-retrace-client.c:180 +-#: ../src/plugins/abrt-retrace-client.c:184 +-msgid "Can't create temporary file in " +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:209 +-#: ../src/plugins/abrt-retrace-client.c:405 +-#: ../src/plugins/abrt-retrace-client.c:684 +-#: ../src/plugins/abrt-retrace-client.c:861 +-#, c-format +-msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "Nepavyko išsiųsti %d ilgio HTTP antraštės: NSS klaida %d" +- +-#: ../src/plugins/abrt-retrace-client.c:221 +-#: ../src/plugins/abrt-retrace-client.c:419 +-#: ../src/plugins/abrt-retrace-client.c:783 +-#: ../src/plugins/abrt-retrace-client.c:878 +-#: ../src/plugins/abrt-retrace-client.c:956 +-#: ../src/plugins/abrt-retrace-client.c:1024 +-#, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" +-"%s" +-msgstr "Nelauktas HTTP atsakas iš serverio: %d\n%s" +- +-#: ../src/plugins/abrt-retrace-client.c:230 +-#: ../src/plugins/abrt-retrace-client.c:763 +-#: ../src/plugins/abrt-retrace-client.c:870 +-#: ../src/plugins/abrt-retrace-client.c:948 +-#: ../src/plugins/abrt-retrace-client.c:1016 +-msgid "Invalid response from server: missing HTTP message body." +-msgstr "Netinkamas serverio atsakas: trūkstamas HTTP pranešimo pagridas." +- +-#: ../src/plugins/abrt-retrace-client.c:431 +-#, c-format +-msgid "" +-"Retrace server is unable to process package '%s.%s'.\n" +-"Is it a part of official '%s' repositories?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:454 +-msgid "Querying server settings" +-msgstr "Užklausiama serverio nustatymų" +- +-#: ../src/plugins/abrt-retrace-client.c:462 +-msgid "The server is fully occupied. Try again later." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:463 +-msgid "The server denied your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:494 +-#: ../src/plugins/abrt-retrace-client.c:510 +-#, c-format +-msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:524 +-#, c-format +-msgid "" +-"The size of your crash is %lld bytes, but the retrace server only accepts " +-"crashes smaller or equal to %lld bytes." +-msgstr "Jūsų lūžimo dydis yra %lld baitų, bet trasavimo serveris priima tik iki %lld baitų." +- +-#: ../src/plugins/abrt-retrace-client.c:544 +-msgid "The server does not support xz-compressed tarballs." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:581 +-#, c-format +-msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:585 +-msgid "The server is not able to handle your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:604 +-msgid "Unknown package sent to Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:613 +-msgid "Preparing an archive to upload" +-msgstr "Ruošiamas archyvas nusiuntimui" +- +-#: ../src/plugins/abrt-retrace-client.c:626 +-#, c-format +-msgid "" +-"The size of your archive is %lld bytes, but the retrace server only accepts " +-"archives smaller or equal %lld bytes." +-msgstr "Jūsų archyvo dydis yra %lld baitų, bet trasavimo serveris priima tik iki %lld baitų." +- +-#: ../src/plugins/abrt-retrace-client.c:639 +-#, c-format +-msgid "You are going to upload %d megabytes. Continue?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:648 +-msgid "Cancelled by user" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:691 +-#, c-format +-msgid "Uploading %d megabytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:693 +-#, c-format +-msgid "Uploading %lld bytes\n" +-msgstr "Nusinčiama %lld baitų\n" +- +-#: ../src/plugins/abrt-retrace-client.c:717 +-#, c-format +-msgid "Uploading %d%%\n" +-msgstr "Nusiunčiama %d%%\n" +- +-#: ../src/plugins/abrt-retrace-client.c:729 +-msgid "Failed to read from a pipe" +-msgstr "Nepavyko skaityti iš kanalo" +- +-#: ../src/plugins/abrt-retrace-client.c:742 +-#, c-format +-msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "Nepavyko išsiųsti duomenų: NSS klaida %d (%s): %s" +- +-#: ../src/plugins/abrt-retrace-client.c:753 +-msgid "Upload successful" +-msgstr "Nusiuntimas sėkmingas" +- +-#: ../src/plugins/abrt-retrace-client.c:775 +-msgid "" +-"Your problem directory is corrupted and can not be processed by the Retrace " +-"server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:777 +-msgid "" +-"The archive contains malicious files (such as symlinks) and thus can not be " +-"processed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:790 +-msgid "Invalid response from server: missing X-Task-Id." +-msgstr "Netinkamas atsakas iš serverio: trūkstamas X užduoties Id." +- +-#: ../src/plugins/abrt-retrace-client.c:796 +-msgid "Invalid response from server: missing X-Task-Password." +-msgstr "Netinkamas atsakas iš serverio: trūkstamas X užduoties slaptažodis." +- +-#: ../src/plugins/abrt-retrace-client.c:803 +-msgid "Retrace job started" +-msgstr "Trasavimo darbas pradėtas" +- +-#: ../src/plugins/abrt-retrace-client.c:816 +-#, c-format +-msgid "" +-"Task Id: %s\n" +-"Task Password: %s\n" +-msgstr "Užduoties Id: %s\nUžduoties slaptažodis: %s\n" +- +-#: ../src/plugins/abrt-retrace-client.c:885 +-msgid "Invalid response from server: missing X-Task-Status." +-msgstr "Netinkamas serverio atsakas: trūksta X užduoties būsenos." +- +-#: ../src/plugins/abrt-retrace-client.c:897 +-#, c-format +-msgid "" +-"Task Status: %s\n" +-"%s\n" +-msgstr "Užduoties būsena: %s\n%s\n" +- +-#: ../src/plugins/abrt-retrace-client.c:939 +-#: ../src/plugins/abrt-retrace-client.c:1007 +-#, c-format +-msgid "Failed to send HTTP header of length %d: NSS error %d." +-msgstr "Nepavyko išsiųsti %d ilgio HTTP antraštės: NSS klaida %d." +- +-#: ../src/plugins/abrt-retrace-client.c:1096 +-msgid "" +-"Retrace failed. Try again later and if the problem persists report this " +-"issue please." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1144 +-msgid "allow insecure connection to retrace server" +-msgstr "leisti nesaugiam ryšiui trasuoti serverį" +- +-#: ../src/plugins/abrt-retrace-client.c:1146 +-msgid "" +-"do not check whether retrace server is able to process given package before " +-"uploading the archive" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1149 +-msgid "retrace server URL" +-msgstr "trasavimo serverio URL" +- +-#: ../src/plugins/abrt-retrace-client.c:1151 +-msgid "retrace server port" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1154 +-msgid "For create and batch operations" +-msgstr "Kūrimo ir grupiniams veiksmams" +- +-#: ../src/plugins/abrt-retrace-client.c:1156 +-msgid "read data from ABRT problem directory" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1158 +-msgid "read data from coredump" +-msgstr "skaityti duomenis iš išklotinės" +- +-#: ../src/plugins/abrt-retrace-client.c:1160 +-msgid "Delay for polling operations" +-msgstr "Delsti dėl užklausų veiksmų" +- +-#: ../src/plugins/abrt-retrace-client.c:1162 +-msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1164 +-msgid "For status, backtrace, and log operations" +-msgstr "Būsenai, pėdsakui ir žurnalo veiksmams" +- +-#: ../src/plugins/abrt-retrace-client.c:1166 +-msgid "id of your task on server" +-msgstr "jūsų užduoties id serveryje" +- +-#: ../src/plugins/abrt-retrace-client.c:1168 +-msgid "password of your task on server" +-msgstr "jūsų užduoties slaptažodis serveryje" +- +-#: ../src/plugins/abrt-retrace-client.c:1172 +-msgid "" +-"abrt-retrace-client [options]\n" +-"Operations: create/status/backtrace/log/batch" +-msgstr "abrt-retrace-client [parinktys]\nVeiksmai: create/status/backtrace/log/batch" +- +-#: ../src/plugins/abrt-retrace-client.c:1218 +-#: ../src/plugins/abrt-retrace-client.c:1224 +-msgid "Either problem directory or coredump is needed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1230 +-#: ../src/plugins/abrt-retrace-client.c:1238 +-#: ../src/plugins/abrt-retrace-client.c:1246 +-msgid "Task id is needed." +-msgstr "Reikalingas užduoties id." +- +-#: ../src/plugins/abrt-retrace-client.c:1232 +-#: ../src/plugins/abrt-retrace-client.c:1240 +-#: ../src/plugins/abrt-retrace-client.c:1248 +-msgid "Task password is needed." +-msgstr "Reikalingas užduoties slaptažodis." +- +-#: ../src/plugins/abrt-retrace-client.c:1252 +-#, c-format +-msgid "Unknown operation: %s." +-msgstr "Nežinomas veiksmas: %s." +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 +-msgid "Local GNU Debugger" +-msgstr "Vietinė GNU derintuvė" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 +-msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Parsiųsti derinimo informacijos paketus ir sugeneruoti pėdsaką vietoje naudojant GDB" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 +-msgid "" +-"Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Reikalauja parsiųsti derinimo informacijos paketus, o tai gali užtrukti ir užimti nemažai disko vietos. Tačiau, skirtingai nuo RetraceServer, nesiunčia išklotinių į nutolusius kompiuterius." +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +-msgid "Send core dump to remote retrace server for analysis" +-msgstr "Siųsti išklotinę į nuotolinį trasavimo serverį analizei" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Nusiunčia išklotinę į serverį, kuris sugeneruoja pėdsaką ir jį grąžina. Pranašumai: nereikia parsiųsti derinimo informacijos. Trasavimo serverio derinimo duomenų bazė yra pilnesnė. Trasavimo serveris gali sugeneruoti geresnius pėdsakus. Trūkumai: išklotinė, kurią nusiųsite, turi visus lūžusios programos duomenis, įskaitant privačius, jei tokie yra." +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +-#: ../src/plugins/analyze_CCpp.xml.in.h:3 +-msgid "Retrace server URL" +-msgstr "Trasavimo serverio URL" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:4 +-#: ../src/plugins/analyze_CCpp.xml.in.h:4 +-msgid "Address of the retrace server" +-msgstr "Trasavimo serverio adresas" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 +-#: ../src/plugins/analyze_CCpp.xml.in.h:5 +-msgid "Insecure" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 +-#: ../src/plugins/analyze_CCpp.xml.in.h:6 +-msgid "Whether or not to use insecure connection" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 +-#: ../src/plugins/analyze_CCpp.xml.in.h:7 +-msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:1 +-msgid "Collect .xsession-errors" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:2 +-msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "Išsaugoti tinkamas eilutes iš ~/.xsession-errors failo" +- +-#: ../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 "Skaito ~/.xsession-errors failą ir išsaugo eilutes, kurios turi programos pavadinimą. Rezultatas išsaugomas kaip „xsession_errors“ elementas." +- +-#: ../src/plugins/https-utils.c:47 +-msgid "An error occurred on the server side." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:50 +-#, c-format +-msgid "A server-side error occurred on '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:59 +-msgid "An error occurred while connecting to the server" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:62 +-#, c-format +-msgid "An error occurred while connecting to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:82 +-#, c-format +-msgid "Issuer certificate is invalid: '%s'." +-msgstr "Išdavėjo liudijimas netinkamas: „%s“" +- +-#: ../src/plugins/https-utils.c:85 +-#, c-format +-msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "Liudijimą pasirašo nepatikimas išdavėjas: „%s“." +- +-#: ../src/plugins/https-utils.c:88 +-#, c-format +-msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "Liudijimo subjektas „%s“ neatitinka tikslo „%s“." +- +-#: ../src/plugins/https-utils.c:92 +-msgid "Remote certificate has expired." +-msgstr "Nuotolinio liudijimo galiojimas pasibaigė." +- +-#: ../src/plugins/https-utils.c:95 +-#, c-format +-msgid "Certificate issuer is not recognized: '%s'." +-msgstr "Liudijimo išdavėjas neatpažįstamas: „%s“." +- +-#: ../src/plugins/https-utils.c:98 +-#, c-format +-msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:134 +-#, c-format +-msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "Nepavyko gauti lizdo „PEM Token #0“: %d." +- +-#: ../src/plugins/https-utils.c:167 +-#, c-format +-msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" +- +-#. Host exists, but has neither IPv4 nor IPv6?? +-#: ../src/plugins/https-utils.c:188 +-#, c-format +-msgid "Can't resolve host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:195 +-msgid "Failed to set socket blocking mode." +-msgstr "Nepavyko nustatyti jungties į blokavimo veikseną." +- +-#: ../src/plugins/https-utils.c:198 +-msgid "Failed to wrap TCP socket by SSL." +-msgstr "Nepavyko apvilkti TCP junkties su SSL." +- +-#: ../src/plugins/https-utils.c:200 ../src/plugins/https-utils.c:202 +-#: ../src/plugins/https-utils.c:204 ../src/plugins/https-utils.c:206 +-msgid "Failed to enable client handshake to SSL socket." +-msgstr "Nepavyko leisti kliento rankos paspaudimo SSL jungtyje." +- +-#: ../src/plugins/https-utils.c:208 +-msgid "Failed to set URL to SSL socket." +-msgstr "Nepavyko nustatyti SSL jungties URL." +- +-#: ../src/plugins/https-utils.c:217 +-#, c-format +-msgid "Can't connect to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:225 +-msgid "Failed to set certificate hook." +-msgstr "Nepavyko nustatyti liudijimo prikabinimo." +- +-#: ../src/plugins/https-utils.c:231 +-msgid "Failed to set handshake callback." +-msgstr "Nepavyko nustatyti rankos paspaudimo atgalinio iškvietimo." +- +-#: ../src/plugins/https-utils.c:235 +-msgid "Failed to reset handshake." +-msgstr "Nepavyko išjungti rankos paspaudimo." +- +-#: ../src/plugins/https-utils.c:242 +-#, c-format +-msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:251 +-msgid "Failed to close SSL socket." +-msgstr "Nepavyko užverti SSL jungties." +- +-#: ../src/plugins/https-utils.c:316 +-#, c-format +-msgid "Malformed HTTP response header: '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:353 +-#, c-format +-msgid "Receiving of data failed: NSS error %d." +-msgstr "Duomenų gavimas nepavyko: NSS klaida %d." +- +-#: ../src/plugins/https-utils.c:382 +-msgid "Malformed chunked response." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:407 +-msgid "Failed to initialize NSS." +-msgstr "Nepavyko inicializuoti NSS." +- +-#: ../src/plugins/https-utils.c:413 +-msgid "Failed to initialize security module." +-msgstr "Nepavyko inicializuoti saugumo modulio." +- +-#: ../src/plugins/https-utils.c:428 +-msgid "Failed to shutdown NSS." +-msgstr "Nepavyko išjungti NSS." +- +-#: ../src/plugins/bodhi.c:375 +-msgid "List of bug ids" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:376 +-msgid "Specify a bodhi server url" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:377 +-msgid "Specify a release" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:382 +-msgid "" +-"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" +-"\n" +-"Search for updates on bodhi server" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:434 +-msgid "Searching for updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:440 +-msgid "No updates for this package found" +-msgstr "" +- +-#. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 +-msgid "Local version of the package is newer than available updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:486 +-#, c-format +-msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-uefioops.c:85 +-msgid "" +-"& [-v] [-od] FILE...\n" +-"\n" +-"Scans files for split oops message. Can print and/or delete them." +-msgstr "" +- +-#: ../src/hooks/abrt-merge-uefioops.c:97 +-msgid "Print found oopses" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-uefioops.c:98 +-msgid "Delete files with found oopses" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:142 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:147 +-msgid "Remove problem directory DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:148 +-msgid "Analyze and report problem data in DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:149 +-msgid "Print information about DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:150 +-msgid "Print the count of the recent crashes" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:165 +-msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +- +-#: ../src/cli/list.c:95 +-msgid "& list [options] [DIR]..." +-msgstr "" +- +-#: ../src/cli/list.c:105 +-msgid "List even reported problems" +-msgstr "" +- +-#. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:107 ../src/cli/list.c:144 +-msgid "Show detailed report" +-msgstr "" +- +-#: ../src/cli/list.c:108 +-msgid "List only the problems more recent than specified timestamp" +-msgstr "" +- +-#: ../src/cli/list.c:109 +-msgid "List only the problems older than specified timestamp" +-msgstr "" +- +-#: ../src/cli/list.c:136 +-msgid "& info [options] DIR..." +-msgstr "" +- +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "" +- +-#: ../src/cli/status.c:79 +-msgid "Print only the problem count without any message" +-msgstr "" +- +-#: ../src/cli/status.c:80 +-msgid "Print only the problems more recent than specified timestamp" +-msgstr "" +- +-#: ../src/cli/status.c:105 +-#, c-format +-msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" +-msgstr "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:1 +-msgid "" +-"Send core dump to remote retrace server for analysis or perform local " +-"analysis if the remote analysis fails" +-msgstr "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. If " +-"user doens't want to upload his coredump to anywhere the event performs " +-"local analysis. Local analysis is run event if remote analysis fails. Pros: " +-"no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " +-"private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:1 +-msgid "Analyze VM core" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:3 +-msgid "" +-"Needs to install kernel debuginfo packages, which might take significant " +-"time, and take up disk space." +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:1 +-msgid "Collect GConf configuration" +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:2 +-msgid "Save configuration from application's GConf directory" +-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 "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:1 +-msgid "Collect system-wide vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:2 +-msgid "Save /etc/vimrc and /etc/gvimrc" +-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 "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:1 +-msgid "Collect yours vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:2 +-msgid "Save .vimrc and .gvimrc from your home directory" +-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 "" +- +-#: ../src/plugins/post_report.xml.in.h:1 +-msgid "Post report" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:2 +-msgid "Executed after the reporting is finished" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:3 +-msgid "Used for updating of the databases" +-msgstr "" +diff --git a/po/lv.po b/po/lv.po +index f9996d4..257af23 100644 +--- a/po/lv.po ++++ b/po/lv.po +@@ -8,10 +8,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Latvian (http://www.transifex.com/projects/p/fedora/language/lv/)\n" ++"Language-Team: Latvian (http://www.transifex.com/projects/p/fedora-abrt/language/lv/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nevar aizvērt paziņojumu: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Brīdinājums" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Paslēpt" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Atvērt" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Ziņot" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -233,7 +319,7 @@ msgstr "" + msgid "Configuration file" + msgstr "Konfigurācijas datne" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [iespējas]" +@@ -300,19 +386,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -397,32 +560,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Datne {0} nepastāv" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -650,6 +832,38 @@ msgstr "Izdzēst datnes šajā direktorijā" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -840,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1416,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1502,6 +1724,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/mai.po b/po/mai.po +index b5d4c8d..c84ded2 100644 +--- a/po/mai.po ++++ b/po/mai.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Maithili (http://www.transifex.com/projects/p/fedora/language/mai/)\n" ++"Language-Team: Maithili (http://www.transifex.com/projects/p/fedora-abrt/language/mai/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/mg.po b/po/mg.po +index a30479d..0049921 100644 +--- a/po/mg.po ++++ b/po/mg.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Malagasy (http://www.transifex.com/projects/p/fedora/language/mg/)\n" ++"Language-Team: Malagasy (http://www.transifex.com/projects/p/fedora-abrt/language/mg/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/mk.po b/po/mk.po +index 30b955b..664416c 100644 +--- a/po/mk.po ++++ b/po/mk.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Macedonian (http://www.transifex.com/projects/p/fedora/language/mk/)\n" ++"Language-Team: Macedonian (http://www.transifex.com/projects/p/fedora-abrt/language/mk/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ml.po b/po/ml.po +index fca2985..abecda0 100644 +--- a/po/ml.po ++++ b/po/ml.po +@@ -9,10 +9,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora-abrt/language/ml/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -73,120 +73,206 @@ msgstr "%s, ഡയഗ്നസ്റ്റിക്ക് ഡേറ്റാ ര + msgid "Can't execute '%s'" + msgstr "'%s' പ്രവര്‍ത്തിപ്പിയ്ക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "അറിയിപ്പു് അടയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "മുന്നറിയിപ്പു്" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT കണ്ടുപിടിക്കുന്ന പ്രശ്നങ്ങളെപ്പറ്റി ഉപയോക്താവിനെ അറിയിക്കുന്നതിനായുള്ള ആപ്ലെറ്റ്" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Ani Peter | അനി പീറ്റര്‍ " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "പു_റത്തു് കടക്കുക " + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "അദൃശ്യമാക്കുക" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "സം_ബന്ധിച്ചു് " + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "പ്രശ്നം കണ്ടുപിടിച്ചിരിയ്ക്കുന്നു" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "എന്നേക്കുമായി ഉപേക്ഷിയ്ക്കുക" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "തുറക്കുക" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "പ്രശ്നം നിലവില്‍ രേഖപ്പെടുത്തിയിരിയ്ക്കുന്നു" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "പരിചിതമായൊരു പ്രശ്നമുണ്ടായിരിയ്ക്കുന്നു" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "റിപോര്‍ട്ട്" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "ഒരു പ്രശ്നം ഉണ്ടായിരിയ്ക്കുന്നു" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "ഒരു പ്രശ്നം രേഖപ്പെടുത്തിയിരിയ്ക്കുന്നു" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "പുതിയൊരു പ്രശ്നമുണ്ടായിരിയ്ക്കുന്നു" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "അറിയിപ്പു് കാണിയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ചാനലില്‍ നിന്നും ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല : '%s'" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ചാനലില്‍ എന്‍കോഡിങ് സജ്ജമാക്കുവാന്‍ സാധ്യമല്ല : '%s'" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ചാനലിനു് nonblocking മോഡ് ഓണ്‍ ചെയ്യുവാാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'-ന്റെ അവകാശം സ്വീകരിയ്ക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s'സൂക്ഷിയ്ക്കുന്നതിനായി ഡയറക്ടറി തുറക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "സെഷന്‍ മാനേജറിലേക്കുള്ള കണക്ഷന്‍ തുറക്കുന്നതില്‍ പരാജയപ്പെട്ടു: '%s', അടുത്ത തവണ പ്രവേശിയ്ക്കുമ്പോള്‍ അറിയിപ്പു് വീണ്ടും ലഭ്യമാകുന്നു" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "_അടയ്ക്കുക" +@@ -195,7 +281,7 @@ msgstr "_അടയ്ക്കുക" + msgid "_Defaults" + msgstr "സ്വ_തവേയുള്ളവ" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "പ്രശ്നം രേഖപ്പെടുത്തുന്ന ക്രമീകരണം" +@@ -234,7 +320,7 @@ msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി" + msgid "Configuration file" + msgstr "ക്രമീകരണ ഫയല്‍" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -301,19 +387,19 @@ msgstr "സ്ഥലം ലഭ്യമല്ല" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "'%s' എലമെന്റ് വെട്ടി നീക്കുവാന്‍ സാധ്യമല്ല ('%s' ഡയറക്ടറിയില്‍ നിന്നും)" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "'%s' എന്ന നാമം നഷ്ടമായി, ഈ പേരില്‍ മറ്റൊരു സര്‍വീസും പ്രവര്‍ത്തനത്തിലില്ല എന്നു് ദയവായി ഉറപ്പാക്കുക.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM നിമിഷങ്ങള്‍ നിഷ്ക്രിയമായശേഷം പുറത്തു് കടക്കുക" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ഈ പ്രോഗ്രാം റൂട്ടായി പ്രവര്‍ത്തിപ്പിയ്ക്കണം." + +@@ -388,8 +474,85 @@ msgstr "ആര്‍ഗ്യുമെന്റുകളുടെ തെറ് + msgid "Unknown option value: '%s'\n" + msgstr "അപരിചിതമായ മൂല്ല്യം: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "ബാക്ക്ട്രെയിസ് ലഭ്യമാക്കുന്നു" + +@@ -398,32 +561,32 @@ msgstr "ബാക്ക്ട്രെയിസ് ലഭ്യമാക്ക + msgid "Can't connect to system DBus: %s" + msgstr "സിസ്റ്റം DBus-ലേക്കു് കണക്ട് ചെയ്യുവാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "'%s' chown ചെയ്യുവാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി വെട്ടിനീക്കുന്നതില്‍ പരാജയം: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള ഡേറ്റാ ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള പട്ടിക ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "താല്‍ക്കാലിക ഫയല്‍ '%s' തയ്യാറാക്കുവാന്‍ സാധ്യമായില്ല" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -431,7 +594,7 @@ msgid "" + msgstr "'%s'-ലേക്കു് സൂക്ഷിയ്ക്കുവാന്‍ സാധ്യമല്ല. '%s' പ്രശ്നം അവഗണിച്ച '%s' പ്രശ്നങ്ങളില്‍ നിന്നും നീക്കം ചെയ്യപ്പെടുകയില്ല." + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s' എന്നതു് '%s' ആയി മാറ്റുവാന്‍ സാധ്യമല്ല. '%s' പ്രശ്നം നീക്കം ചെയ്യുവാന്‍ സാധ്യമല്ല." +@@ -463,6 +626,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nപ്രശ്നമുള്ള ഡയറക്ടറി DIR-യില്‍ കോര്‍ഡംപിനുള്ള UUID കണക്കുകൂട്ടി സൂക്ഷിയ്ക്കുന്നു" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -489,29 +671,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nപൈഥണ്‍ ക്രാഷ് ഡംപുകളുടെ യുയുഐഡി, DUPHASH കണക്കുകൂട്ടി സൂക്ഷിയ്ക്കുക" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "ഉപയോഗിയ്ക്കേണ്ട വിധം: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "ഫയല്‍ {0} നിലവിലില്ല" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "കോറില്‍ നിന്നും oops വാചകം ലഭ്യമാക്കുന്നു" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "{0} നടപ്പിലാക്കുവാന്‍ സാധ്യമല്ല:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "oops സന്ദേശം ലഭ്യമാക്കുവാനായില്ല: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops വാചകം വിജയകരമായി ലഭ്യമാക്കി" + +@@ -651,6 +833,38 @@ msgstr "ഈ ഡയറക്ടറിയിലുള്ള ഫയലുകള് + msgid "Preserve this directory" + msgstr "ഈ ഡയറക്ടറി സൂക്ഷിയ്ക്കുക" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "യൂസര്‍സ്പെയിസ് കോഡ് സിഗ്നല്‍ അയച്ചിരിയ്ക്കുന്നു" +@@ -841,11 +1055,15 @@ msgstr "ത്രോട്ടില്‍ പ്രശ്നം ഡയറക് + msgid "Print search string(s) to stdout and exit" + msgstr "stdout-ലേക്കു് തെരയുന്ന സ്ട്രിങ് പ്രിന്റ് ചെയ്തു് പുറത്തു് കടക്കുക" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "പ്രശ്നം പരിഷ്കരിയ്ക്കുവാന്‍ സാധ്യമല്ല: ഒന്നില്‍ കൂടുതല്‍ oops ലഭ്യമായി" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d നിമിഷത്തേക്കു് മയങ്ങുന്നു" +@@ -1417,31 +1635,35 @@ msgstr "കണ്ടുപിടിച്ച ഒഒപിഎസുകളുള + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ഒന്നില്‍ കൂടുതല്‍ പ്രശ്നമുള്ള ഡയറക്ടറി തിരിച്ചറിയുന്നു" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "ഇതു് വരെ രേഖപ്പെടുത്തിയിട്ടില്ലാത്ത പ്രശ്നങ്ങള്‍ ലഭ്യമാക്കുക [DIR-കളില്‍]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി DIR നീക്കം ചെയ്യുക" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "DIR-ല്‍ പ്രശ്നമുള്ള ഡേറ്റാ നിരീക്ഷിച്ചു് രേഖപ്പെടുത്തുക" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR സംബന്ധിച്ചുള്ള വിവരം പ്രിന്റ് ചെയ്യുക" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "പുതിയ തകരാറുകളുടെ എണ്ണം പ്രിന്റ് ചെയ്യുക" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി 'abrt-cli COMMAND --help' കാണുക." + +@@ -1503,6 +1725,45 @@ msgstr "നല്‍കിയിരിയ്ക്കുന്ന ടൈംസ + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "എബിആര്‍റ്റി %u പ്രശ്നങ്ങള്‍ കണ്ടുപിടിച്ചിരിയ്ക്കുന്നു. കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി പ്രവര്‍ത്തിപ്പിക്കേണ്ടതു്: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/mn.po b/po/mn.po +index 6f2e38a..13ef42f 100644 +--- a/po/mn.po ++++ b/po/mn.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Mongolian (http://www.transifex.com/projects/p/fedora/language/mn/)\n" ++"Language-Team: Mongolian (http://www.transifex.com/projects/p/fedora-abrt/language/mn/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/mr.po b/po/mr.po +index eaa018a..201ba1b 100644 +--- a/po/mr.po ++++ b/po/mr.po +@@ -9,10 +9,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Marathi (http://www.transifex.com/projects/p/fedora-abrt/language/mr/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -73,120 +73,206 @@ msgstr "%s आणि विश्लेषीत माहिती सादर + msgid "Can't execute '%s'" + msgstr "'%s' चालवणे अशक्य" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "सूचना: %s बंद करणे अशक्य" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "सावधानता" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "सूचना क्षेत्र ॲप्लेट जे वापरकर्त्याला ABRT द्वारे आढळलेल्या अडचणींविषयी अवगत करते" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "संदिप शेडमाके , 2010, 2011." + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "बाहेर पडा (_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "लपवा" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "विषयी (_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "अडचण आढळली" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "नेहमीकरिता दुर्लक्ष करा" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "उघडा" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "अडचण आधीच कळवले गेले आहे" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "परिचीत अडचण आढळली" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "रिपोर्ट" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "अडचण निर्माण झाली" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "अडचण कळवली" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "नवीन अडचण आढळली" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "सूचना: %s दाखवणे अशक्य" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio वाहिनी: '%s' पासून वाचणे अशक्य" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio वाहिनी: %s वरील एंकोडिंग सेट करणे अशक्य" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio वाहिनी: %s करीता नॉनब्लॉकिंग मोड सुरू करणे अशक्य" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ची मालकी प्राप्त करणे अशक्य" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' लिहण्याकरीता डिरेक्ट्रि उघडणे अशक्य" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "सत्र व्यवस्थापक: '%s' सह जोडणी उघडण्यास अपयशी, पुढील प्रवेशवेळी सूचना पुन्हा आढळेल" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "डिरेक्ट्री चोरण्यापूर्वी विचारा" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "स्वयरित्या uReport पाठवा" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "शार्टन्ड रिपोर्टिंग" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "साइलंट शार्टन्ड रिपोर्टिंग" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "स्टॅक ट्रेस निर्माण करण्यासाठी कोरडम्प फाइल आवश्यक आहे ज्यास वेळ आणि जागा आवश्यक आहे. ABRT तुम्हाला सर्व्हिस पुरवते जे कोरडम्पपासून स्टॅक ट्रेस निर्माण करते परंतु तुम्हाला कोरडम्पला ह्या सर्व्हिसकरिता अपलोड करावे लागेल. ह्या पर्यायचा वापर न करता ABRT विना विचारता कोरडम्प अपलोड करेल." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "ABRT डिरेक्ट्रीमध्ये अडचण डाटा साठवते. ABRT ला जेव्हा केव्हाही लेखनजोगी डिरेक्ट्रीची आवश्यकता असते, तेव्हा डिरेक्ट्रीला प्रणाली ठिकाणापासून होम डिरेक्ट्रीकरिता स्थानांतरित केले जाते. हे पर्याय बंद करून ABRT विना चौकशी अडचण डिरेक्ट्रीला स्थानांतरित करेल." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "uReport छोटे आहे आणि अडचणीचे निनावी वर्णन आहे. ABRT uReports चा वापर फास्ट ग्लोबल ड्युप्लिकेट डिटेक्शनकरिता करते. पूर्वनिर्धारित संरचनामध्ये uReport अहवाल पद्धतीच्या सुरूवातीस पाठवले जाते. ह्या पर्यायचा वापर करून uReports ला अडचण आढळल्यानंतर स्वयरित्या पाठवले जाते." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "हे पर्याय समर्थीत करून रिपोर्टिंग प्रोसेस जे प्रॉबलेम नोटिफिकेशन बबल मधील रिपोर्ट बटन क्लिक करून सुरू होते, त्यास uReport पाठवल्यानंतर व्यत्यय निर्माण होते. संपूर्ण अहवाल निर्माण करण्यासाठी तुम्ही नेहमी पूर्वनिर्धारित अडचण ब्राउजरचा वापर करू शकता." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr " हे पर्याय सुरू करून ABRT कधीही कळवलेल्या अडचणींचे सूचना दाखवत नाही. शार्टंड रिपोर्टिंग सुरू केल्यानंतरच प्रभाव पडतो." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "कोरडम्प अपलोड करण्यापूर्वी विचारा" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "संवेदनशील माहितीकरिता व्यक्तिगत तिकिटकरिता विनंती करा" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "अपूर्ण अडचणी सूचीत करा" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "संगणक बंद होतेवेळी किंवा वापरकर्ता बाहेर पडतेवेळी अपूर्ण अडचणी आढळली जातात. मौल्यावन अडचणीचे अहवाल पुरवण्याकरिता, ABRT तुम्हाला ह्या अडचणी सादर करण्यास परवानगी देणार नाही." ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "बंद करा (_C)" +@@ -195,7 +281,7 @@ msgstr "बंद करा (_C)" + msgid "_Defaults" + msgstr "पूर्वनिर्धारित (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "संरचना कळताना अडचण" +@@ -234,7 +320,7 @@ msgstr "प्रॉब्लेम डिरेक्ट्री" + msgid "Configuration file" + msgstr "संरचना फाइल" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -301,19 +387,19 @@ msgstr "प्रॉबलेम जागा बाकी नाही" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "एलिमेंट '%s' ला प्रॉबलेम डिरेक्ट्रि '%s' पासून नष्ट करणे अशक्य" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "नाव '%s' हरवले आहे, कृपया नावाची मालकी असलेली सर्व्हिस सुरू नाही याची तपासणी करा.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "निष्क्रिय झाल्यावर NUM सेकंदानंतर बाहेर पडा" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "हा प्रोग्राम रूट वापरकर्ता म्हणून चालवा." + +@@ -388,8 +474,85 @@ msgstr "अवैध बाबींची संख्या" + msgid "Unknown option value: '%s'\n" + msgstr "अपरिचीत पर्याय मूल्य: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "बॅकट्रेस निर्माण करत आहे" + +@@ -398,32 +561,32 @@ msgstr "बॅकट्रेस निर्माण करत आहे" + msgid "Can't connect to system DBus: %s" + msgstr "सिस्टम DBus: %s सह जोडणी अशक्य" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "'%s': %s chown करणे अशक्य" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "अडचण डिरेक्ट्री: %s नष्ट करण्यास अपयशी" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus: %s पासून अडचण डाटा प्राप्त करणे अशक्य" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus: %s पासून अडचण सूची प्राप्त करणे अशक्य" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "तात्पुर्ती फाइल '%s'चे निर्माण अशक्य" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -431,7 +594,7 @@ msgid "" + msgstr "'%s'करीता लिहणे अशक्य. अडचण '%s'ला दुर्लक्ष अडचणी '%s'पासून काढून टाकणे अशक्य" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s'ला '%s' असे पुन्हनामांकन अशक्य. अडचण '%s' काढून टाकणे अपयशी" +@@ -463,6 +626,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nडम्प डिरेक्ट्री DIR मध्ये कोरडम्पचे UUIDची गणना करतो व साठवतो" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "कोरडम्प '%s' चे विश्लेषण करत आहे" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "बिल्ड id: %s आढळले नाही" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "वापर: %s [-v] [-o OUTFILE] -c COREFILE" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "COREFILE निर्देशीत नाही" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -489,29 +671,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nपायथन क्रॅश डम्प्स्चे UUID व DUPHASHची गणना करतो व साठवतो" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "वापर: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "फाइल {0} अस्तित्वात नाही" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "कोरपासून ऊप्स मजकूर प्राप्त करत आहे" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "{0} विश्लेषीत करणे अशक्य:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "ऊप्स संदेश: '{0}' प्राप्ति अशक्य" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "ऊप्स मजकूर यशस्वीरित्या प्राप्त केले" + +@@ -651,6 +833,38 @@ msgstr "या डिरेक्ट्रिजीत फाइल्स् न + msgid "Preserve this directory" + msgstr "हि डिरेक्ट्री जपवून ठेवतो" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "युजरस्पेस कोडतर्फे पाठवलेले सिग्नल" +@@ -841,11 +1055,15 @@ msgstr "प्रति १ सेकंदकरिता थ्रॉटल + msgid "Print search string(s) to stdout and exit" + msgstr "stdout करीता सर्च स्ट्रिंग्स्ची छपाई करा व बाहेर पडू नका" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "अडचण सुधारित करणे अशक्य: एकापेक्षा जास्त ऊप्स आढळले" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d सेकंदकरिता निष्क्रीय झाले" +@@ -1417,31 +1635,35 @@ msgstr "आढळलेल्या ऊप्सेसपासून फाइ + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' एकापेक्षा जास्त अडचण डिरेक्ट्री ओळखते" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "वापर: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "अजूनही न कळवलेले अडचणी सूचीत दाखवा [DIR मध्ये]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "प्रॉब्लेम डिरेक्ट्री DIR काढून टाका" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "DIR मध्ये प्रॉब्लेम डाटाचे विश्लेषण करा व कळवा" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR विषयी माहितीची छपाई करा" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "नुकतेच क्रॅशच्या प्रमाणची छपाई करा" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "अधिक माहितीकरीता 'abrt-cli COMMAND --help' पहा" + +@@ -1503,6 +1725,45 @@ msgstr "निर्देशीत टाइमस्टॅम्पपेक + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRTला %u अडचणी आढळले. अधिक माहितीकरिता: abrt-cli list%s चालवा\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ms.po b/po/ms.po +index aeda45e..9dab4f2 100644 +--- a/po/ms.po ++++ b/po/ms.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Malay (http://www.transifex.com/projects/p/fedora/language/ms/)\n" ++"Language-Team: Malay (http://www.transifex.com/projects/p/fedora-abrt/language/ms/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ms_MY.po b/po/ms_MY.po +deleted file mode 100644 +index 69afb38..0000000 +--- a/po/ms_MY.po ++++ /dev/null +@@ -1,1588 +0,0 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: +-msgid "" +-msgstr "" +-"Project-Id-Version: ABRT\n" +-"Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Content-Transfer-Encoding: 8bit\n" +-"Language: ms_MY\n" +-"Plural-Forms: nplurals=1; plural=0;\n" +- +-#: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" +- +-#: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../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" +-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:243 +-#, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:267 +-#, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:386 +-msgid "A problem has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:388 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:398 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" +-msgstr "" +- +-#: ../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:632 ../src/applet/applet.c:698 +-#, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:788 +-msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "" +- +-#: ../src/applet/applet.c:804 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:812 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:814 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:816 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:884 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:934 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:950 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../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:969 ../src/applet/applet.c:1004 +-msgid "Report" +-msgstr "" +- +-#: ../src/applet/applet.c:974 +-msgid "A Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1000 +-msgid "A Problem has been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:1008 +-msgid "A New Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1018 +-#, c-format +-msgid "Can't show notification: %s" +-msgstr "" +- +-#. TODO: Terminate child's process? +-#: ../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:1136 +-#, c-format +-msgid "Can't set encoding on gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1140 +-#, c-format +-msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1172 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1182 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../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: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:75 +-msgid "_Close" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:84 +-msgid "_Defaults" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:110 +-#: ../src/configuration-gui/main.c:36 +-msgid "Problem Reporting Configuration" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:75 +-msgid "About System Config ABRT" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:105 +-msgid "About" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:106 +-msgid "Quit" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:382 +-msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" +-"\n" +-"Query package database and save package and component name" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:394 +-#: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 +-#: ../src/plugins/abrt-action-analyze-oops.c:48 +-#: ../src/plugins/abrt-action-analyze-xorg.c:84 +-#: ../src/plugins/abrt-action-analyze-python.c:47 +-#: ../src/plugins/abrt-action-generate-backtrace.c:55 +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 +-msgid "Problem directory" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:395 +-msgid "Configuration file" +-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 "" +- +-#: ../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: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 "" +- +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 +-msgid "Add program names to log" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:123 +-msgid "Unknown error" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:188 +-#, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:223 +-#, c-format +-msgid "'%s' element can't be modified" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 +-#, c-format +-msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:580 +-#, c-format +-msgid "Can't get size of '%s'" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:595 +-msgid "No problem space left" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:627 +-#, c-format +-msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#: ../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 "" +- +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 +-msgid "This program must be run as root." +-msgstr "" +- +-#: ../src/daemon/abrtd.c:451 +-msgid "" +-"The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" +- +-#: ../src/daemon/abrtd.c:497 +-msgid "Do not daemonize" +-msgstr "" +- +-#: ../src/daemon/abrtd.c:498 +-msgid "Log to syslog even with -d" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:388 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:396 +-msgid "Run EVENT on DIR" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:397 +-msgid "Communicate directly to the user" +-msgstr "" +- +-#: ../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:258 +-msgid "" +-"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +-"\n" +-"\n" +-"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" +-"specified in abrt.conf\n" +-"\n" +-"If UPLOAD_DIRECTORY is not provided, uses a value of\n" +-"WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:281 +-msgid "Daemize" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:282 +-msgid "Number of concurrent workers. Default is " +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" +-msgstr "" +- +-#: ../src/daemon/abrt-auto-reporting.c:138 +-#, c-format +-msgid "Unknown option value: '%s'\n" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/lib/hooklib.c:251 +-msgid "Generating backtrace" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:42 +-#, c-format +-msgid "Can't connect to system DBus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:66 +-#, c-format +-msgid "Can't chown '%s': %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:93 +-#, c-format +-msgid "Deleting problem directory failed: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:127 +-#, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:161 +-#, c-format +-msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/ignored_problems.c:231 +-#, c-format +-msgid "Can't create temporary file '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 +-#, c-format +-msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:41 +-msgid "" +-"& [options] -d DIR\n" +-"\n" +-"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" +-"and identifies crash function in problem directory DIR" +-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 "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 +-msgid "Crash thread not found" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-c.c:67 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-oops.c:37 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/plugins/abrt-action-analyze-xorg.c:113 +-#, c-format +-msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-python.c:36 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 +-msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 +-msgid "File {0} doesn't exist" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 +-msgid "Extracting the oops text from core" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 +-msgid "" +-"Can't process {0}:\n" +-"{1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 +-msgid "Can't extract the oops message: '{0}'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 +-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" +-"\n" +-"Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:56 +-msgid "Additional debuginfo directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:57 +-msgid "Kill gdb if it runs for more than NUM seconds" +-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 "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 +-msgid "" +-"& [-v] [-r] -d DIR\n" +-"\n" +-"Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +-msgid "Do not hash fingerprints" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 +-msgid "Generating core_backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 +-msgid "Error: GDB did not return any data" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 +-#, c-format +-msgid "Error: %s" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:51 +-msgid "Exiting on user command" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 +-#, c-format +-msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" +-" [-e, --exact=PATH[:PATH]...]\n" +-"\n" +-"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +-"to CACHEDIR, using TMPDIR as temporary staging area.\n" +-"Old 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" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 +-msgid "Can't open {0}: {1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 +-msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 +-msgid "{0} of debuginfo files are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 +-msgid "Missing requested file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 +-msgid "Missing debuginfo file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 +-msgid "All debuginfo files are available" +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 +-msgid "" +-"Ok to upload core dump? (It may contain sensitive data). If your answer is " +-"'No', a stack trace will be generated locally. (It may download a huge " +-"amount of data)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 +-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 "" +- +-#: ../src/plugins/abrt-action-trim-files.c:222 +-msgid "" +-"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" +-"\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" +-"FILEs are preserved (never deleted)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:236 +-msgid "Delete whole problem directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:237 +-msgid "Delete files inside this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:238 +-msgid "Preserve this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:529 +-msgid "Signal sent by userspace code" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:533 +-msgid "Signal sent by timer/IO/async event" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:541 +-msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:544 +-msgid "Signal due to write to closed pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:550 +-#: ../src/plugins/abrt-gdb-exploitable:575 +-msgid "Signal sent by keyboard" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:554 +-#: ../src/plugins/abrt-gdb-exploitable:579 +-msgid "Job control signal sent by kernel" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:558 +-#: ../src/plugins/abrt-gdb-exploitable:587 +-msgid "Signal sent by window resize" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:562 +-#: ../src/plugins/abrt-gdb-exploitable:591 +-msgid "Signal sent by alarm(N) expiration" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:583 +-msgid "Signal due to write to broken pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:607 +-msgid "ABRT signal (abort() was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:616 +-msgid "XCPU signal (over CPU time limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:620 +-msgid "XFSZ signal (over file size limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:624 +-msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:628 +-msgid "SYS signal (unknown syscall was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:633 +-msgid "Arithmetic exception" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:637 +-msgid "Division by zero" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:641 +-msgid "Illegal instruction (jump to a random address?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:647 +-msgid "Non-crash related signal" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:652 +-msgid "Stack overflow" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:656 +-msgid "Write to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:660 +-msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:666 +-#: ../src/plugins/abrt-gdb-exploitable:670 +-msgid "Jump to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:674 +-msgid "" +-"Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:693 +-msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:706 +-msgid "Likely crash reason: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:707 +-msgid "Exploitable rating (0-9 scale): " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:709 +-msgid "Current instruction: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:711 +-msgid "Exploitability analysis came up empty\n" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:142 +-msgid "" +-"& [-vs] [-F STR]... FILE PROG [ARGS]\n" +-"\n" +-"Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:154 +-msgid "Don't run PROG if STRs aren't found" +-msgstr "" +- +-#: ../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: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: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:153 +-#, c-format +-msgid " Tainted modules: %s." +-msgstr "" +- +-#: ../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: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:278 +-msgid "Create new problem directory in DIR for every oops found" +-msgstr "" +- +-#: ../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:280 +-msgid "Save the extracted information in PROBLEM" +-msgstr "" +- +-#: ../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:282 +-msgid "Throttle problem directory creation to 1 per second" +-msgstr "" +- +-#: ../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:379 +-msgid "Can't update the problem: more than one oops found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:398 +-#, c-format +-msgid "Sleeping for %d seconds" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:237 +-msgid "" +-"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" +-"\n" +-"Extract Xorg crash from FILE (or standard input)" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:245 +-msgid "Print found crash data on standard output" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:246 +-msgid "Create problem directory in DIR for every crash found" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:70 +-msgid "" +-"Retrace server can not be used, because the crash is too large. Try local " +-"retracing." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:211 +-#: ../src/plugins/abrt-retrace-client.c:398 +-#: ../src/plugins/abrt-retrace-client.c:666 +-#: ../src/plugins/abrt-retrace-client.c:832 +-#, c-format +-msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:223 +-#: ../src/plugins/abrt-retrace-client.c:412 +-#: ../src/plugins/abrt-retrace-client.c:765 +-#: ../src/plugins/abrt-retrace-client.c:849 +-#: ../src/plugins/abrt-retrace-client.c:916 +-#: ../src/plugins/abrt-retrace-client.c:1001 +-#: ../src/plugins/abrt-retrace-client.c:1060 +-#, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" +-"%s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:232 +-#: ../src/plugins/abrt-retrace-client.c:745 +-#: ../src/plugins/abrt-retrace-client.c:841 +-#: ../src/plugins/abrt-retrace-client.c:908 +-#: ../src/plugins/abrt-retrace-client.c:982 +-#: ../src/plugins/abrt-retrace-client.c:1052 +-msgid "Invalid response from server: missing HTTP message body." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:424 +-#, c-format +-msgid "" +-"Retrace server is unable to process package '%s.%s'.\n" +-"Is it a part of official '%s' repositories?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:444 +-msgid "Querying server settings" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:452 +-msgid "The server is fully occupied. Try again later." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:453 +-msgid "The server denied your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:484 +-#: ../src/plugins/abrt-retrace-client.c:500 +-#, c-format +-msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:514 +-#, c-format +-msgid "" +-"The size of your crash is %lld bytes, but the retrace server only accepts " +-"crashes smaller or equal to %lld bytes." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:534 +-msgid "The server does not support xz-compressed tarballs." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:571 +-#, c-format +-msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:575 +-msgid "The server is not able to handle your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:594 +-msgid "Unknown package sent to Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:603 +-msgid "Preparing an archive to upload" +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:629 +-#, c-format +-msgid "You are going to upload %d megabytes. Continue?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:638 +-msgid "Cancelled by user" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:673 +-#, c-format +-msgid "Uploading %d megabytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:675 +-#, c-format +-msgid "Uploading %lld bytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:699 +-#, c-format +-msgid "Uploading %d%%\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:711 +-msgid "Failed to read from a pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:724 +-#, c-format +-msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:735 +-msgid "Upload successful" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:757 +-msgid "" +-"Your problem directory is corrupted and can not be processed by the Retrace " +-"server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:759 +-msgid "" +-"The archive contains malicious files (such as symlinks) and thus can not be " +-"processed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:772 +-msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:778 +-msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:785 +-msgid "Retrace job started" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:798 +-#, c-format +-msgid "" +-"Task Id: %s\n" +-"Task Password: %s\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:856 +-msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:868 +-#, c-format +-msgid "" +-"Task Status: %s\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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1160 +-msgid "" +-"Retrace failed. Try again later and if the problem persists report this " +-"issue please." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1207 +-msgid "log to syslog" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1209 +-msgid "allow insecure connection to retrace server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1211 +-msgid "" +-"do not check whether retrace server is able to process given package before " +-"uploading the archive" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1214 +-msgid "retrace server URL" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1216 +-msgid "retrace server port" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1218 +-msgid "(debug) show received HTTP headers" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1219 +-msgid "For create and batch operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1221 +-msgid "read data from ABRT problem directory" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1223 +-msgid "read data from coredump" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1225 +-msgid "Delay for polling operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1227 +-msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1229 +-msgid "For status, backtrace, and log operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1231 +-msgid "id of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1233 +-msgid "password of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1237 +-msgid "" +-"abrt-retrace-client [options]\n" +-"Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1282 +-#: ../src/plugins/abrt-retrace-client.c:1288 +-msgid "Either problem directory or coredump is needed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1294 +-#: ../src/plugins/abrt-retrace-client.c:1302 +-#: ../src/plugins/abrt-retrace-client.c:1310 +-#: ../src/plugins/abrt-retrace-client.c:1318 +-msgid "Task id is needed." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1324 +-#, c-format +-msgid "Unknown operation: %s." +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 +-msgid "Local GNU Debugger" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 +-msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 +-msgid "" +-"Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +-msgid "Send core dump to remote retrace server for analysis" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +-#: ../src/plugins/analyze_CCpp.xml.in.h:3 +-msgid "Retrace server 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 "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 +-#: ../src/plugins/analyze_CCpp.xml.in.h:5 +-msgid "Insecure" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 +-#: ../src/plugins/analyze_CCpp.xml.in.h:6 +-msgid "Whether or not to use insecure connection" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 +-#: ../src/plugins/analyze_CCpp.xml.in.h:7 +-msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:1 +-msgid "Collect .xsession-errors" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:2 +-msgid "Save relevant lines from ~/.xsession-errors file" +-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 "" +- +-#: ../src/plugins/https-utils.c:62 +-msgid "An error occurred on the server side." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:65 +-#, c-format +-msgid "A server-side error occurred on '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:74 +-msgid "An error occurred while connecting to the server" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:77 +-#, c-format +-msgid "An error occurred while connecting to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:97 +-#, c-format +-msgid "Issuer certificate is invalid: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:100 +-#, c-format +-msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:103 +-#, c-format +-msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:107 +-msgid "Remote certificate has expired." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:110 +-#, c-format +-msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:113 +-#, c-format +-msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:149 +-#, c-format +-msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:182 +-#, c-format +-msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" +- +-#. Host exists, but has neither IPv4 nor IPv6?? +-#: ../src/plugins/https-utils.c:203 +-#, c-format +-msgid "Can't resolve host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:210 +-msgid "Failed to set socket blocking mode." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:213 +-msgid "Failed to wrap TCP socket by SSL." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:215 +-msgid "Failed to enable client handshake to SSL socket." +-msgstr "" +- +-#: ../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:233 +-#, c-format +-msgid "Can't connect to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:241 +-msgid "Failed to set certificate hook." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:247 +-msgid "Failed to set handshake callback." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:251 +-msgid "Failed to reset handshake." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:258 +-#, c-format +-msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:267 +-msgid "Failed to close SSL socket." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:332 +-#, c-format +-msgid "Malformed HTTP response header: '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:369 +-#, c-format +-msgid "Receiving of data failed: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:398 +-msgid "Malformed chunked response." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:423 +-msgid "Failed to initialize NSS." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:429 +-msgid "Failed to initialize security module." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:444 +-msgid "Failed to shutdown NSS." +-msgstr "" +- +-#: ../src/plugins/bodhi.c:375 +-msgid "List of bug ids" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:376 +-msgid "Specify a bodhi server url" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:377 +-msgid "Specify a release" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:382 +-msgid "" +-"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" +-"\n" +-"Search for updates on bodhi server" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:434 +-msgid "Searching for updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:440 +-msgid "No updates for this package found" +-msgstr "" +- +-#. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 +-msgid "Local version of the package is newer than available updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:486 +-#, c-format +-msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:85 +-msgid "" +-"& [-v] [-od] FILE...\n" +-"\n" +-"Scans files for split oops message. Can print and/or delete them." +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:97 +-msgid "Print found oopses" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:98 +-msgid "Delete files with found oopses" +-msgstr "" +- +-#: ../src/cli/abrt-cli-core.c:91 +-#, c-format +-msgid "'%s' identifies more than one problem directory" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:142 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:147 +-msgid "Remove problem directory DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:148 +-msgid "Analyze and report problem data in DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:149 +-msgid "Print information about DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:150 +-msgid "Print the count of the recent crashes" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:165 +-msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +- +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "" +- +-#: ../src/cli/list.c:188 +-msgid "List only not-reported problems" +-msgstr "" +- +-#. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 +-msgid "Show detailed report" +-msgstr "" +- +-#: ../src/cli/list.c:191 +-msgid "List only the problems more recent than specified timestamp" +-msgstr "" +- +-#: ../src/cli/list.c:192 +-msgid "List only the problems older than specified timestamp" +-msgstr "" +- +-#: ../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:235 +-msgid "& info [options] DIR..." +-msgstr "" +- +-#: ../src/cli/list.c:244 +-msgid "Text larger than this will be shown abridged" +-msgstr "" +- +-#: ../src/cli/list.c:264 +-#, c-format +-msgid "No such problem directory '%s'" +-msgstr "" +- +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "" +- +-#: ../src/cli/status.c:78 +-msgid "Print only the problem count without any message" +-msgstr "" +- +-#: ../src/cli/status.c:79 +-msgid "Print only the problems more recent than specified timestamp" +-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 "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:1 +-msgid "" +-"Send core dump to remote retrace server for analysis or perform local " +-"analysis if the remote analysis fails" +-msgstr "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. If " +-"user doens't want to upload his coredump to anywhere the event performs " +-"local analysis. Local analysis is run event if remote analysis fails. Pros: " +-"no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " +-"private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:1 +-msgid "Analyze VM core" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:3 +-msgid "" +-"Needs to install kernel debuginfo packages, which might take significant " +-"time, and take up disk space." +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:1 +-msgid "Collect GConf configuration" +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:2 +-msgid "Save configuration from application's GConf directory" +-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 "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:1 +-msgid "Collect system-wide vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:2 +-msgid "Save /etc/vimrc and /etc/gvimrc" +-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 "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:1 +-msgid "Collect yours vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:2 +-msgid "Save .vimrc and .gvimrc from your home directory" +-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 "" +- +-#: ../src/plugins/post_report.xml.in.h:1 +-msgid "Post report" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:2 +-msgid "Executed after the reporting is finished" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:3 +-msgid "Used for updating of the databases" +-msgstr "" +diff --git a/po/my.po b/po/my.po +index 7ad8de2..cfef994 100644 +--- a/po/my.po ++++ b/po/my.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Burmese (http://www.transifex.com/projects/p/fedora/language/my/)\n" ++"Language-Team: Burmese (http://www.transifex.com/projects/p/fedora-abrt/language/my/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/nb.po b/po/nb.po +index 92d4d02..e7bebad 100644 +--- a/po/nb.po ++++ b/po/nb.po +@@ -9,10 +9,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/fedora/language/nb/)\n" ++"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/fedora-abrt/language/nb/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -73,120 +73,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "Kan ikke kjøre «%s»" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Advarsel" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Kjartan Maraas " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Skjul" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Problem funnet" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Rapporter" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Et problem har oppstått" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan ikke ta eierskap av «%s»" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -195,7 +281,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -234,7 +320,7 @@ msgstr "" + msgid "Configuration file" + msgstr "Konfigurasjonsfil" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [alternativer]" +@@ -301,19 +387,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Avslutt etter NUM sekunder uten aktivitet" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Programmet må kjøres som root" + +@@ -388,8 +474,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Lager dump" + +@@ -398,32 +561,32 @@ msgstr "Lager dump" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -431,7 +594,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -463,6 +626,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -489,29 +671,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Fil {0} eksisterer ikke" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -651,6 +833,38 @@ msgstr "Slett filer i denne katalogen" + msgid "Preserve this directory" + msgstr "Reserver denne katalogen" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -841,11 +1055,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1417,31 +1635,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1503,6 +1725,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/nds.po b/po/nds.po +index b08646f..80aca3e 100644 +--- a/po/nds.po ++++ b/po/nds.po +@@ -8,10 +8,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Low German (http://www.transifex.com/projects/p/fedora/language/nds/)\n" ++"Language-Team: Low German (http://www.transifex.com/projects/p/fedora-abrt/language/nds/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Verbargen" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Berichten" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -233,7 +319,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -300,19 +386,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -397,32 +560,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -650,6 +832,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -840,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1416,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1502,6 +1724,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ne.po b/po/ne.po +index 640b7c6..49176d8 100644 +--- a/po/ne.po ++++ b/po/ne.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Nepali (http://www.transifex.com/projects/p/fedora/language/ne/)\n" ++"Language-Team: Nepali (http://www.transifex.com/projects/p/fedora-abrt/language/ne/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/nl.po b/po/nl.po +index 9b50989..a52e46a 100644 +--- a/po/nl.po ++++ b/po/nl.po +@@ -10,10 +10,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Dutch (http://www.transifex.com/projects/p/fedora-abrt/language/nl/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -74,120 +74,206 @@ msgstr "%s en de diagnosedata is ingediend" + msgid "Can't execute '%s'" + msgstr "Kan '%s' niet uitvoeren" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Kan notificatie niet sluiten: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Waarschuwing" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Geert Warrink \nRichard van der Luit " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "_Verlaten" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Verbergen" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "_Over" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Er is een probleem ontdekt" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Altijd negeren" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Open" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "Het probleem is al gerapporteerd" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Rapport" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Er is een probleem opgetreden" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Er is een probleem gerapporteerd" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Er Is Een Nieuw Probleem Opgetreden" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "Kan notificatie niet tonen: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Kan codering op gio kanaal niet instellenl: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan '%s' niet claimen" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Kan map niet openen voor het schrijven van '%s'" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, 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:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "Vraag voordat een map gestolen wordt" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "Verstuur uReport automatisch" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "Verkort rapporteren" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "Stilzwijgend verkort rapporteren" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "Het coredump bestand is nodig voor het aanmaken van een stack trace, wat een tijd en ruimte spenderende bewerking is. ABRT biedt een service welke de stack trace aanmaakt uit de coredump, maar je moet de coredump uploaden naar deze service. Als deze optie uitgezet is, zal ABRT de coredump uploaden zonder te vragen." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "ABRT slaat probleemdata op in mappen. Iedere keer als ABRT een beschrijfbare map nodig heeft, wordt de map verplaatst van de systeemlocatie naar je persoonlijke map. Als deze optie uitgezet wordt, zal ABRT de probleemmap verplaatsen zonder te vragen." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "uReport is een korte en volledig anonieme beschrijving van een probleem. ABRT gebruikt uReports voor snelle globale duplicaat detectie. In de standaard configuratie wordt uReport verstuurd aan het begin van het rapportageproces. Als deze optie aangezet is, worden uReports automatisch verstuurd na het ontdekken van het probleem." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "Als deze optie aangezet is, zal het rapportageproces opgestart met een klik op de Rapporteren knop in de probleemmeldingsbubbel onderbroken worden nadat een uReport verstuurd is. Je kunt altijd de standaard probleembrowser gebruiken om een complete rapportage aan te maken." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "Als deze optie aangezet is, zal ABRT nooit meldingen tonen van gerapporteerde problemen. Dit heeft alleen effect als Verkort rapporteren aan gezet is." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "Vraag voordat een coredump geüpload wordt " ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "Vraag privé ticket aan voor gevoelige informatie" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "Geef incomplete problemen aan" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "Incomplete problemen worden gedetecteerd terwijl de computer afgesloten wordt of als een gebruiker uitlogt. Om waardevolle probleemrapporten aan te bieden, zal ABRT je niet toestaan om deze problemen in te dienen." ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "_Sluiten" +@@ -196,7 +282,7 @@ msgstr "_Sluiten" + msgid "_Defaults" + msgstr "_Standaarden" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Probleemrapportageconfiguratie" +@@ -235,7 +321,7 @@ msgstr "Probleemmap" + msgid "Configuration file" + msgstr "Configuratiebestand" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [opties]" +@@ -302,19 +388,19 @@ msgstr "Er is geen probleemruimte meer" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Kan het element '%s' niet verwijderen uit de probleemmap '%s'" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "De naam '%s' is verloren gegaan, controleer of er geen andere service draait die eigenaar is van de naam.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Afsluiten na NUM seconden van inactiviteit" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Dit programma moet door root worden uitgevoerd" + +@@ -389,8 +475,85 @@ msgstr "Ongeldig aantal argumenten" + msgid "Unknown option value: '%s'\n" + msgstr "Onbekende optiewaarde: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Backtrace genereren" + +@@ -399,32 +562,32 @@ msgstr "Backtrace genereren" + msgid "Can't connect to system DBus: %s" + msgstr "Kan niet verbinden met systeem DBus: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Kan niet chown '%s': %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Verwijderen probleemmap mislukt: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Kan geen probleemdata verkrijgen van abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Kan geen probleemlijst verkrijgen van abrt-dbus: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Kan tijdelijk bestand '%s' niet aanmaken" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -432,7 +595,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:262 ++#: ../src/lib/ignored_problems.c:264 + #, 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" +@@ -464,6 +627,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nBerekent en slaat UUID van coredump op in probleemmap DIR" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "Bezig met analyseren van coredump '%s'" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "Ontbrekend bouw id: %s" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "Gebruike: %s [-v] [-o OUTFILE] -c COREFILE" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "COREFILE is niet gespecificeerd" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -490,29 +672,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d MAP\n\nBerekent en slaat UUID en DUPHASH op van python crashdumps" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "Gebruik: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Bestand {0} bestaat niet" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "De oops tekst wordt geëxtraheerd uit de core " + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "Kan {0} niet verwerken:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "Kan de oops boodschap niet extraheren: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops tekst met succes geextraheerd" + +@@ -652,6 +834,38 @@ msgstr "Verwijder bestanden in deze map" + msgid "Preserve this directory" + msgstr "Deze map behouden" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "Signaal verstuurd door gebruikersruimtecode" +@@ -842,11 +1056,15 @@ msgstr "Beperk het aanmaken van probleemmappen tot 1 per seconde" + msgid "Print search string(s) to stdout and exit" + msgstr "Print zoekstring(s) naar stdout en sluit af" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + 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:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "In slaap voor %d seconden" +@@ -1418,31 +1636,35 @@ msgstr "Verwijder bestanden met gevonden oopses" + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identificeert meer dan een probleemmap" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Gebruik: abrt-cli [--version] COMMANDO [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Toon nog niet gerapporteerde problemen [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Verwijder probleemmap DIR" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analyseer en rapporteer probleemdata in DIR" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Print informatie over DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Print de telling van de recente crashes" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Zie 'abrt-cli COMMANDO --help' voor meer informatie" + +@@ -1504,6 +1726,45 @@ msgstr "Print alleen de problemen recenter is dan opgegeven tijdstempel" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT heef %u probleem(problemen) ontdekt. Voor meer info voer je uit: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/nn.po b/po/nn.po +index 33c8116..1f778c4 100644 +--- a/po/nn.po ++++ b/po/nn.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/fedora/language/nn/)\n" ++"Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/fedora-abrt/language/nn/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/no.po b/po/no.po +index 3a613be..2844b22 100644 +--- a/po/no.po ++++ b/po/no.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Norwegian (http://www.transifex.com/projects/p/fedora/language/no/)\n" ++"Language-Team: Norwegian (http://www.transifex.com/projects/p/fedora-abrt/language/no/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/nso.po b/po/nso.po +index 36f4a71..7086285 100644 +--- a/po/nso.po ++++ b/po/nso.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Northern Sotho (http://www.transifex.com/projects/p/fedora/language/nso/)\n" ++"Language-Team: Northern Sotho (http://www.transifex.com/projects/p/fedora-abrt/language/nso/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/or.po b/po/or.po +index 1d756ff..08c3a0b 100644 +--- a/po/or.po ++++ b/po/or.po +@@ -9,10 +9,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Oriya (http://www.transifex.com/projects/p/fedora-abrt/language/or/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -73,120 +73,206 @@ msgstr "%s ଏବଂ ବିଶ୍ଳେଷଣାତ୍ମକ ତଥ୍ୟ ଦା + msgid "Can't execute '%s'" + msgstr "'%s' କୁ ନିଷ୍ପାଦନ କରିପାରିବେ ନାହିଁ" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "ବିଜ୍ଞପ୍ତିକୁ ବନ୍ଦ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "ଚେତାବନୀ" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT ଦ୍ୱାରା ଚିହ୍ନାହୋଇଥିବା ସମସ୍ୟାଗୁଡ଼ିକ ବିଷୟରେ ଚାଳକଙ୍କୁ ସୂଚାଇବା ପାଇଁ ବିଜ୍ଞପ୍ତି କ୍ଷେତ୍ର ଆପଲେଟ" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "ମନୋଜ କୁମାର ଗିରି " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "ବିଦାୟ ନିଅନ୍ତୁ (_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "ଲୁଚାନ୍ତୁ" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "ବିବରଣୀ (_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "ଏକ ସମସ୍ଯା ଦେଖା ଦେଇଛି" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "ସବୁଦିନ ପାଇଁ ଏଡ଼ାଇ ଦିଅନ୍ତୁ" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "ଖୋଲନ୍ତୁ" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "ସମସ୍ୟାକୁ ପୂର୍ବରୁ ଖବର କରାଯାଇଛି" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "ଗୋଟିଏ ପରିଚିତ ସମସ୍ୟା ଦେଖାଦେଇଛି" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "ରିପୋର୍ଟ" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "ଗୋଟିଏ ସମସ୍ୟା ଦେଖାଦେଇଛି" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "ଏକ ସମସ୍ଯା ଖବର କରାଯାଇଛି" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "ଗୋଟିଏ ନୂତନ ସମସ୍ୟା ଦେଖାଦେଇଛି" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "ବିଜ୍ଞପ୍ତି ଦର୍ଶାଇପାରିବେ ନାହିଁ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ଚ୍ୟାନେଲରୁ ପଢ଼ିପାରିବେ ନାହିଁ: '%s'" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ଚ୍ୟାନେଲରେ ସାଙ୍କେତିକରଣକୁ ସେଟ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ଚ୍ୟାନେଲ ପାଇଁ ଅଟକ ରଖିପାରୁନଥିବା ଧାରାକୁ ଅନ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ର ମାଲିକତ୍ତ୍ୱ ନେଇ ପାରିବେ ନାହିଁ" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' କୁ ଲେଖିବା ପାଇଁ ଡିରେକ୍ଟୋରୀ ଖୋଲି ପାରିବେ ନାହିଁ" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "ଅଧିବେଶନ ପରିଚାଳକଙ୍କ ସହିତ ସଂଯୋଗ ଖୋଲିବାରେ ବିଫଳ: '%s', ବିଜ୍ଞପ୍ତି ହୁଏତଃ ପରବର୍ତ୍ତୀ ଲଗଇନରେ ପୁଣି ଦୃଶ୍ୟମାନ ହେବ" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "ବନ୍ଦ କରନ୍ତୁ (_C)" +@@ -195,7 +281,7 @@ msgstr "ବନ୍ଦ କରନ୍ତୁ (_C)" + msgid "_Defaults" + msgstr "ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "ବିନ୍ୟାସକୁ ଖବର କରିବାରେ ସମସ୍ୟା" +@@ -234,7 +320,7 @@ msgstr "ସମସ୍ଯାବହୁଳ ଡିରେକ୍ଟୋରୀ" + msgid "Configuration file" + msgstr "କନଫିଗରେସନ ଫାଇଲ" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [ବିକଳ୍ପଗୁଡିକ]" +@@ -301,19 +387,19 @@ msgstr "କୌଣସି ସମସ୍ୟା ସ୍ଥାନ ନାହିଁ" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "ଉପାଦାନ '%s' କୁ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ '%s' ରୁ ଅପସାରଣ କରିପାରିବେ ନାହିଁ" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "'%s' ନାମଟି ହଜିଯାଇଛି, ସେହି ନାମରେ କୌଣସି ସର୍ଭିସ ଚାଲୁଛି କି ନାହିଁ ଦୟାକରି ଯାଞ୍ଚ କରନ୍ତୁ।\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM ସେକଣ୍ଡ ନିଷ୍କ୍ରିୟ ହେବା ପରେ ପ୍ରସ୍ଥାନ କରନ୍ତୁ" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ଏହି ପ୍ରଗ୍ରାମକୁ ମୂଖ୍ଯ ଚାଳକ ଭାବରେ ଚଲାଇବା ଉଚିତ।" + +@@ -388,8 +474,85 @@ msgstr "ଅବୈଧ ସଂଖ୍ୟକ ସ୍ୱତନ୍ତ୍ରଚର" + msgid "Unknown option value: '%s'\n" + msgstr "ଅଜଣା ବିକଳ୍ପ ମୂଲ୍ୟ: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "ବ୍ୟାକଟ୍ରେସ ସୃଷ୍ଟି କରୁଅଛି" + +@@ -398,32 +561,32 @@ msgstr "ବ୍ୟାକଟ୍ରେସ ସୃଷ୍ଟି କରୁଅଛି" + msgid "Can't connect to system DBus: %s" + msgstr "ତନ୍ତ୍ର DBus ସହିତ ସଂଯୁକ୍ତ ହୋଇପାରିଲା ନାହିଁ: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "chown '%s' କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ଅପସାରଣ ବିଫଳ ହୋଇଛି: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତଥ୍ୟ ପାଇପାରିବେ ନାହିଁ: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତାଲିକା ପାଇପାରିବେ ନାହିଁ: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "ଅସ୍ଥାୟୀ ଫାଇଲ '%s' କୁ ନିର୍ମାଣ କରିପାରିବେ ନାହିଁ" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -431,7 +594,7 @@ msgid "" + msgstr "'%s' ରେ ଲେଖି ପାରିବେ ନାହିଁ। ସମସ୍ୟା'%s' କୁ ଅଗ୍ରାହ୍ୟ ସମସ୍ୟା '%s' ରୁ ବାହାର କରାଯିବ ନାହିଁ" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s' କୁ '%s' ନାମରେ ପରିବର୍ତ୍ତନ କରାପାରିବେ ନାହିଁ। ସମସ୍ୟା '%s' କୁ କାଢ଼ିବାରେ ବିଫଳ" +@@ -463,6 +626,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nସମସ୍ୟା ଡିରେକ୍ଟୋରୀ DIR ରେ କୋରଡମ୍ପର UUID ପାଇଁ ହିସାବ କରିଥାଏ ଏବଂ ସଂରକ୍ଷଣ କରିଥାଏ" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -489,29 +671,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\npython କ୍ରାସ ଡମ୍ପର UUID ଏବଂ DUPHASH କୁ ହିସାବ କରିଥାଏ ଏବଂ ସଂରକ୍ଷଣ କରିଥାଏ" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "ବ୍ୟବହାର ବିଧି: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "ଫାଇଲ {0} ଅବସ୍ଥିତ ନାହିଁ" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "ମୂଳ ପାଖରୁ oops ପାଠ୍ୟକୁ ବାହାର କରୁଅଛି" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "{0} କୁ କାର୍ଯ୍ୟକାରୀ କରିପାରିବେ ନାହିଁ:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "oops ସନ୍ଦେଶକୁ ବାହାର କରିପାରିବେ ନାହିଁ: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops ପାଠ୍ୟ ସଫଳତାର ସହିତ ବାହାର କରାଯାଇଛି" + +@@ -651,6 +833,38 @@ msgstr "ଏହି ଡିରେକ୍ଟୋରୀ ମଧ୍ଯରୁ ଫାଇଲ + msgid "Preserve this directory" + msgstr "ଏହି ଡିରେକ୍ଟୋରୀକୁ ସଂରକ୍ଷଣ କରନ୍ତୁ" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "ବ୍ୟବହାରକାରୀ ସ୍ଥାନ କୋଡ ଦ୍ୱାରା ପ୍ରଦତ୍ତ ସଂକେତ" +@@ -841,11 +1055,15 @@ msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣ + msgid "Print search string(s) to stdout and exit" + msgstr "stdout ରେ ସନ୍ଧାନ ବାକ୍ୟଖଣ୍ଡ(ଗୁଡ଼ିକୁ) ମୁଦ୍ରଣ କରନ୍ତୁ ଏବଂ ପ୍ରସ୍ଥାନ କରନ୍ତୁ" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "ଏହି ସମସ୍ୟାକୁ ଅଦ୍ୟତନ କରିପାରିବେ ନାହିଁ: ଗୋଟିଏରୁ ଅଧିକ oops ମିଳିଛି" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d ସେକେଣ୍ଡ ପାଇଁ ସୁପ୍ତ ଅଛି" +@@ -1417,31 +1635,35 @@ msgstr "ମିଳିଥିବା oopses ସହିତ ଫାଇଲଗୁଡ଼ି + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ଗୋଟିଏରୁ ଅଧିକ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ଚିହ୍ନିଟ କରିଛି" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "ବ୍ୟବହାର ବିଧି: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "ତାଲିକାଟି ଏପର୍ଯ୍ୟନ୍ତ ସମସ୍ୟାଗୁଡ଼ିକୁ ଖବର କରିନାହିଁ[DIR ଗୁଡ଼ିକରେ]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "ସମସ୍ଯା ଡିରେକ୍ଟୋରୀ DIRରୁ ଫାଇଲଗୁଡ଼ିକୁ ବାହାର କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "DIR ରେ ସମସ୍ୟା ତଥ୍ୟକୁ ବିଶ୍ଳେଷଣ କରନ୍ତୁ ଏବଂ ଖବର କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR ବିଷୟରେ ସୂଚନାକୁ ମୁଦ୍ରଣ କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "ନିକଟରେ ହୋଇଥିବା ନଷ୍ଟର ସଂଖ୍ୟା ମୁଦ୍ରଣ କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ଅଧିକ ସୂଚନା ପାଇଁ 'abrt-cli COMMAND --help' କୁ ଦେଖନ୍ତୁ" + +@@ -1503,6 +1725,45 @@ msgstr "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟ ସୀମା + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT %u ସମସ୍ୟା(ଗୁଡ଼ିକୁ) ଚିହ୍ନଟ କରିଛି। ଅଧିକ ସୂଚନା ପାଇଁ ଏହାକୁ ଚଲାନ୍ତୁ: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/pa.po b/po/pa.po +index fc02fa8..b11efab 100644 +--- a/po/pa.po ++++ b/po/pa.po +@@ -3,17 +3,17 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# asaini , 2014 +-# asaini , 2013 ++# Amandeep Singh Saini , 2014 ++# Amandeep Singh Saini , 2013 + # Jiří Moskovčák , 2011 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/fedora-abrt/language/pa/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -74,120 +74,206 @@ msgstr "%s ਅਤੇ ਡਾਇਗਨੌਸਟਿਕ ਡਾਟਾ ਜਮ੍ਹਾ + msgid "Can't execute '%s'" + msgstr "'%s' ਨੂੰ ਚਲਾ ਨਹੀਂ ਸਕਦਾ" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "ਸੂਚਨਾ ਬੰਦ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "ਚੇਤਾਵਨੀ" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ਸੂਚਨਾ ਖੇਤਰ ਐਪਲਿਟ ਜੋ ਯੂਜ਼ਰ ਨੂੰ ABRT ਦੁਆਰਾ ਲੱਭੇ ਮੁੱਦਿਆਂ ਬਾਰੇ ਦੱਸਦਾ ਹੈ" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Jaswinder Singh Phulewala " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "ਛੱਡ ਦਿਓ (_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "ਓਹਲੇ" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "ਸੰਬੰਧਿਤ (_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "ਸਮੱਸਿਆ ਖੋਜੀ ਗਈ ਹੈ" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "ਹਮੇਸ਼ਾ ਲਈ ਅਣਦੇਖਿਆ ਕਰੋ" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "ਖੋਲ" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "ਸਮੱਸਿਆ ਪਹਿਲਾਂ ਹੀ ਸੂਚਿਤ ਕੀਤੀ ਜਾ ਚੁੱਕੀ ਹੈ" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "ਇੱਕ ਗਲਤੀ ਆਈ ਹੈ " + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "ਰਿਪੋਰਟ" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "ਇੱਕ ਸਮੱਸਿਆ ਆਈ ਹੈ" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "ਇੱਕ ਮੁਸ਼ਕਿਲ ਦੀ ਇਤਲਾਹ ਕੀਤੀ ਗਈ ਹੈ" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "ਇੱਕ ਨਵੀਂ ਸਮੱਸਿਆ ਆਈ ਹੈ" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "ਸੂਚਨਾ ਨਹੀਂ ਵੇਖਾ ਸਕਿਆ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "'%s' ਤੋਂ ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ਚੈਨਲ ਤੇ ਇੰਕੋਡਿੰਗ ਸੈੱਟ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ਚੈਨਲ ਲਈ ਨਾਨ-ਬਲਾਕਿੰਗ ਮੋਡ ਨਹੀਂ ਚਾਲੂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ਦਾ ਮਾਲਕ ਨਹੀਂ ਬਣ ਸਕਦਾ" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' ਨੂੰ ਲਿਖਣ ਲਈ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਖੋਲ ਸਕਿਆ" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "ਸੈਸ਼ਨ ਪ੍ਰਬੰਧਕ ਲਈ ਸੰਪਰਕ ਖੋਲ੍ਹਣ ਵਿੱਚ ਅਸਫਲ: '%s' ਸੂਚਨਾ ਅਗਲੇ ਲਾਗਇਨ ਤੇ ਮੁੜ ਪਰਗਟ ਹੋ ਸਕਦੀ ਹੈ" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "ਡਾਇਰੈਕਟਰੀ ਚੁਰਾਉਣ ਤੋਂ ਪਹਿਲਾਂ ਪੁੱਛੋ" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "uReport ਸਵੈ-ਚਲਿਤ ਭੇਜੋ" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "ਸਟੈਕ ਪੈਦਾ ਕਰਨ ਲਈ ਕੋਰਡੰਪ ਫਾਈਲ ਜਰੂਰੀ ਹੈ ਜਿਹੜੀ ਕਿ ਸਮਾਂ ਅਤੇ ਜਗ੍ਹਾ ਲੈਣ ਵਾਲੀ ਕਾਰਵਾਈ ਹੈ। ABRT ਇੱਕ ਸੇਵਾ ਮੁਹੱਈਆ ਕਰਵਾਉਂਦਾ ਹੈ ਜਿਹੜੀ ਕੋਰਡੰਪ ਤੋਂ ਸਟੈਕ ਟਰੇਸ ਪੈਦਾ ਕਰਦੀ ਹੈ ਪਰ ਤੁਹਾਨੂੰ ਇਸ ਸੇਵਾ ਨੂੰ ਕੋਰਡੰਪ ਅੱਪਲੋਡ ਕਰਨਾ ਪੈਂਦਾ ਹੈ। ਇਸ ਚੋਣ ਨੂੰ ਅਯੋਗ ਕਰਨ ਨਾਲ ABRT ਕੋਰਡੰਪ ਨੂੰ ਬਿਨਾਂ ਪੁੱਛੇ ਹੀ ਅੱਪਲੋਡ ਕਰ ਦੇਵੇਗਾ।" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "ਕੋਰਡੰਪ ਅੱਪਲੋਡ ਕਰਨ ਤੋਂ ਪਹਿਲਾਂ ਪੁੱਛੋ" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "ਸੰਵੇਦਨਸ਼ੀਲ ਜਾਣਕਾਰੀ ਲਈ ਨਿੱਜੀ ਟਿਕਟ ਦੀ ਬੇਨਤੀ ਕਰੋ" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "ਅਧੂਰੀਆਂ ਸਮੱਸਿਆਵਾਂ ਲਈ ਸੂਚਿਤ ਕਰੋ" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "ਬੰਦ ਕਰੋ (_C)" +@@ -196,7 +282,7 @@ msgstr "ਬੰਦ ਕਰੋ (_C)" + msgid "_Defaults" + msgstr "ਮੂਲ (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "ਮੁਸ਼ਕਲ ਸੂਚਿਤ ਕਰਦੀ ਹੋਈ ਸੰਰਚਨਾ" +@@ -235,7 +321,7 @@ msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ" + msgid "Configuration file" + msgstr "ਸੰਰਚਨਾ ਫਾਇਲ" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [ਚੋਣਾਂ]" +@@ -302,19 +388,19 @@ msgstr "ਕੋਈ ਸਮੱਸਿਆ ਸਪੇਸ ਨਹੀਂ ਬਚੀ" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "ਐਲੀਮੈਂਟ '%s' ਨੂੰ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ '%s' ਤੋਂ ਹਟਾ ਨਹੀਂ ਸਕਦਾ" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "ਨਾਂ '%s' ਗੁੰਮ ਗਿਆ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਜਾਂਚੋ ਕਿ ਇਸ ਨਾਂ ਵਾਲਾ ਹੋਰ ਜੰਤਰ ਤਾਂ ਨਹੀਂ ਚੱਲ ਰਿਹਾ।\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM ਸਕਿੰਟਾਂ ਦੀ ਕਾਰਵਾਈ ਤੋਂ ਬਾਅਦ ਬੰਦ ਕਰੋ" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ਇਹ ਪਰੋਗਰਾਮ ਪਰਬੰਧਕ(root) ਦੇ ਤੌਰ ਤੇ ਚਲਾਉਣਾ ਜਰੂਰੀ ਹੈ।" + +@@ -389,8 +475,85 @@ msgstr "ਅਢੁਕਵੀਂ ਗਿਣਤੀ ਦੇ ਆਰਗੂਮੈਂਟ" + msgid "Unknown option value: '%s'\n" + msgstr "ਅਣਪਛਾਤਾ ਚੋਣ ਮੁੱਲ: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "ਬੈਕਟਰੇਸ ਬਣਾ ਰਿਹਾ" + +@@ -399,32 +562,32 @@ msgstr "ਬੈਕਟਰੇਸ ਬਣਾ ਰਿਹਾ" + msgid "Can't connect to system DBus: %s" + msgstr "ਸਿਸਟਮ DBus ਨਾਲ ਜੁੜ ਨਹੀਂ ਸਕਿਆ: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "chown '%s' ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਹਟਾਉਣ ਵਿੱਚ ਫੇਲ ਹੋਇਆ: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਡਾਟਾ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਸੂਚੀ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "ਆਰਜੀ ਫ਼ਾਈਲ '%s' ਨਹੀਂ ਬਣਾ ਸਕਦਾ" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -432,7 +595,7 @@ msgid "" + msgstr "'%s' ਵਿੱਚ ਨਹੀਂ ਲਿਖ ਸਕਦਾ। '%s' ਮੁਸ਼ਕਿਲ ਨੂੰ ਅਣਗੌਲੀਆਂ ਮੁਸ਼ਕਿਲਾਂ '%s' ਵਿੱਚੋਂ ਕੱਢਿਆ ਨਹੀਂ ਜਾਵੇਗਾ" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s' ਦਾ ਨਾਂ '%s' ਵਿੱਚ ਨਹੀਂ ਬਦਲ ਸਕਦਾ। ਮੁਸ਼ਕਿਲ '%s' ਨੂੰ ਕੱਢਣ ਵਿੱਚ ਅਸਫਲ" +@@ -464,6 +627,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nਸਮੱਸਿਆ ਡਾਇਰੈਟਰੀ DIR ਵਿੱਚ ਕੋਰਡੰਪ ਦਾ UUID ਕੈਲਕੂਲੇਟ ਕਰਦਾ ਹੈ ਅਤੇ ਸੰਭਾਲਦਾ ਹੈ" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "ਕੋਪਡੰਪ '%s' ਨੂੰ ਨਿਖੇੜ ਰਿਹਾ" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "ਗੁੰਮ ਉਸਾਰੀ id: %s" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "ਵਰਤੋਂ: %s [-v] [-o OUTFILE] -c COREFILE" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "COREFILE ਦਰਸਾਈ ਨਹੀਂ ਗਈ ਹੈ" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -490,29 +672,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nਪਾਇਥਨ ਕਰੈਸ਼ ਡੰਪ ਦੇ UUID ਅਤੇ DUPHASH ਨੂੰ ਕੈਲਕੂਲੇਟ ਕਰੋ ਅਤੇ ਸੰਭਾਲੋ" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "ਵਰਤੋਂ: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "ਫਾਇਲ {0} ਮੌਜੂਦ ਨਹੀਂ ਹੈ" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "ਕੋਰ ਤੋਂ oops ਪਾਠ ਨਿਖੇੜ ਰਿਹਾ ਹੈ" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "ਅਮਲ ਵਿੱਚ ਨਹੀਂ ਲਿਆ ਸਕਦਾ {0}:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "oops ਸੁਨੇਹੇ ਨੂੰ ਨਿਖੇੜ ਨਹੀਂ ਸਕਦਾ: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops ਸਫਲਤਾਪੂਰਵਕ ਨਿਖੇੜਿਆ ਗਿਆ" + +@@ -652,6 +834,38 @@ msgstr "ਇਸ ਡਾਇਰੈਕਟਰੀਆਂ ਵਿਚਲੀਆਂ ਫਾਇ + msgid "Preserve this directory" + msgstr "ਇਹ ਡਾਇਰੈਕਟਰੀ ਨੂੰ ਬਰਕਰਾਰ ਰੱਖੋ" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "ਯੂਜ਼ਰਸਪੇਸ ਕੋਡ ਦੁਆਰਾ ਭੇਜਿਆ ਸੰਕੇਤ" +@@ -842,11 +1056,15 @@ msgstr "1 ਪ੍ਰਤੀ ਸੈਕਿੰਡ ਨਾਲ ਥਰੌਟਲ ਮੁਸ਼ + msgid "Print search string(s) to stdout and exit" + msgstr "ਖੋਜ ਸਤਰਾਂ ਨੂੰ stdout ਤੇ ਪ੍ਰਿੰਟ ਕਰੋ ਅਤੇ ਬਾਹਰ ਜਾਓ" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "ਮੁਸ਼ਕਿਲ ਨੂੰ ਅੱਪਡੇਟ ਨਹੀਂ ਕਰ ਸਕਦਾ: ਇੱਕ ਤੋਂ ਜਿਆਦਾ oops ਲੱਭੀਆਂ" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d ਸੈਕਿੰਡਾਂ ਲਈ ਸੌਂ ਰਿਹਾ" +@@ -1418,31 +1636,35 @@ msgstr "ਲੱਭੀਆਂ ਹੋਈਆਂ oopses ਵਾਲੀਆਂ ਫਾਈ + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ਇੱਕ ਤੋਂ ਜਿਆਦਾ ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀਆਂ ਪਛਾਣਦਾ ਹੈ" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "ਵਰਤੋਂ: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "ਲਿਸਟ ਵਿੱਚ ਹਾਲੇ ਸਮੱਸਿਆ ਰਿਪੋਰਟ ਨਹੀਂ ਦਿੱਤੀ [DIRs ਵਿੱਚ]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਹਟਾਓ" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "DIR ਵਿੱਚ ਸਮੱਸਿਆ ਡਾਟੇ ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਰਿਪੋਰਟ ਕਰੋ" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR ਬਾਰੇ ਜਾਣਕਾਰੀ ਪ੍ਰਿੰਟ ਕਰੋ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "ਹਾਲੀਆ ਹੋਏ ਕਰੈਸ਼ਾਂ ਦੀ ਗਿਣਤੀ ਛਾਪੋ" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ 'abrt-cli COMMAND --help' ਵੇਖੋ" + +@@ -1504,6 +1726,45 @@ msgstr "ਸਿਰਫ਼ ਸਮਾਂ-ਮੋਹਰ ਤੋਂ ਵੀ ਹਾਲੀ + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT ਨੇ %u ਸਮੱਸਿਆ(ਸਮੱਸਿਆਵਾਂ) ਲੱਭੀਆਂ ਹਨ। ਜਿਆਦਾ ਜਾਣਕਾਰੀ ਲਈ ਚਲਾਓ: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/pl.po b/po/pl.po +index b138683..c2861a4 100644 +--- a/po/pl.po ++++ b/po/pl.po +@@ -9,10 +9,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Polish (http://www.transifex.com/projects/p/fedora-abrt/language/pl/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -73,120 +73,206 @@ msgstr "%s i dane diagnostyczne zostały wysłane" + msgid "Can't execute '%s'" + msgstr "Nie można wykonać \"%s\"" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nie można zamknąć powiadomienia: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Ostrzeżenie" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Piotr Drąg , 2009\nTomasz Chrzczonowicz , 2009" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "Za_kończ" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Ukryj" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "_O programie" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Wykryto problem" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Zawsze ignoruj" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Otwórz" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "Problem został już zgłoszony" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Zgłoś" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Wystąpił problem" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Zgłoszono problem" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Wystąpił nowy problem" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, 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:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, 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:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nie można zmienić właściciela \"%s\"" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nie można otworzyć katalogu do zapisania \"%s\"" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, 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:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "Pytanie przed przechwytywaniem katalogu" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "Automatyczne wysyłanie uReport" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "Skrócone zgłaszanie" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "Ciche skrócone zgłaszanie" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "Plik zrzutu core jest niezbędny do utworzenia wyjątku stosu, co jest działaniem czaso- i pracochłonnym. Program ABRT dostarcza usługę, która może tworzyć wyjątki stosu z plików zrzutu core, ale trzeba do tego wysłać zrzut do usługi. Jeśli ta opcja jest wyłączona, to program ABRT będzie wysyłał zrzuty core bez pytania." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "Program ABRT przechowuje dane problemu w katalogach. Kiedy program ABRT potrzebuje zapisywalnego katalogu, to jest on przenoszony z położenia systemowego do katalogu domowego użytkownika. Jeśli ta opcja jest wyłączona, to program ABRT będzie przenosił katalogi problemów bez pytania." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "uReport jest krótkim i w pełni anonimowym opisem problemu. Program ABRT używa uReportów do szybkiego, globalnego wykrywania duplikatów. W domyślnej konfiguracji uReport jest wysyłany na początku procesu zgłaszania. Jeśli ta opcja jest włączona, to uReporty będą wysyłane automatycznie od razu po wykryciu problemu." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "Jeśli ta opcja jest włączona, to proces zgłaszania rozpoczęty po naciśnięciu przycisku Zgłoś w powiadomieniu o problemie zostanie przerwany po wysłaniu uReportu. Zawsze można użyć domyślnej przeglądarki problemów, aby utworzyć pełne zgłoszenie." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "Jeśli ta opcja jest włączona, to program ABRT nigdy nie będzie wyświetlał powiadomień o zgłoszonych problemach. Jest brane pod uwagę tylko, jeśli włączone jest Skrócone zgłaszanie." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "Pytanie przed wysłaniem zrzutu core" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "Jeśli ta opcja jest włączona, to program ABRT będzie tworzył zgłoszenie błędu z ograniczonym dostępem zawsze, kiedy wykryte zostaną prywatne dane." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "Żądanie prywatnych zgłoszeń dla prywatnych informacji" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "Powiadamianie o niepełnych problemach" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "Niepełne problemy są wykrywane, kiedy komputer jest wyłączany lub użytkownik jest wylogowywany. Aby dostarczać wartościowe zgłoszenia błędów, program ABRT nie będzie umożliwiał wysłania takich problemów." ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "Za_mknij" +@@ -195,7 +281,7 @@ msgstr "Za_mknij" + msgid "_Defaults" + msgstr "_Domyślne" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Konfiguracja zgłaszania problemów" +@@ -234,7 +320,7 @@ msgstr "Katalog problemu" + msgid "Configuration file" + msgstr "Plik konfiguracji" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [opcje]" +@@ -301,19 +387,19 @@ msgstr "Brak miejsca na problemy" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nie można usunąć elementu \"%s\" z katalogu problemów \"%s\"" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "Nazwa \"%s\" została utracona. Proszę sprawdzić, czy inna usługa będąca właścicielem nazwy jest uruchomiona.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Kończy działanie po LICZBIE sekund nieaktywności" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Ten program musi być uruchamiany jako root." + +@@ -388,8 +474,85 @@ msgstr "Nieprawidłowa liczba parametrów" + msgid "Unknown option value: '%s'\n" + msgstr "Nieznana wartość opcji: \"%s\"\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "Użycie: %s [-vd] KATALOG_SZPULI_ABRT KATALOG_WYSYŁANIA NAZWA_PLIKU\n\n -v - Więcej informacji\n -d - Usuwa wysłane archiwum\n KATALOG_SZPULI_ABRT - Katalog, do którego rozpakowywane są prawidłowo wysłane archiwa\n KATALOG_WYSYŁANIA - Katalog, w którym przechowywane są wysłane archiwa\n NAZWA_PLIKU - Nazwa pliku wysłanego archiwum\n" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "Nie jest katalogiem: \"{0}\"" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "Pomijanie: \"{0}\" (rozpoczyna się od ukośnika)" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "Pomijanie: \"{0}\" (rozpoczyna się od kropki)" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "Pomijanie: \"{0}\" (zawiera ..)" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "Pomijanie: \"{0}\" (zawiera spację)" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "Pomijanie: \"{0}\" (zawiera tabulację)" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "Nie można zmienić katalogu na \"{0}\"" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "Nieznany typ pliku: \"{0}\"" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "Nie można utworzyć katalogu roboczego w \"{0}\"" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "Nie można przenieść \"{0}\" do \"{1}\"" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "Nie można skopiować \"{0}\" do \"{1}\"" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "Błąd sprawdzania w \"{0}\"" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "Rozpakowywanie \"{0}\"" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "Nie można utworzyć katalogu \"{0}\"" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "Nie można rozpakować \"{0}\"" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "Pomyślnie przetworzono \"{0}\"" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Tworzenie wyjątku" + +@@ -398,32 +561,32 @@ msgstr "Tworzenie wyjątku" + msgid "Can't connect to system DBus: %s" + msgstr "Nie można połączyć z systemową magistralą D-Bus: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Nie można zmienić właściciela \"%s\": %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Usunięcie katalogu problemu się nie powiodło: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Nie można uzyskać danych problemu z abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Nie można utworzyć pliku tymczasowego \"%s\"" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -431,7 +594,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:262 ++#: ../src/lib/ignored_problems.c:264 + #, 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" +@@ -463,6 +626,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d KATALOG\n\nOblicza i zapisuje UUID zrzutu core w KATALOGU problemu" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "Analizowanie zrzutu core \"%s\"" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "Brak identyfikatora budowania: %s" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "Użycie: %s [-v] [-o PLIK_WYJŚCIOWY] -c PLIK_CORE" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "Nie podano PLIKU_CORE" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -489,29 +671,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d KATALOG\n\nOblicza i zapisuje UUID i SUMĘ_DUPLIKATU dla zrzutów awarii języka Python" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "Użycie: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Plik {0} nie istnieje" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "Wypakowywanie tekstu awarii oops z pliku core" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "Nie można przetworzyć {0}:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "Nie można wypakować komunikatu oops: \"{0}\"" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Pomyślnie wypakowano tekst awarii oops" + +@@ -651,6 +833,38 @@ msgstr "Usuwa pliki wewnątrz tego katalogu" + msgid "Preserve this directory" + msgstr "Zachowuje ten katalog" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "Nie można uruchomić \"%s\", komunikat błędu: \"%s\"" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "Nie jest liczbą w \"%s\"" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "Użycie: %s [-v]" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "Nie można uzyskać bieżącego katalogu roboczego, ponieważ został prawdopodobnie usunięty" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "Ten błąd został już zgłoszony:" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "Już wysłano uReport, kolejny nie zostanie wysłany" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "reporter-ureport się nie powiodło z kodem wyjścia %d" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "Sygnał wysłany przez kod w przestrzeni użytkownika" +@@ -841,11 +1055,15 @@ msgstr "Przełącza tworzenie katalogów problemów na jeden na sekundę" + 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:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "Skompilowanie wyrażenia regularnego się nie powiodło" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + 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:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Usypianie na %d sekund" +@@ -1417,31 +1635,35 @@ msgstr "Usuwa pliki z odnalezionymi awariami" + msgid "'%s' identifies more than one problem directory" + msgstr "\"%s\" określa więcej niż jeden katalog problemu" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Użycie: abrt-cli [--version] POLECENIE [KATALOG]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Wyświetla listę jeszcze nie zgłoszonych problemów [w KATALOGACH]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "Wyświetla listę problemów [w KATALOGACH]" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Usuwa KATALOG problemu" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analizuje i zgłasza dane problemu w KATALOGU" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Wyświetla informacje o KATALOGU" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Wyświetla liczbę ostatnich awarii" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Wydanie polecenia \"abrt-cli POLECENIE --help\" wyświetli więcej informacji" + +@@ -1503,6 +1725,45 @@ msgstr "Wyświetla tylko problemy nowsze niż podany czas" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "Program ABRT wykrył %u problemy. Więcej informacji po wykonaniu polecenia: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "& report [opcje] KATALOG..." ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Usuwa KATALOG_PROBLEMU po zgłoszeniu" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Usuwanie \"%s\"" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/pt.po b/po/pt.po +index 9ab6a9b..0470cd2 100644 +--- a/po/pt.po ++++ b/po/pt.po +@@ -5,21 +5,21 @@ + # Translators: + # Bruno Martins , 2011 + # Jiří Moskovčák , 2011 +-# alfalb_mansil , 2014 ++# Manuela Silva , 2014 + # manuelmarque , 2012 + # Miguel Sousa , 2011 + # nmartins , 2011 +-# pmdaniel , 2013 ++# Pedro Marques Daniel , 2013 + # Ricardo Pinto , 2012 + # Rui Gouveia , 2011-2012 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora-abrt/language/pt/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -80,120 +80,206 @@ msgstr "%s e os dados de diagnóstico foram submetidos" + msgid "Can't execute '%s'" + msgstr "Não é possível executar '%s'" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Não é possível fechar a notificação: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Aviso" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Rui Gouveia / Manuela Silva " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "_Sair" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Ocultar" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "_Sobre o ..." + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Detetado um problema" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Ignorar para sempre" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Abrir" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "O problema já foi comunicado" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "Ocorreu um Problema Conhecido" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Comunicar" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Ocorreu um Problema" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Foi Comunicado um Problema" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Ocorreu um Novo Problema" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, 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:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Não é possível ler do canal 'gio': '%s'" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Não é posssível definir a codificação no canal 'gio': %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Não é possível ligar o modo 'não bloquear' para o canal 'gio': %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Não é possível tomar posse de '%s'" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Não é possível abrir a diretoria para gravar '%s'" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + 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:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "_Fechar" +@@ -202,7 +288,7 @@ msgstr "_Fechar" + msgid "_Defaults" + msgstr "_Predefiniçoes" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Configuração da Comunicação de Problemas" +@@ -241,7 +327,7 @@ msgstr "Diretoria dos Problemas" + msgid "Configuration file" + msgstr "Ficheiro de Configuração" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [opções]" +@@ -308,19 +394,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + 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 ++#: ../src/dbus/abrt-dbus.c:763 ../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 ser executado.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../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 inatividade" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa tem que ser executado como 'root'." + +@@ -395,8 +481,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Gerando o backtrace" + +@@ -405,32 +568,32 @@ msgstr "Gerando o backtrace" + msgid "Can't connect to system DBus: %s" + msgstr "Não é possível ligar ao DBus do sistema: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Não é possível fazer chown '%s': %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Falha ao apagar o directório de problema: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Não é possível obter dados do problema a partir do abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -438,7 +601,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -470,6 +633,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nCalcula e grava o UUID de coredump no directório de problemas DIR" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -496,29 +678,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nCalcula e grava o UUID e DUPHASH de dumps do python" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Ficheiro {0} não existe" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -658,6 +840,38 @@ msgstr "Remover ficheiros dentro deste directório" + msgid "Preserve this directory" + msgstr "Preservar este directório" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -848,11 +1062,15 @@ msgstr "" + 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:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1424,31 +1642,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Utilização: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Mostrar problemas [em DIRs] ainda não reportados" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Remover directório de problema DIR" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analisar e reportar problema em DIR" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Apresentar informações sobre DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informação" + +@@ -1510,6 +1732,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/pt_BR.po b/po/pt_BR.po +index 0849e79..b380830 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -5,12 +5,12 @@ + # Translators: + # Arthur Rodrigues Araruna , 2012 + # ataliba , 2012 +-# Cleiton cleitonlima , 2011,2013 ++# Cleiton Lima , 2011,2013 + # cleitonlima , 2011 + # Glaucia Freitas , 2012,2014 + # Jiří Moskovčák , 2011 +-# Jonatas Zamboim de Vasconcellos , 2014 +-# Juranir Santos , 2013 ++# jonataszv , 2014 ++# Juranir dos Santos , 2013 + # Marcel, 2013 + # Marcos Lauande , 2012 + # nullck , 2011 +@@ -18,14 +18,15 @@ + # Rodrigo Padula , 2011 + # Taylon Silmer , 2011 + # Teseu , 2011 ++# Vitor Lobo Ramos , 2014 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/fedora-abrt/language/pt_BR/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -86,120 +87,206 @@ msgstr "%s e os dados do diagnóstico foram submetidos" + msgid "Can't execute '%s'" + msgstr "Não é possível executar '%s'" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Não é possível fechar a notificação: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Aviso" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Ricardo Gyorfy \nGlaucia Cintra\nTaylon Silmer \nTeseu " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "_Sair" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Esconder" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "_Sobre" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Problema detectado" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Sempre ignorar" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Abrir" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "O Problema já foi Reportado" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Relatar" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Ocorreu um Problema" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Um problema foi relatado" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Um novo problema ocorreu" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, 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:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, 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:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Não foi possível obter propriedade de '%s'" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, 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:1465 ++#: ../src/applet/applet.c:1476 + #, 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:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "Pergunte antes de transferir o diretório" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "Enviar automaticamente ao uReport" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "Reportar resumidamente" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "Reportar resumidamente de maneira anônima" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "O arquivo coredump é necessário para a geração de rastreamento de pilha que é o tempo e o espaço consumindo da operação. O ABRT oferece um serviço que gera rastreamento de pilha do coredump mas é necessário fazer upload do coredump a este serviço. Com esta opção desabilitada, o ABRT fará o upload do coredump automaticamente." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "O ABRT armazena dados do problema em diretórios. Sempre que o ABRT precisar gravar o diretório, este será movido do local do sistema para o seu diretório home. Com esta opção desabilitada o ABRT irá mover o diretório problemático automaticamente." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "uReport é a descrição curta e completamente anônima de um problema. O ABRT usa o uReports para uma rápida detecção de duplicação generalizada. Na configuração padrão o uReport é enviado no início do processo da comunicação. Com esta opção habilitada o uReports será enviado automaticamente e imediatamente após a detecção problema." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "Se você clicar neste botão, o uReport será interrompido antes de ser enviado e aparecerá uma notificação. Lembre-se que você poderá usar o navegador padrão para fazer o relatório completo do problema." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "Com esta opção habilitada o ABRT nunca mostrará as notificações de problemas relatados. Terá efeito somente se o relatório resumido estiver habilitado." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "Pergunte antes de fazer o upload do coredump" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "Solicite um ticket privado para informações minuciosas" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "Notificar problemas incompletos" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "Problemas incompletos estão sendo detectados enquanto o computador for desligado ou o usuário sair. A fim de fornecer relatórios minuciosos dos problemas, o ABRT não enviará os relatórios agora." ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "_Fechar" +@@ -208,7 +295,7 @@ msgstr "_Fechar" + msgid "_Defaults" + msgstr "_Padrão" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Problema de configuração reportado" +@@ -247,7 +334,7 @@ msgstr "Diretório do problema" + msgid "Configuration file" + msgstr "Arquivo de Configuração" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -314,19 +401,19 @@ msgstr "Nenhum problema de espaço." + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Não é possível remover o elemento '%s' do diretório de problema '%s'" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 que possui o nome não está em execução.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Sai após os segundos NUM de inatividade" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa deve estar sendo executado como root." + +@@ -401,8 +488,85 @@ msgstr "Número de argumentos é inválido" + msgid "Unknown option value: '%s'\n" + msgstr "Valor de opção desconhecida: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Gerando o backtrace" + +@@ -411,32 +575,32 @@ msgstr "Gerando o backtrace" + msgid "Can't connect to system DBus: %s" + msgstr "Não é possível conectar-se com o sistema DBus: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Não é possível realizar o chown'%s': %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Remoção do diretório problema falhou: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Não foi possível obter dados de problemas do abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, 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:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -444,7 +608,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:262 ++#: ../src/lib/ignored_problems.c:264 + #, 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'" +@@ -476,6 +640,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nCalcula e salva o UUID do coredump no DIR do diretório do problema" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "Analizando o coredump '%s'" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "Construção perdida id: %s" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "Maneira de usar: %s [-v] [-o OUTFILE] -c COREFILE" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "COREFILE não foi especificado" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -502,29 +685,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nCalcula e salva o UUID e DUPHASH dos despejos de travamentos do python" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "Uso: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "O arquivo {0} não existe" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "Extraindo o texto do oops do núcleo" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "Não foi possível processar {0}:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "Não foi possível extrair a mensagem do oops: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Texto do oops extraído com sucesso" + +@@ -664,6 +847,38 @@ msgstr "Remova arquivos de dentro deste diretório" + msgid "Preserve this directory" + msgstr "Preservar este diretório" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "Sinal enviado pelo código no espaço do usuário" +@@ -854,11 +1069,15 @@ msgstr "Alterna a criação de diretório do problema para 1 por segundo" + 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:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "Não foi possível atualizar o problema: mais do que um oops encontrado" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Dormindo por %d segundos" +@@ -1430,31 +1649,35 @@ msgstr "Remover arquivos com os oopses encontrados" + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identifica mais do que um diretório de problema" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Uso: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Lista ainda não reportou problemas [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Remover DIR de diretório de problema" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analisar e reportar dados do problema no DIR" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Imprimir informações sobre o DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Mostrar a contagem das quebras recentes" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informações." + +@@ -1516,6 +1739,45 @@ msgstr "Mostrar apenas problemas mais recentes que a marca de tempo especificada + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT detectou %u problema(s). Para mais informações execute: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ro.po b/po/ro.po +index ac887e0..badc1d1 100644 +--- a/po/ro.po ++++ b/po/ro.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Romanian (http://www.transifex.com/projects/p/fedora/language/ro/)\n" ++"Language-Team: Romanian (http://www.transifex.com/projects/p/fedora-abrt/language/ro/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ru.po b/po/ru.po +index 55799f5..30d8367 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -5,7 +5,7 @@ + # Translators: + # Andrey Gushchin , 2012 + # Artyom Kunyov , 2012 +-# i.gnatenko.brain , 2013 ++# Igor Gnatenko , 2013 + # Jiří Moskovčák , 2011 + # Misha Shnurapet , 2011 + # Stanislav Darchinov , 2011 +@@ -16,10 +16,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Russian (http://www.transifex.com/projects/p/fedora-abrt/language/ru/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -80,120 +80,206 @@ msgstr "%s и данные диагностики отправлены" + msgid "Can't execute '%s'" + msgstr "Не удалось выполнить «%s»" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Не удалось закрыть уведомление: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Предупреждение" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Значок в области уведомления сообщает об обнаруженных сбоях" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Yulia \nMisha Shnurapet \nYuri Khabarov " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "В_ыход" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Скрыть" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "_О программе" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Проблема обнаружена" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Игнорировать всегда" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Открыть" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "Отчёт о неполадке уже отправлен" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "Произошла известная проблема" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Сообщить" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Произошёл сбой" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Отчет о неполадке уже отправлен" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Произошла проблема" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "Не удалось показать уведомление: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Не удалось выполнить чтение из канала gio: «%s»" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Не удалось изменить шифрование в канале gio: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Не удалось включить неблокирующий режим для канала gio: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не удается стать владельцем «%s»" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Не удалось открыть каталог для записи «%s»" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "Не удалось открыть соединение с менеджером сеанса: «%s», уведомление может появиться при следующем входе" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "Автоматически отправлять uReport" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "_Закрыть" +@@ -202,7 +288,7 @@ msgstr "_Закрыть" + msgid "_Defaults" + msgstr "По _умолчанию" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Конфигурация отчетов о сбоях" +@@ -241,7 +327,7 @@ msgstr "Каталог с данными сбоя" + msgid "Configuration file" + msgstr "Файл конфигурации" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [параметры]" +@@ -308,19 +394,19 @@ msgstr "Недостаточно места" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Ошибка удаления элемента «%s» из каталога «%s»" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "Имя «%s» было потеряно, проверьте, не работает ли другая служба, использующая это имя.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Выйти после NUM секунд бездействия" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Эта программа должна запускаться от имени привелигированного пользователя." + +@@ -395,8 +481,85 @@ msgstr "Недопустимое число аргументов" + msgid "Unknown option value: '%s'\n" + msgstr "Неизвестное значение параметра: «%s»\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Формируется протокол сбоя" + +@@ -405,32 +568,32 @@ msgstr "Формируется протокол сбоя" + msgid "Can't connect to system DBus: %s" + msgstr "Не удается подключиться к системной DBus: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Не удается сменить владельца «%s»: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Не удалось удалить каталог с данными о сбоях: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Не удается получить данные об ошибке от abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Не удается получить список ошибок от abrt-dbus: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Не удалось создать временный файл «%s»" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -438,7 +601,7 @@ msgid "" + msgstr "Ошибка записи в «%s». Не удалось удалить проблему «%s» из списка игнорируемых проблем «%s»." + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "Ошибка при переименовании «%s» в «%s». Не удалось удалить проблему «%s»." +@@ -470,6 +633,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nРасчет и сохранение UUID дампа памяти в каталоге DIR" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -496,29 +678,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nРасчет и сохранение UUID и DUPHASH аварийных дампов python" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "Формат: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Файл {0} не существует" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "Извлечение текста ошибки ядра" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "Не удалось обработать: {0}:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "Не удалось извлечь сообщение ошибки ядра: «{0}»" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Текст ошибки ядра извлечен успешно" + +@@ -658,6 +840,38 @@ msgstr "Удалить файлы из каталога" + msgid "Preserve this directory" + msgstr "Оставить этот каталог" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "Сигнал, отправленный из кода в пространстве пользователя" +@@ -848,11 +1062,15 @@ msgstr "Повторить создание каталога через 1 сек + msgid "Print search string(s) to stdout and exit" + msgstr "Вывести строку (строки) поиска в stdout и выйти" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "Не удалось обновить проблему: найдено несколько ошибок" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Переход в режим ожидания на %d сек." +@@ -1424,31 +1642,35 @@ msgstr "Удалить файлы с найденными сбоями" + msgid "'%s' identifies more than one problem directory" + msgstr "«%s» обнаружил несколько проблемных каталогов" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Формат: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Показать ошибки, о которых еще не сообщалось, [в DIR]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Удалить каталог DIR" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Анализировать и дать отчет по данным сбоя в DIR" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Вывод информации о DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Печать числа недавних сбоев" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Для получения дополнительной информации выполните «abrt-cli COMMAND --help»" + +@@ -1510,6 +1732,45 @@ msgstr "Печать лишь сбоев, более поздних, чем ук + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT обнаружила %u сбой (сбоев). Для получения дополнительной информации запустите: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ru_RU.po b/po/ru_RU.po +index 2583851..afe31df 100644 +--- a/po/ru_RU.po ++++ b/po/ru_RU.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/fedora/language/ru_RU/)\n" ++"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/fedora-abrt/language/ru_RU/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/si.po b/po/si.po +index 90c2394..189886f 100644 +--- a/po/si.po ++++ b/po/si.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Sinhala (http://www.transifex.com/projects/p/fedora/language/si/)\n" ++"Language-Team: Sinhala (http://www.transifex.com/projects/p/fedora-abrt/language/si/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/sk.po b/po/sk.po +index 0f0d7f9..b8aca55 100644 +--- a/po/sk.po ++++ b/po/sk.po +@@ -3,19 +3,19 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# Dominik , 2012 ++# Dominik Labuda , 2012 + # Jiří Moskovčák , 2011 + # Michal Hriň , 2011 +-# mond , 2013 ++# Milan Ondrašovič , 2013 + # Richard Marko , 2012 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Slovak (http://www.transifex.com/projects/p/fedora/language/sk/)\n" ++"Language-Team: Slovak (http://www.transifex.com/projects/p/fedora-abrt/language/sk/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -76,120 +76,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "Nedá sa vykonať '%s'" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nedá sa zavrieť oznámenie: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Upozornenie" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "PrekladateliaMichal Hriň jmoskovc Dušan Kazik " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "_Ukončiť" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Skryť" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "_O programe" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Zistený problém" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Ignorovať navždy" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Otvoriť" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Nahlásiť" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Nastal Problém" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Problém bol nahlásený" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Vyskytol sa nový problém" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nedá sa zobraziť oznámenie: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, 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:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nedá sa prevziať vlastníctvo '%s'" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Nedá sa otvoriť adresár na zapísanie „%s“" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, 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:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -198,7 +284,7 @@ msgstr "" + msgid "_Defaults" + msgstr "_Predvolené" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Problém s hlásením konfigurácie" +@@ -237,7 +323,7 @@ msgstr "Adresár s informáciami o probléme" + msgid "Configuration file" + msgstr "Konfiguračný súbor" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [voľby]" +@@ -304,19 +390,19 @@ msgstr "Nezostalo miesto pre problémy" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nedá sa odstrániť prvok „%s“ z adresára problému „%s“" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "Názov '%s' bol stratený. Prosím, skontrolujte, či iná služba vlastniaca tento názov nie je spustená.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Ukončit po NUM sekundách neaktivity" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Tento program musí byť spustený s oprávneniami administrátora." + +@@ -391,8 +477,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Generuje sa backtrace" + +@@ -401,32 +564,32 @@ msgstr "Generuje sa backtrace" + msgid "Can't connect to system DBus: %s" + msgstr "Nedá sa pripojiť k systémovej zbernici DBus: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Nedá sa vykonať chown '%s': %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Zlyhalo odstránenie adresára s problémom: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Nedajú sa získať údaje o probléme zo zbernice abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Nedá sa vytvoriť dočasný súbor „%s“" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -434,7 +597,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:262 ++#: ../src/lib/ignored_problems.c:264 + #, 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“" +@@ -466,6 +629,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nSpočíta a uloží UUID coredump-u v pracovnom adresári DIR" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -492,29 +674,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nSpočíta a uloží UUID a DUPHASH pádov Python aplikácií" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Súbor {0} neexistuje" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -654,6 +836,38 @@ msgstr "Zmazať súbory vnútri daného adresáru" + msgid "Preserve this directory" + msgstr "Ponechať daný adresár" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -844,11 +1058,15 @@ msgstr "" + 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:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1420,31 +1638,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Použitie: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Zobraziť ešte neohlásené problémy [v adresároch DIR]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Zmazať adresár DIR" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analyzovať a ohlásiť problém z adresára DIR" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Vypísať informácie o adresári DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Vypísať počet nedávnych pádov" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Pre viac informácií viď 'abrt-cli PRÍKAZ --help'" + +@@ -1506,6 +1728,45 @@ msgstr "Vypísať jedine problémy, ktoré nastali neskôr ako uvedená časová + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT zistil %u problém(y/ov). Pre viac informácií spustite: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/sl.po b/po/sl.po +index 7bdf9ca..889e004 100644 +--- a/po/sl.po ++++ b/po/sl.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Slovenian (http://www.transifex.com/projects/p/fedora/language/sl/)\n" ++"Language-Team: Slovenian (http://www.transifex.com/projects/p/fedora-abrt/language/sl/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/sq.po b/po/sq.po +index f80ebb8..6a96bfd 100644 +--- a/po/sq.po ++++ b/po/sq.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Albanian (http://www.transifex.com/projects/p/fedora/language/sq/)\n" ++"Language-Team: Albanian (http://www.transifex.com/projects/p/fedora-abrt/language/sq/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/sr.po b/po/sr.po +index ad627dc..5c175a0 100644 +--- a/po/sr.po ++++ b/po/sr.po +@@ -8,10 +8,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Serbian (http://www.transifex.com/projects/p/fedora/language/sr/)\n" ++"Language-Team: Serbian (http://www.transifex.com/projects/p/fedora-abrt/language/sr/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Упозорење" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Програмчић из обавештајне зоне који обавештава кориснике о проблемима нађеним помоћу ABRT-а" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "заслуге-преводиоца" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Сакри" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Пријава" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -233,7 +319,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -300,19 +386,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -397,32 +560,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -650,6 +832,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -840,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1416,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1502,6 +1724,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/sr@latin.po b/po/sr@latin.po +index aa07efe..d61d042 100644 +--- a/po/sr@latin.po ++++ b/po/sr@latin.po +@@ -8,10 +8,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/fedora/language/sr@latin/)\n" ++"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/fedora-abrt/language/sr@latin/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Upozorеnjе" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "zaslugе-prеvodioca" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Sakri" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Prijava" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -233,7 +319,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -300,19 +386,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -397,32 +560,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -650,6 +832,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -840,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1416,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1502,6 +1724,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/sv.po b/po/sv.po +index 2bf3b31..5cdd203 100644 +--- a/po/sv.po ++++ b/po/sv.po +@@ -6,16 +6,16 @@ + # fedoratrans , 2009 + # Göran Uddeborg , 2011,2013 + # Jiří Moskovčák , 2011 +-# Ulrika Uddeborg , 2012 +-# Warrakkk , 2013 ++# Ulrika , 2012 ++# Mick Ohrberg , 2013 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Swedish (http://www.transifex.com/projects/p/fedora/language/sv/)\n" ++"Language-Team: Swedish (http://www.transifex.com/projects/p/fedora-abrt/language/sv/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -76,120 +76,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "Det går inte att köra ”%s”" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Kan inte stänga notifikation: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Varning" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + 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:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Magnus Larsson \nGöran Uddeborg " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "_Avsluta" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Dölj" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "_Om" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Problem upptäckt" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Ignorera alltid" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Öppna" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "Problemet har redan rapporterats" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + 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:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Rapport" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Ett problem har uppstått" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Ett problem har rapporterats" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Ett nytt problem har uppstått" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "Kan inte visa notifikation: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../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:1136 ++#: ../src/applet/applet.c:1146 + #, 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:1140 ++#: ../src/applet/applet.c:1150 + #, 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:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan inte ta över ägandet av ”%s”" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Kan inte öppna katalog för att skriva '%s'" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, 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:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -198,7 +284,7 @@ msgstr "" + msgid "_Defaults" + msgstr "_Standard" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Problemrapporteringskonfiguration" +@@ -237,7 +323,7 @@ msgstr "Problemkatalog" + msgid "Configuration file" + msgstr "Konfigurationsfil" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [flaggor]" +@@ -304,19 +390,19 @@ msgstr "Inget utrymme kvar" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Kan inte radera elementet '%s' från problemkatalogen '%s'" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "Namnet ”%s” har förlorats, kontrollera om andra tjänster som äger namnet inte kör.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Avsluta efter ANT sekunders inaktivitet" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Detta program måste köra som root." + +@@ -391,8 +477,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Genererar stackspår" + +@@ -401,32 +564,32 @@ msgstr "Genererar stackspår" + msgid "Can't connect to system DBus: %s" + msgstr "Kan inte ansluta till system-DBus:en: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Kan inte ändra ägare av ”%s”: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Misslyckades att radera en problemkatalog: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Kan inte hämta problemdata från abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Det går inte att skapa temporärfilen '%s'" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -434,7 +597,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:262 ++#: ../src/lib/ignored_problems.c:264 + #, 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" +@@ -466,6 +629,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d KAT\n\nBeräknar och sparar UUID för minnesdumpar i problemkatalogen KAT" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -492,29 +674,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d KAT\n\nBeräknar och sparar UUID och DUPHASH för python-kraschdumpar" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "Användning: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Filen {0} finns inte" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "Extraherar oops-texten från kärndumpen" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "Kan inte bearbeta {0}:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "Kan inte extrahera oops-meddelandet: ”{0}”" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops-texten extraherad" + +@@ -654,6 +836,38 @@ msgstr "Radera filer inuti denna katalog" + msgid "Preserve this directory" + msgstr "Bevara denna katalog" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "Signal sänd av kod från användarutrymmet" +@@ -844,11 +1058,15 @@ msgstr "Begränsa skapandet av problemkataloger till 1 per sekund" + 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:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + 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:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Sover i %d sekunder" +@@ -1420,31 +1638,35 @@ msgstr "Radera filer med hittade oopsmeddelanden" + msgid "'%s' identifies more than one problem directory" + msgstr "”%s” identifierar mer an en problemkatalog" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Användning: abrt-cli [--version] KOMMANDO [KAT]…" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Lista ännu inte rapporterade problem [i KAT]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Ta bort problemkatalogen KAT" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analysera och rapportera problemdata i KAT" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Skriv ut information om KAT" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Visa antalet nyliga krascher" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Se ”abrt-cli KOMMANDO --help” för mer information" + +@@ -1506,6 +1728,45 @@ msgstr "Visa bara problem nyare än angivna tidsstämpel" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT har upptäckt '%u' problem. För mer information, kör: abrt-cli list%s\n\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ta.po b/po/ta.po +index 1bfaf1a..c93dd52 100644 +--- a/po/ta.po ++++ b/po/ta.po +@@ -11,10 +11,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Tamil (http://www.transifex.com/projects/p/fedora-abrt/language/ta/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -75,120 +75,206 @@ msgstr "%s மற்றும் கண்டறிதல் தரவு ஆக + msgid "Can't execute '%s'" + msgstr "'%s' ஐ செயல்படுத்த முடியவில்லை" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "அறிவிப்பை மூட முடியவில்லை: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "எச்சரிக்கை" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT கண்டுபிடித்த சிக்கல்களைப் பற்றி அறிவிக்கும் அறிவிப்புப் பகுதி பயன்பாடு" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "shkumar@redhat.com" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "வெளியேறு (_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "மறை" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "அறிமுகம் (_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "சிக்கல் கண்டறியப்பட்டுள்ளது" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "எப்பொழுதும் புறக்கணி" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "திற" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "சிக்கல் ஏற்கனவே அறிக்கையிடப்பட்டது" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "தெரிந்த ஒரு சிக்கல் ஏற்பட்டது" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "அறிக்கையிடு" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "ஒரு சிக்கல் ஏற்பட்டது" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "ஒரு சிக்கல் குறித்து அறிக்கையிடப்பட்டுள்ளது" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "ஒரு புதிய சிக்கல் ஏற்பட்டது" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "அறிவிப்பைக் காண்பிக்க முடியவில்லை: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio சேனலில் இருந்து வாசிக்க முடியவில்லை: '%s'" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio சேனலில் குறியீடாக்கத்தை அமைக்க முடியவில்லை: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio சேனலுக்கு தடுக்காத பயன்முறையை இயக்க முடியவில்லை: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' இன் உரிமையை கைக்கொள்ள முடியவில்லை" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' ஐ எழுத கோப்பகத்தைத் திறக்க முடியவில்லை" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "அமர்வு நிர்வாகிக்கான இணைப்பைத் திறக்கையில் தோல்வியடைந்தது: '%s', அடுத்த புகுபதிவில் அறிவிப்பு மீண்டும் காண்பிக்கப்படலாம்" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "கோப்பகத்தை எடுத்துக்கொள்ளும் முன்பு கேட்கவும்" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "தானாக uReport ஐ அனுப்பு" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "சுருக்கமான அறிக்கையிடல்" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "அமைதியான சுருக்கமான அறிக்கையிடல்" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "அதிக நேரமும் இடமும் தேவைப்படுகின்ற, ஸ்டேக் ட்ரேஸை உருவாக்கும் செயலைச் செய்ய coredump கோப்பு அவசியமாகும். கோர்டம்ப்பிலிருந்து ஸ்டேக் ட்ரேஸை உருவாக்க ABRT ஒரு சேவையை வழங்குகிறது, ஆனால் நீங்கள் இந்தச் சேவைக்கு கோர்டம்ப்பைப் பதிவேற்ற வேண்டும். இந்த விருப்பம் முடக்கப்பட்டிருந்தால், ABRT கேட்காமலே கோர்டம்ப்பைப் பதிவேற்றும்." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "ABRT சிக்கல் தரவை கோப்பகங்களில் சேமிக்கிறது. ABRT க்கு எழுதக்கூடிய கோப்பகம் தேவைப்படும்போதெல்லாம். கோப்பகம் கணினிக்குரிய இருப்பிடத்திலிருந்து உங்கள் இல்லக் கோப்பகத்திற்கு நகர்த்தப்படுகிறது. இந்த விருப்பம் முடக்கப்பட்டால் ABRT கேட்காமலே சிக்கல் கோப்பகத்தை நகர்த்தும்." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "uReport என்பது ஒரு சிக்கல் குறித்த சிறிய மற்றும் முற்றிலும் பெயர் விவரமற்ற விளக்கமாகும். ABRT பயன்பாடு ஒட்டுமொத்த நகல்களை வேகமாகக் கண்டறிவதற்கு uReports ஐப் பயன்படுத்துகிறது. முன்னிருப்பான அமைவாக்கத்தில், அறிக்கையிடல் செயலின் துவக்கத்தில் uReport அனுப்பப்படுகிறது. இந்த விருப்பத்தைச் செயல்படுத்தினால் சிக்கல் கண்டறியப்பட்ட உடனே uReport கள் தானாக அனுப்பப்படும்." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "இந்த விருப்பம் செயல்படுத்தப்பட்டால், சிக்கல் அறிவிப்புக் குமிழில் உள்ள அறிக்கையிடு பொத்தானைச் சொடுக்குவதன் மூலம் துவங்கும் அறிக்கையிடல் செயலானது, uReport அனுப்பப்பட்ட பிறகு குறுக்கிடப்படும். முழு அறிக்கையைத் தயார் செய்ய நீங்கள் உங்கள் முன்னிருப்பு சிக்கல் உலாவியைப் பயன்படுத்தலாம்." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "இந்த விருப்பத்தைச் செயல்படுத்தினால் ABRT பயன்பாடு, அறிக்கையிடப்பட்ட சிக்கல்களைப் பற்றி ஒரு போதும் அறிவிப்புகளைக் காட்டாது. சுருக்கமான அறிக்கையிடல் அம்சத்தைச் செயல்படுத்தியிருக்கும் போது மட்டுமே இவ்விருப்பம் செயல்படும்." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "கோர்டம்ப்பைப் பதிவேற்றும் முன் கேட்கவும்" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "முக்கியமான தகவலுக்கு தனிப்பட்ட டிக்கட்டைக் கோரவும்" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "நிறைவடையாத சிக்கல்கள் குறித்து அறிவி" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "கணினி இயக்க நிறுத்தம் செய்யப்படும் போது அல்லது பயனர் விடுபதிகை செய்யும் போது நிறைவடையாத சிக்கல்கள் கண்டறியப்படுகின்றன. மதிப்புள்ள சிக்கல் அறிக்கைகளை வழங்குவதற்காக ABRT பயன்பாடு இந்தச் சிக்கல்களைச் சமர்ப்பிக்க உங்களை அனுமதிக்காது." ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "மூடு (_C)" +@@ -197,7 +283,7 @@ msgstr "மூடு (_C)" + msgid "_Defaults" + msgstr "முன்னிருப்புகள் (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "அமைவாக்கத்தை அறிக்கையிடுவதில் சிக்கல்" +@@ -236,7 +322,7 @@ msgstr "சிக்கல் கோப்பகம்" + msgid "Configuration file" + msgstr "அமைவாக்கக் கோப்பு" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -303,19 +389,19 @@ msgstr "சிக்கல் இடம் மீதம் இல்லை" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "சிக்கல் கோப்பகம் '%s' இலிருந்து கூறு '%s' ஐ நீக்க முடியவில்லை" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "'%s' என்ற பெயர் போய்விட்டது, இதே பெயரைக் கொண்ட மற்ற சேவைகள் எதுவும் இயங்காமல் உள்ளதா எனப் பார்க்கவும்.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM விநாடிகளுக்கு செயலில்லாமல் இருந்த பிறகு வெளியேறவும்" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "இந்த நிரலை மூலப் பயனராகவே இயக்க வேண்டும்." + +@@ -390,8 +476,85 @@ msgstr "செல்லுபடியாகாத மதிப்புரு + msgid "Unknown option value: '%s'\n" + msgstr "தெரியாத விருப்ப மதிப்பு: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "பின்தடமறிதலை உருவாக்குகிறது" + +@@ -400,32 +563,32 @@ msgstr "பின்தடமறிதலை உருவாக்குகி + msgid "Can't connect to system DBus: %s" + msgstr "DBus முறைமையுடன் இணைக்க முடியவில்லை: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "'%s' ஐ chown செய்ய முடியவில்லை: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "சிக்கல் கோப்பகத்தை நீக்குவது தோல்வியடைந்தது: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus இலிருந்து சிக்கல் தொடர்பான தரவைப் பெற முடியவில்லை: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus இலிருந்து சிக்கல் பட்டியலைப் பெற முடியவில்லை: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "தற்காலிக கோப்பு '%s' ஐ உருவாக்க முடியவில்லை" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -433,7 +596,7 @@ msgid "" + msgstr "'%s' இல் எழுத முடியவில்லை. புறக்கணிக்கப்பட்ட சிக்கல்கள் '%s' இலிருந்து சிக்கல் '%s' ஆனது நீக்கப்படாது" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s' ஐ '%s' என மறுபெயரிட முடியவில்லை. சிக்கல் '%s' ஐ நீக்குவது தோல்வியடைந்தது" +@@ -465,6 +628,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nசிக்கல் கோப்பகம் DIR இல் கோர்டம்ப்பின் UUID ஐ கணக்கிட்டு சேமிக்கும்" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "கோர்டம்ப் '%s' ஐ பகுப்பாய்வு செய்கிறது" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "பில்ட் id விடுபட்டுள்ளது: %s" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "பயன்பாடு: %s [-v] [-o OUTFILE] -c COREFILE" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "COREFILE குறிப்பிடப்படவில்லை" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -491,29 +673,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\npython செயலிழப்பு டம்ப்புகளின் UUID மற்றும் DUPHASH ஐக் கணக்கிட்டு சேமிக்கும்" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "பயன்பாடு: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "கோப்பு {0} இல்லை" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "கோரிலிருந்து oops உரையை பிரித்தெடுக்கிறது" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "{0} ஐ செயலாக்க முறியவில்லை:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "oops செய்தியை பிரித்தெடுக்க முடியவில்லை: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops உரை வெற்றிகரமாக பிரித்தெடுக்கப்பட்டது" + +@@ -653,6 +835,38 @@ msgstr "இந்த கோப்பகத்தில் உள்ள கோப + msgid "Preserve this directory" + msgstr "இந்த கோப்பகத்தை வைத்திரு" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "பயனரிடைவெளி குறியீட்டால் அனுப்பப்பட்ட சமிக்ஞை" +@@ -843,11 +1057,15 @@ msgstr "ஒரு வினாடிக்கு த்ராட்டில் + msgid "Print search string(s) to stdout and exit" + msgstr "தேடல் சரங்களை stdout இல் அச்சிட்டு வெளியேறு" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "சிக்கலைப் புதுப்பிக்க முடியவில்லை: ஒன்றுக்கும் அதிகமான oops கண்டறியப்பட்டுள்ளது" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d வினாடிகளுக்கு தூங்குகிறது" +@@ -1419,31 +1637,35 @@ msgstr "கண்டறியப்பட்ட oopses கொண்டுள் + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ஒன்றுக்கு மேற்பட்ட சிக்கல் கோப்பகங்களைக் கண்டறிகிறது" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "பயன்பாடு: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "பட்டியல் சிக்கல்களை இன்னும் அறிக்கையிடவில்லை [DIRகளில்]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "DIR என்ற சிக்கல் கோப்பகத்தை நீக்கவும்" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "DIR இல் உள்ள சிக்கல் தரவை ஆராய்ந்து அறிவிக்கவும்" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR பற்றி தகவலை அச்சிடவும்" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "சமீபத்திய செயலிழப்புகளின் எண்ணிக்கையை அச்சிடு" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "'abrt-cli COMMAND --help' க்கான மேலும் தகவலுக்கு பார்க்கவும்" + +@@ -1505,6 +1727,45 @@ msgstr "குறிப்பிடப்பட்ட நேர முத்த + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT %u சிக்கல்களைக் கண்டறிந்துள்ளது. மேலும் தகவலுக்கு இந்தக் கட்டளையை இயக்கவும்: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/ta_IN.po b/po/ta_IN.po +deleted file mode 100644 +index 70abea1..0000000 +--- a/po/ta_IN.po ++++ /dev/null +@@ -1,1588 +0,0 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: +-msgid "" +-msgstr "" +-"Project-Id-Version: ABRT\n" +-"Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Content-Transfer-Encoding: 8bit\n" +-"Language: ta_IN\n" +-"Plural-Forms: nplurals=2; plural=(n != 1);\n" +- +-#: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" +- +-#: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../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" +-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:243 +-#, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:267 +-#, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:386 +-msgid "A problem has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:388 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:398 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" +-msgstr "" +- +-#: ../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:632 ../src/applet/applet.c:698 +-#, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:788 +-msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "" +- +-#: ../src/applet/applet.c:804 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:812 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:814 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:816 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:884 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:934 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:950 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../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:969 ../src/applet/applet.c:1004 +-msgid "Report" +-msgstr "" +- +-#: ../src/applet/applet.c:974 +-msgid "A Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1000 +-msgid "A Problem has been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:1008 +-msgid "A New Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1018 +-#, c-format +-msgid "Can't show notification: %s" +-msgstr "" +- +-#. TODO: Terminate child's process? +-#: ../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:1136 +-#, c-format +-msgid "Can't set encoding on gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1140 +-#, c-format +-msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1172 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1182 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../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: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:75 +-msgid "_Close" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:84 +-msgid "_Defaults" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:110 +-#: ../src/configuration-gui/main.c:36 +-msgid "Problem Reporting Configuration" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:75 +-msgid "About System Config ABRT" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:105 +-msgid "About" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:106 +-msgid "Quit" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:382 +-msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" +-"\n" +-"Query package database and save package and component name" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:394 +-#: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 +-#: ../src/plugins/abrt-action-analyze-oops.c:48 +-#: ../src/plugins/abrt-action-analyze-xorg.c:84 +-#: ../src/plugins/abrt-action-analyze-python.c:47 +-#: ../src/plugins/abrt-action-generate-backtrace.c:55 +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 +-msgid "Problem directory" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:395 +-msgid "Configuration file" +-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 "" +- +-#: ../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: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 "" +- +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 +-msgid "Add program names to log" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:123 +-msgid "Unknown error" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:188 +-#, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:223 +-#, c-format +-msgid "'%s' element can't be modified" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 +-#, c-format +-msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:580 +-#, c-format +-msgid "Can't get size of '%s'" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:595 +-msgid "No problem space left" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:627 +-#, c-format +-msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#: ../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 "" +- +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 +-msgid "This program must be run as root." +-msgstr "" +- +-#: ../src/daemon/abrtd.c:451 +-msgid "" +-"The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" +- +-#: ../src/daemon/abrtd.c:497 +-msgid "Do not daemonize" +-msgstr "" +- +-#: ../src/daemon/abrtd.c:498 +-msgid "Log to syslog even with -d" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:388 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:396 +-msgid "Run EVENT on DIR" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:397 +-msgid "Communicate directly to the user" +-msgstr "" +- +-#: ../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:258 +-msgid "" +-"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +-"\n" +-"\n" +-"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" +-"specified in abrt.conf\n" +-"\n" +-"If UPLOAD_DIRECTORY is not provided, uses a value of\n" +-"WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:281 +-msgid "Daemize" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:282 +-msgid "Number of concurrent workers. Default is " +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" +-msgstr "" +- +-#: ../src/daemon/abrt-auto-reporting.c:138 +-#, c-format +-msgid "Unknown option value: '%s'\n" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/lib/hooklib.c:251 +-msgid "Generating backtrace" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:42 +-#, c-format +-msgid "Can't connect to system DBus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:66 +-#, c-format +-msgid "Can't chown '%s': %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:93 +-#, c-format +-msgid "Deleting problem directory failed: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:127 +-#, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:161 +-#, c-format +-msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/ignored_problems.c:231 +-#, c-format +-msgid "Can't create temporary file '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 +-#, c-format +-msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:41 +-msgid "" +-"& [options] -d DIR\n" +-"\n" +-"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" +-"and identifies crash function in problem directory DIR" +-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 "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 +-msgid "Crash thread not found" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-c.c:67 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-oops.c:37 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/plugins/abrt-action-analyze-xorg.c:113 +-#, c-format +-msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-python.c:36 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 +-msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 +-msgid "File {0} doesn't exist" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 +-msgid "Extracting the oops text from core" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 +-msgid "" +-"Can't process {0}:\n" +-"{1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 +-msgid "Can't extract the oops message: '{0}'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 +-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" +-"\n" +-"Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:56 +-msgid "Additional debuginfo directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:57 +-msgid "Kill gdb if it runs for more than NUM seconds" +-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 "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 +-msgid "" +-"& [-v] [-r] -d DIR\n" +-"\n" +-"Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +-msgid "Do not hash fingerprints" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 +-msgid "Generating core_backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 +-msgid "Error: GDB did not return any data" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 +-#, c-format +-msgid "Error: %s" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:51 +-msgid "Exiting on user command" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 +-#, c-format +-msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" +-" [-e, --exact=PATH[:PATH]...]\n" +-"\n" +-"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +-"to CACHEDIR, using TMPDIR as temporary staging area.\n" +-"Old 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" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 +-msgid "Can't open {0}: {1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 +-msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 +-msgid "{0} of debuginfo files are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 +-msgid "Missing requested file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 +-msgid "Missing debuginfo file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 +-msgid "All debuginfo files are available" +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 +-msgid "" +-"Ok to upload core dump? (It may contain sensitive data). If your answer is " +-"'No', a stack trace will be generated locally. (It may download a huge " +-"amount of data)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 +-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 "" +- +-#: ../src/plugins/abrt-action-trim-files.c:222 +-msgid "" +-"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" +-"\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" +-"FILEs are preserved (never deleted)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:236 +-msgid "Delete whole problem directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:237 +-msgid "Delete files inside this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:238 +-msgid "Preserve this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:529 +-msgid "Signal sent by userspace code" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:533 +-msgid "Signal sent by timer/IO/async event" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:541 +-msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:544 +-msgid "Signal due to write to closed pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:550 +-#: ../src/plugins/abrt-gdb-exploitable:575 +-msgid "Signal sent by keyboard" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:554 +-#: ../src/plugins/abrt-gdb-exploitable:579 +-msgid "Job control signal sent by kernel" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:558 +-#: ../src/plugins/abrt-gdb-exploitable:587 +-msgid "Signal sent by window resize" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:562 +-#: ../src/plugins/abrt-gdb-exploitable:591 +-msgid "Signal sent by alarm(N) expiration" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:583 +-msgid "Signal due to write to broken pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:607 +-msgid "ABRT signal (abort() was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:616 +-msgid "XCPU signal (over CPU time limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:620 +-msgid "XFSZ signal (over file size limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:624 +-msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:628 +-msgid "SYS signal (unknown syscall was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:633 +-msgid "Arithmetic exception" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:637 +-msgid "Division by zero" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:641 +-msgid "Illegal instruction (jump to a random address?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:647 +-msgid "Non-crash related signal" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:652 +-msgid "Stack overflow" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:656 +-msgid "Write to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:660 +-msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:666 +-#: ../src/plugins/abrt-gdb-exploitable:670 +-msgid "Jump to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:674 +-msgid "" +-"Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:693 +-msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:706 +-msgid "Likely crash reason: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:707 +-msgid "Exploitable rating (0-9 scale): " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:709 +-msgid "Current instruction: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:711 +-msgid "Exploitability analysis came up empty\n" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:142 +-msgid "" +-"& [-vs] [-F STR]... FILE PROG [ARGS]\n" +-"\n" +-"Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:154 +-msgid "Don't run PROG if STRs aren't found" +-msgstr "" +- +-#: ../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: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: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:153 +-#, c-format +-msgid " Tainted modules: %s." +-msgstr "" +- +-#: ../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: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:278 +-msgid "Create new problem directory in DIR for every oops found" +-msgstr "" +- +-#: ../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:280 +-msgid "Save the extracted information in PROBLEM" +-msgstr "" +- +-#: ../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:282 +-msgid "Throttle problem directory creation to 1 per second" +-msgstr "" +- +-#: ../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:379 +-msgid "Can't update the problem: more than one oops found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:398 +-#, c-format +-msgid "Sleeping for %d seconds" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:237 +-msgid "" +-"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" +-"\n" +-"Extract Xorg crash from FILE (or standard input)" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:245 +-msgid "Print found crash data on standard output" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:246 +-msgid "Create problem directory in DIR for every crash found" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:70 +-msgid "" +-"Retrace server can not be used, because the crash is too large. Try local " +-"retracing." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:211 +-#: ../src/plugins/abrt-retrace-client.c:398 +-#: ../src/plugins/abrt-retrace-client.c:666 +-#: ../src/plugins/abrt-retrace-client.c:832 +-#, c-format +-msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:223 +-#: ../src/plugins/abrt-retrace-client.c:412 +-#: ../src/plugins/abrt-retrace-client.c:765 +-#: ../src/plugins/abrt-retrace-client.c:849 +-#: ../src/plugins/abrt-retrace-client.c:916 +-#: ../src/plugins/abrt-retrace-client.c:1001 +-#: ../src/plugins/abrt-retrace-client.c:1060 +-#, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" +-"%s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:232 +-#: ../src/plugins/abrt-retrace-client.c:745 +-#: ../src/plugins/abrt-retrace-client.c:841 +-#: ../src/plugins/abrt-retrace-client.c:908 +-#: ../src/plugins/abrt-retrace-client.c:982 +-#: ../src/plugins/abrt-retrace-client.c:1052 +-msgid "Invalid response from server: missing HTTP message body." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:424 +-#, c-format +-msgid "" +-"Retrace server is unable to process package '%s.%s'.\n" +-"Is it a part of official '%s' repositories?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:444 +-msgid "Querying server settings" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:452 +-msgid "The server is fully occupied. Try again later." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:453 +-msgid "The server denied your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:484 +-#: ../src/plugins/abrt-retrace-client.c:500 +-#, c-format +-msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:514 +-#, c-format +-msgid "" +-"The size of your crash is %lld bytes, but the retrace server only accepts " +-"crashes smaller or equal to %lld bytes." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:534 +-msgid "The server does not support xz-compressed tarballs." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:571 +-#, c-format +-msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:575 +-msgid "The server is not able to handle your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:594 +-msgid "Unknown package sent to Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:603 +-msgid "Preparing an archive to upload" +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:629 +-#, c-format +-msgid "You are going to upload %d megabytes. Continue?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:638 +-msgid "Cancelled by user" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:673 +-#, c-format +-msgid "Uploading %d megabytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:675 +-#, c-format +-msgid "Uploading %lld bytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:699 +-#, c-format +-msgid "Uploading %d%%\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:711 +-msgid "Failed to read from a pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:724 +-#, c-format +-msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:735 +-msgid "Upload successful" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:757 +-msgid "" +-"Your problem directory is corrupted and can not be processed by the Retrace " +-"server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:759 +-msgid "" +-"The archive contains malicious files (such as symlinks) and thus can not be " +-"processed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:772 +-msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:778 +-msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:785 +-msgid "Retrace job started" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:798 +-#, c-format +-msgid "" +-"Task Id: %s\n" +-"Task Password: %s\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:856 +-msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:868 +-#, c-format +-msgid "" +-"Task Status: %s\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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1160 +-msgid "" +-"Retrace failed. Try again later and if the problem persists report this " +-"issue please." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1207 +-msgid "log to syslog" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1209 +-msgid "allow insecure connection to retrace server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1211 +-msgid "" +-"do not check whether retrace server is able to process given package before " +-"uploading the archive" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1214 +-msgid "retrace server URL" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1216 +-msgid "retrace server port" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1218 +-msgid "(debug) show received HTTP headers" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1219 +-msgid "For create and batch operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1221 +-msgid "read data from ABRT problem directory" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1223 +-msgid "read data from coredump" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1225 +-msgid "Delay for polling operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1227 +-msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1229 +-msgid "For status, backtrace, and log operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1231 +-msgid "id of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1233 +-msgid "password of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1237 +-msgid "" +-"abrt-retrace-client [options]\n" +-"Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1282 +-#: ../src/plugins/abrt-retrace-client.c:1288 +-msgid "Either problem directory or coredump is needed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1294 +-#: ../src/plugins/abrt-retrace-client.c:1302 +-#: ../src/plugins/abrt-retrace-client.c:1310 +-#: ../src/plugins/abrt-retrace-client.c:1318 +-msgid "Task id is needed." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1324 +-#, c-format +-msgid "Unknown operation: %s." +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 +-msgid "Local GNU Debugger" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 +-msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 +-msgid "" +-"Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +-msgid "Send core dump to remote retrace server for analysis" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +-#: ../src/plugins/analyze_CCpp.xml.in.h:3 +-msgid "Retrace server 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 "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 +-#: ../src/plugins/analyze_CCpp.xml.in.h:5 +-msgid "Insecure" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 +-#: ../src/plugins/analyze_CCpp.xml.in.h:6 +-msgid "Whether or not to use insecure connection" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 +-#: ../src/plugins/analyze_CCpp.xml.in.h:7 +-msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:1 +-msgid "Collect .xsession-errors" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:2 +-msgid "Save relevant lines from ~/.xsession-errors file" +-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 "" +- +-#: ../src/plugins/https-utils.c:62 +-msgid "An error occurred on the server side." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:65 +-#, c-format +-msgid "A server-side error occurred on '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:74 +-msgid "An error occurred while connecting to the server" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:77 +-#, c-format +-msgid "An error occurred while connecting to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:97 +-#, c-format +-msgid "Issuer certificate is invalid: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:100 +-#, c-format +-msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:103 +-#, c-format +-msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:107 +-msgid "Remote certificate has expired." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:110 +-#, c-format +-msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:113 +-#, c-format +-msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:149 +-#, c-format +-msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:182 +-#, c-format +-msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" +- +-#. Host exists, but has neither IPv4 nor IPv6?? +-#: ../src/plugins/https-utils.c:203 +-#, c-format +-msgid "Can't resolve host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:210 +-msgid "Failed to set socket blocking mode." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:213 +-msgid "Failed to wrap TCP socket by SSL." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:215 +-msgid "Failed to enable client handshake to SSL socket." +-msgstr "" +- +-#: ../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:233 +-#, c-format +-msgid "Can't connect to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:241 +-msgid "Failed to set certificate hook." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:247 +-msgid "Failed to set handshake callback." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:251 +-msgid "Failed to reset handshake." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:258 +-#, c-format +-msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:267 +-msgid "Failed to close SSL socket." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:332 +-#, c-format +-msgid "Malformed HTTP response header: '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:369 +-#, c-format +-msgid "Receiving of data failed: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:398 +-msgid "Malformed chunked response." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:423 +-msgid "Failed to initialize NSS." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:429 +-msgid "Failed to initialize security module." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:444 +-msgid "Failed to shutdown NSS." +-msgstr "" +- +-#: ../src/plugins/bodhi.c:375 +-msgid "List of bug ids" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:376 +-msgid "Specify a bodhi server url" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:377 +-msgid "Specify a release" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:382 +-msgid "" +-"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" +-"\n" +-"Search for updates on bodhi server" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:434 +-msgid "Searching for updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:440 +-msgid "No updates for this package found" +-msgstr "" +- +-#. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 +-msgid "Local version of the package is newer than available updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:486 +-#, c-format +-msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:85 +-msgid "" +-"& [-v] [-od] FILE...\n" +-"\n" +-"Scans files for split oops message. Can print and/or delete them." +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:97 +-msgid "Print found oopses" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:98 +-msgid "Delete files with found oopses" +-msgstr "" +- +-#: ../src/cli/abrt-cli-core.c:91 +-#, c-format +-msgid "'%s' identifies more than one problem directory" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:142 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:147 +-msgid "Remove problem directory DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:148 +-msgid "Analyze and report problem data in DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:149 +-msgid "Print information about DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:150 +-msgid "Print the count of the recent crashes" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:165 +-msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +- +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "" +- +-#: ../src/cli/list.c:188 +-msgid "List only not-reported problems" +-msgstr "" +- +-#. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 +-msgid "Show detailed report" +-msgstr "" +- +-#: ../src/cli/list.c:191 +-msgid "List only the problems more recent than specified timestamp" +-msgstr "" +- +-#: ../src/cli/list.c:192 +-msgid "List only the problems older than specified timestamp" +-msgstr "" +- +-#: ../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:235 +-msgid "& info [options] DIR..." +-msgstr "" +- +-#: ../src/cli/list.c:244 +-msgid "Text larger than this will be shown abridged" +-msgstr "" +- +-#: ../src/cli/list.c:264 +-#, c-format +-msgid "No such problem directory '%s'" +-msgstr "" +- +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "" +- +-#: ../src/cli/status.c:78 +-msgid "Print only the problem count without any message" +-msgstr "" +- +-#: ../src/cli/status.c:79 +-msgid "Print only the problems more recent than specified timestamp" +-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 "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:1 +-msgid "" +-"Send core dump to remote retrace server for analysis or perform local " +-"analysis if the remote analysis fails" +-msgstr "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. If " +-"user doens't want to upload his coredump to anywhere the event performs " +-"local analysis. Local analysis is run event if remote analysis fails. Pros: " +-"no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " +-"private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:1 +-msgid "Analyze VM core" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:3 +-msgid "" +-"Needs to install kernel debuginfo packages, which might take significant " +-"time, and take up disk space." +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:1 +-msgid "Collect GConf configuration" +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:2 +-msgid "Save configuration from application's GConf directory" +-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 "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:1 +-msgid "Collect system-wide vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:2 +-msgid "Save /etc/vimrc and /etc/gvimrc" +-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 "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:1 +-msgid "Collect yours vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:2 +-msgid "Save .vimrc and .gvimrc from your home directory" +-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 "" +- +-#: ../src/plugins/post_report.xml.in.h:1 +-msgid "Post report" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:2 +-msgid "Executed after the reporting is finished" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:3 +-msgid "Used for updating of the databases" +-msgstr "" +diff --git a/po/te.po b/po/te.po +index 48bf03b..79fafdb 100644 +--- a/po/te.po ++++ b/po/te.po +@@ -5,16 +5,16 @@ + # Translators: + # Jiří Moskovčák , 2011 + # Krishnababu Krothapalli , 2013-2014 +-# sudheesh001 , 2013 ++# Sudheesh Singanamalla , 2013 + # ప్రవీణ్ ఇళ్ళ , 2011 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Telugu (http://www.transifex.com/projects/p/fedora-abrt/language/te/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -75,120 +75,206 @@ msgstr "%s మరియు డయాగ్నిస్టిక్ దత్త + msgid "Can't execute '%s'" + msgstr "'%s' యెగ్జిక్యూట్ చేయలేదు" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "ప్రకటనను మూయలేదు: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "హెచ్చరిక" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT చేత గుర్తించబడిన సమస్యల గురించి వినియోగదారికి తెలుపుటకు నోటిఫికేషన్ ప్రాంతపు ఆప్లెట్" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "కృష్ణబాబు క్రొత్తపల్లి 2009,2010." + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "నిష్క్రమించు (_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "మరుగునవుంచుము" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "గురించి (_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "సమస్య గుర్తించబడింది" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "ఎప్పటికీ విస్మరించు" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "తెరుచు" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "సమస్య ఇప్పటికే నివేదించబడెను" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "తెలిసిన సమస్య యెదురైనది" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "నివేదించు" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "ఒక సమస్య యెదురైంది" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "ఒక సమస్య నివేదించబడింది" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "కొత్త సమస్య యెదురైనది" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "ప్రకటనను చూపలేదు: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio చానల్‌నుండి చదువలేదు: '%s'" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio చానల్ నందు యెన్కోడింగ్ అమర్చలేదు: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio చానల్ కొరకు నాన్‌బ్లాకింగ్ రీతిని ఆన్ చేయలేదు: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' పై అజమాయిషీ తీసుకోలేదు" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' వ్రాయుట కొరకు డైరెక్టరీ తెరువలేదు" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "సెషన్ నిర్వాహికకు అనుసంధానం తెరుచుటకు విఫలమైంది: '%s', తరువాతి లాగిన్ పైన ప్రకటన తిరిగికనిపించవచ్చు" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "మూయి (_C)" +@@ -197,7 +283,7 @@ msgstr "మూయి (_C)" + msgid "_Defaults" + msgstr "అప్రమేయాలు (_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "ఆకృతీకరణను నివేదించుటలో సమస్య" +@@ -236,7 +322,7 @@ msgstr "సమస్య డైరెక్టరీ" + msgid "Configuration file" + msgstr "ఆకృతీకరణ ఫైలు" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [ఐచ్చికాలు]" +@@ -303,19 +389,19 @@ msgstr "ఏ సమస్య ఖాళీ విడువలేదు" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "మూలకం '%s'ను సమస్య డైరెక్టరీ '%s' నుండి తొలగించలేదు" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "పేరు '%s' పోయంది, వేరే సేవ యీ పేరు పొంది నడువకుండా చూడండి.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM క్షణాల క్రియాహీనత తరువాత నిష్క్రమించు" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ఈ ప్రోగ్రామ్ root గా నడువవలెను." + +@@ -390,8 +476,85 @@ msgstr "చెల్లని ఆర్గుమెంట్ల సంఖ్య" + msgid "Unknown option value: '%s'\n" + msgstr "తెలియని ఐచ్చికం విలువ: '%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "బ్యాక్‌ట్రేస్ జనియింపచేస్తోంది" + +@@ -400,32 +563,32 @@ msgstr "బ్యాక్‌ట్రేస్ జనియింపచేస + msgid "Can't connect to system DBus: %s" + msgstr "వ్యవస్థ DBus కు అనుసంధానం కాలేదు: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "chown '%s' కాలేదు: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "సమస్యా డైరెక్టరీను తొలగించుట విఫలమైంది: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus నుండి సమస్యా దత్తాంశమును పొందలేదు: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus నుండి సమస్య జాబితాను పొందలేదు: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "'%s' టెంపరరీ ఫైలును సృష్టించలేము" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -433,7 +596,7 @@ msgid "" + msgstr "'%s' కు వ్రాయడానికి కాదు. '%s' సమస్య '%s' నిర్లక్ష్యం సమస్యల నుండి తీసివేయబడదు" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s'నుండి '%s' కు రీనేమ్ చేయలేరు. '%s' సమస్య తొలగించడానికి విఫలమైంది" +@@ -465,6 +628,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\nసమస్యాత్మక డైరెక్టరీ DIR నందు కోర్‌డంప్ యొక్క UUID ను గణించి దాచును" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -491,29 +673,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\nపైథాన్ క్రాష్ డంప్స్ కొరకు UUID మరియు DUPHASH గణించి దాచును" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "వాడుక: {0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "ఫైలు {0} లేదు" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "కోర్ నుండి oops పాఠం బహిర్గతపరుస్తోంది" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "{0} ప్రోసెస్ చేయలేదు:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "oops సందేశం బహిర్గతపరచలేదు: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops పాఠం విజయవంతంగా బహిర్గతపరచెను" + +@@ -653,6 +835,38 @@ msgstr "ఈ డైరెక్టరీ నందలి ఫైళ్ళను + msgid "Preserve this directory" + msgstr "ఈ డైరెక్టరీను నిలిపివుంచుము" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "యూజర్‌స్పేస్ కోడ్ చేత పంపిన సంకేతం" +@@ -843,11 +1057,15 @@ msgstr "డైరెక్టరీ సృష్టించుటలో సమ + msgid "Print search string(s) to stdout and exit" + msgstr "stdout కు శోధన స్ట్రింగ్స్ ముద్రించి నిష్క్రమించు" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "సమస్యను నవీకరించలేము: ఒకటి కన్నా ఎక్కువ oops కనబడెను" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d క్షణాలు స్లీపింగ్" +@@ -1419,31 +1637,35 @@ msgstr "కనుగొన్న oopses తో ఫైళ్ళు తొలగ + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ఒకటి కన్నా ఎక్కువ సమస్య డైరెక్టరీలు గుర్తించెను" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "వా‍డుక: abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "జాబితా యింతవరకు సమస్యలను నివేదించలేదు [DIRల నందు]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "సమస్య డైరెక్టరీ DIR తీసివేయి" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "సమస్య డాటాను DIR నందు విశ్లేషించు మరియు నివేదించు" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR గురించి సమాచారం ముద్రించు" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "ఇటీవలి క్రాష్‌ల లెక్కను ముద్రించు" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "అదనపు సమాచారం కొరకు 'abrt-cli COMMAND --help' చూడండి" + +@@ -1505,6 +1727,45 @@ msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్న + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT %u సమస్య(లు) గుర్తించెను. మరింత సమాచారం కోసం యిది నడుపండి: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/tg.po b/po/tg.po +index d3ebe4e..3b589b1 100644 +--- a/po/tg.po ++++ b/po/tg.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Tajik (http://www.transifex.com/projects/p/fedora/language/tg/)\n" ++"Language-Team: Tajik (http://www.transifex.com/projects/p/fedora-abrt/language/tg/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Огоҳӣ" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Пинҳон кардан" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Гузориш" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "Файли танзимотӣ" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [имконот]" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/th.po b/po/th.po +index 045d65a..26aa6bf 100644 +--- a/po/th.po ++++ b/po/th.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Thai (http://www.transifex.com/projects/p/fedora/language/th/)\n" ++"Language-Team: Thai (http://www.transifex.com/projects/p/fedora-abrt/language/th/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/tl.po b/po/tl.po +index 718c9fb..068e621 100644 +--- a/po/tl.po ++++ b/po/tl.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Tagalog (http://www.transifex.com/projects/p/fedora/language/tl/)\n" ++"Language-Team: Tagalog (http://www.transifex.com/projects/p/fedora-abrt/language/tl/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/tr.po b/po/tr.po +index 4f966fb..880ac22 100644 +--- a/po/tr.po ++++ b/po/tr.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Turkish (http://www.transifex.com/projects/p/fedora/language/tr/)\n" ++"Language-Team: Turkish (http://www.transifex.com/projects/p/fedora-abrt/language/tr/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/uk.po b/po/uk.po +index 98845c0..9a32458 100644 +--- a/po/uk.po ++++ b/po/uk.po +@@ -9,10 +9,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Ukrainian (http://www.transifex.com/projects/p/fedora-abrt/language/uk/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -73,120 +73,206 @@ msgstr "%s та діагностичні дані надіслано" + msgid "Can't execute '%s'" + msgstr "Не вдалося виконати «%s»" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "Не вдалося закрити сповіщення: %s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "Попередження" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Аплет у області сповіщень для попередження користувача про виявлені ABRT проблеми" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Максим Дзюманенко \nЮрій Чорноіван " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "Ви_йти" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "Сховати" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "_Про програму" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "Виявлено проблему" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "Завжди ігнорувати" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "Відкрити" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "Звіт про цю проблему вже створено" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "Виникла відома проблема" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "Повідомити" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "Виникла проблема" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "Створено звіт щодо проблеми" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "Виникла нова проблема" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "Не вдалося показати сповіщення: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Не вдалося виконати читання з каналу gio: «%s»" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Не вдалося встановити кодування на каналі gio: %s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Не вдалося увімкнути режим без блокування для каналу gio: %s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не вдалося визначити права доступу до «%s»" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Не вдалося відкрити каталог для запису, «%s»" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "Не вдалося встановити з’єднання з засобом керування сеансом: «%s», сповіщення може бути повторно показано під час наступного входу до системи" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "Питати перед перехопленням каталогу" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "Автоматично надсилати uReport" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "Скорочене звітування" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "Скорочене звітування без підтвердження" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "Файл дампу ядра (coredump) потрібен для створення даних трасування стека, тривалої і ресурсомісткої дії. У ABRT передбачено службу створення трасування стека на основі дампу ядра, але для роботи з нею слід вивантажити дамп ядра на сервер служби. Якщо не буде позначено цей пункт, ABRT вивантажуватиме дамп ядра без додаткових підтверджень." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "ABRT зберігає дані проблем у каталогах. Якщо ABRT потрібен придатний до запису даних каталог, каталог з загальносистемної теки буде пересунуто до домашньої теки вашого користувача. Якщо не буде позначено цей пункт, ABRT пересуватиме каталог проблеми без підтвердження з вашого боку." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "uReport — короткий і повністю анонімний опис проблеми. ABRT використовує uReports для пришвидшення пошуку дублікатів. За типових налаштувань uReport надсилається на початку процедури звітування. Якщо буде позначено цей пункт, звіти uReports надсилатимуться автоматично негайно після виявлення проблеми." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "Якщо буде позначено цей пункт, процедуру звітування, розпочату натисканням кнопки «Звітувати» у повідомленні-вигульку, буде перервано негайно після надсилання звіту uReport. Звичайно ж, після цього ви зможете скористатися типовим засобом навігації списком проблем для створення повного звіту." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "Якщо буде позначено цей пункт, ABRT ніколи не показуватиме сповіщень щодо звітованих проблем. Працюватиме, лише якщо увімкнено скорочене звітування." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "Питати перед вивантаженням дампу ядра" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "Якщо буде позначено цей пункт, ABRT завжди створюватиме повідомлення про вади з обмеженим доступом, якщо існуватиме можливість потрапляння до звіту конфіденційних даних." ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "Обмежувати доступ до звітів з конфіденційними даними" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "Сповіщати про неповні дані щодо проблеми" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "Неповнота даних щодо проблеми є наслідком вимикання комп’ютера або або виходу користувача з системи. З метою забезпечення змістовності звітів щодо вад ABRT не дозволить вам надіслати повідомлення щодо таких проблем." ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "З_акрити" +@@ -195,7 +281,7 @@ msgstr "З_акрити" + msgid "_Defaults" + msgstr "_Типові" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Налаштування звітування про проблеми" +@@ -234,7 +320,7 @@ msgstr "Проблемний каталог" + msgid "Configuration file" + msgstr "Файл налаштувань" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [параметри]" +@@ -301,19 +387,19 @@ msgstr "Не залишилося вільного місця для запис + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Не вдалося вилучити елемент «%s» з каталогу проблеми «%s»" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "Назву «%s» було втрачено, будь ласка, перевірте, чи не запущено іншу службу з цією назвою.\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Завершувати роботу після вказаної кількості секунд бездіяльності" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Цю програму слід запускати від імені адміністратора (root)." + +@@ -388,8 +474,85 @@ msgstr "Некоректна кількість параметрів" + msgid "Unknown option value: '%s'\n" + msgstr "Невідоме значення параметра: «%s»\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "Користування: %s [-vd] КАТАЛОГ_БУФЕРА_ABRT КАТАЛОГ_ВИВАНТАЖЕННЯ НАЗВА_ФАЙЛА\n\n -v - докладно\n -d - вилучити вивантажений архів\n КАТАЛОГ_БУФЕРА_ABRT - каталог, до якого розпаковано коректні вивантажені архіви\n КАТАЛОГ_ВИВАНТАЖЕННЯ - каталог, у якому зберігаються вивантажені архіви\n НАЗВА_ФАЙЛА - назва файла вивантаженого архіву\n" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "Не є каталогом: «{0}»" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "Пропускаємо: «{0}» (починається з похилої риски)" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "Пропускаємо: «{0}» (починається з крапки)" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "Пропускаємо: «{0}» (містить ..)" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "Пропускаємо: «{0}» (містить пробіл)" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "Пропускаємо: «{0}» (містить символ табуляції)" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "Не вдалося змінити каталог на «{0}»" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "Невідомий тип файла: «{0}»" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "Не вдалося створити робочий каталог у «{0}»" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "Не вдалося пересунути «{0}» до «{1}»" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "Не вдалося скопіювати «{0}» до «{1}»" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "Помилка під час перевірки «{0}»" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "Розпаковуємо «{0}»" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "Не вдалося створити каталог «{0}»" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "Не вдалося розпакувати «{0}»" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "«{0}» успішно оброблено" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Створюється трасування" + +@@ -398,32 +561,32 @@ msgstr "Створюється трасування" + msgid "Can't connect to system DBus: %s" + msgstr "Не вдалося з’єднатися з загальносистемним D-Bus: %s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Не вдалося змінити власника «%s»: %s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Спроба вилучення каталогу проблеми зазнала невдачі: %s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Не вдалося отримати дані проблеми з abrt-dbus: %s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Не вдалося отримати список проблем з abrt-dbus: %s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Не вдалося створити тимчасовий файл «%s»" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -431,7 +594,7 @@ msgid "" + msgstr "Не вдалося виконати запис до «%s». Проблему «%s» не буде вилучено зі списку ігнорованих проблем «%s»" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "Не вдалося перейменувати «%s» на «%s». Помилка під час спроби вилучення проблеми «%s»." +@@ -463,6 +626,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d КАТАЛОГ\n\nОбчислює і зберігає UUID дампу ядра у каталозі даних проблеми КАТАЛОГ" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "Аналізуємо дамп ядра «%s»" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "Не вистачає ідентифікатора збирання: %s" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "Користування: %s [-v] [-o ФАЙЛ РЕЗУЛЬТАТІВ] -c ДАМП ЯДРА" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "Не вказано файла дампу ядра" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -489,29 +671,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d КАТАЛОГ\n\nОбчислює і зберігає UUID та DUPHASH аварійних дампів Python" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "Користування: {0} [-v[v]] [--core=ЯДРО_ВМ]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Файла {0} не існує" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "Видобуваємо текст опису помилки з ядра" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "Не вдалося обробити {0}:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "Не вдалося видобути повідомлення щодо помилки: «{0}»" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Текст повідомлення щодо помилки успішно видобуто" + +@@ -651,6 +833,38 @@ msgstr "Вилучити файли всередині цього каталог + msgid "Preserve this directory" + msgstr "Зберегти цей каталог" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "Не вдалося запустити «%s», повідомлення про помилку: «%s»" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "Нечислові дані у файлі «%s»" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "Користування: %s [-v]" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "Не вдалося отримати дані щодо поточного робочого каталогу, оскільки його, ймовірно, вилучено" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "Щодо цієї проблеми вже створено повідомлення про ваду:" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "uReport вже надіслано, повторне надсилання скасовано" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "reporter-ureport аварійно завершила роботу з кодом виходу %d" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "Сигнал надіслано з коду простору користувача" +@@ -841,11 +1055,15 @@ msgstr "Встановлення інтервалу створення ката + msgid "Print search string(s) to stdout and exit" + msgstr "Вивести рядки пошуку до стандартного виведення і завершити роботу" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "Не вдалося скомпілювати формальний вираз" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "Не вдалося оновити дані проблеми, оскільки знайдено декілька повідомлень про помилки." + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Очікуємо %d секунд" +@@ -1417,31 +1635,35 @@ msgstr "Вилучити файли зі знайденими даними що + msgid "'%s' identifies more than one problem directory" + msgstr "«%s» визначає декілька каталогів проблем" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Користування: abrt-cli [--version] КОМАНДА [КАТАЛОГ]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "Показати список всіх проблем, щодо яких не складено звітів [у вказаних каталогах]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "Показати список проблем [у вказаних КАТАЛОГах]" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Вилучити каталог даних проблеми КАТАЛОГ" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Проаналізувати і створити звіт за даними з вказаного каталогу" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Показати дані щодо каталогу КАТАЛОГ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Вивести кількість нещодавніх аварійних завершень роботи" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Щоб дізнатися більше, скористайтеся командою «abrt-cli КОМАНДА --help»" + +@@ -1503,6 +1725,45 @@ msgstr "Вивести дані щодо проблем, які сталися + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT виявлено записи проблем (%u). Докладніші дані може бути отримано за допомогою такої команди: abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "& report [параметри] КАТАЛОГ..." ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Вилучити КАТАЛОГ_ПРОБЛЕМИ після створення звіту" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Вилучаємо «%s»" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/uk_UA.po b/po/uk_UA.po +deleted file mode 100644 +index e642939..0000000 +--- a/po/uk_UA.po ++++ /dev/null +@@ -1,1588 +0,0 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# +-# Translators: +-msgid "" +-msgstr "" +-"Project-Id-Version: ABRT\n" +-"Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" +-"Content-Type: text/plain; charset=UTF-8\n" +-"Content-Transfer-Encoding: 8bit\n" +-"Language: uk_UA\n" +-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +- +-#: ../src/applet/abrt-applet.desktop.in.h:1 +-msgid "Automatic Bug Reporting Tool" +-msgstr "" +- +-#: ../src/applet/abrt-applet.desktop.in.h:2 +-msgid "ABRT notification applet" +-msgstr "" +- +-#: ../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" +-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:243 +-#, c-format +-msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:267 +-#, c-format +-msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:386 +-msgid "A problem has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:388 +-#, c-format +-msgid "A problem in the %s package has been detected" +-msgstr "" +- +-#: ../src/applet/applet.c:398 +-#, c-format +-msgid "%s and the diagnostic data has been submitted" +-msgstr "" +- +-#: ../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:632 ../src/applet/applet.c:698 +-#, c-format +-msgid "Can't close notification: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 +-msgid "Warning" +-msgstr "" +- +-#: ../src/applet/applet.c:788 +-msgid "" +-"Notification area applet that notifies users about issues detected by ABRT" +-msgstr "" +- +-#: ../src/applet/applet.c:804 +-msgid "translator-credits" +-msgstr "" +- +-#: ../src/applet/applet.c:812 +-msgid "_Quit" +-msgstr "" +- +-#: ../src/applet/applet.c:814 +-msgid "Hide" +-msgstr "" +- +-#: ../src/applet/applet.c:816 +-msgid "_About" +-msgstr "" +- +-#: ../src/applet/applet.c:884 +-msgid "Problem detected" +-msgstr "" +- +-#: ../src/applet/applet.c:934 +-msgid "Ignore forever" +-msgstr "" +- +-#. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 +-msgid "Open" +-msgstr "" +- +-#: ../src/applet/applet.c:950 +-msgid "The Problem has already been Reported" +-msgstr "" +- +-#: ../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:969 ../src/applet/applet.c:1004 +-msgid "Report" +-msgstr "" +- +-#: ../src/applet/applet.c:974 +-msgid "A Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1000 +-msgid "A Problem has been Reported" +-msgstr "" +- +-#: ../src/applet/applet.c:1008 +-msgid "A New Problem has Occurred" +-msgstr "" +- +-#: ../src/applet/applet.c:1018 +-#, c-format +-msgid "Can't show notification: %s" +-msgstr "" +- +-#. TODO: Terminate child's process? +-#: ../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:1136 +-#, c-format +-msgid "Can't set encoding on gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1140 +-#, c-format +-msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" +- +-#: ../src/applet/applet.c:1172 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1182 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../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: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:75 +-msgid "_Close" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:84 +-msgid "_Defaults" +-msgstr "" +- +-#: ../src/configuration-gui/system-config-abrt.c:110 +-#: ../src/configuration-gui/main.c:36 +-msgid "Problem Reporting Configuration" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:75 +-msgid "About System Config ABRT" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:105 +-msgid "About" +-msgstr "" +- +-#: ../src/configuration-gui/main.c:106 +-msgid "Quit" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:382 +-msgid "" +-"& [-v] [-c CONFFILE] -d DIR\n" +-"\n" +-"Query package database and save package and component name" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:394 +-#: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 +-#: ../src/plugins/abrt-action-analyze-oops.c:48 +-#: ../src/plugins/abrt-action-analyze-xorg.c:84 +-#: ../src/plugins/abrt-action-analyze-python.c:47 +-#: ../src/plugins/abrt-action-generate-backtrace.c:55 +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 +-msgid "Problem directory" +-msgstr "" +- +-#: ../src/daemon/abrt-action-save-package-data.c:395 +-msgid "Configuration file" +-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 "" +- +-#: ../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: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 "" +- +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 +-msgid "Add program names to log" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:123 +-msgid "Unknown error" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:188 +-#, c-format +-msgid "'%s' is not a valid problem directory" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:223 +-#, c-format +-msgid "'%s' element can't be modified" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 +-#: ../src/dbus/abrt-configuration.c:683 +-#, c-format +-msgid "Not Authorized" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:256 +-msgid "Can't access the problem for modification" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:461 +-msgid "Chowning directory failed. Check system logs for more details." +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:559 +-#, c-format +-msgid "'%s' is not a valid element name" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:580 +-#, c-format +-msgid "Can't get size of '%s'" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:595 +-msgid "No problem space left" +-msgstr "" +- +-#: ../src/dbus/abrt-dbus.c:627 +-#, c-format +-msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#: ../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 "" +- +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 +-msgid "This program must be run as root." +-msgstr "" +- +-#: ../src/daemon/abrtd.c:451 +-msgid "" +-"The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" +- +-#: ../src/daemon/abrtd.c:497 +-msgid "Do not daemonize" +-msgstr "" +- +-#: ../src/daemon/abrtd.c:498 +-msgid "Log to syslog even with -d" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:388 +-msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:396 +-msgid "Run EVENT on DIR" +-msgstr "" +- +-#: ../src/daemon/abrt-handle-event.c:397 +-msgid "Communicate directly to the user" +-msgstr "" +- +-#: ../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:258 +-msgid "" +-"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +-"\n" +-"\n" +-"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" +-"specified in abrt.conf\n" +-"\n" +-"If UPLOAD_DIRECTORY is not provided, uses a value of\n" +-"WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:281 +-msgid "Daemize" +-msgstr "" +- +-#: ../src/daemon/abrt-upload-watch.c:282 +-msgid "Number of concurrent workers. Default is " +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" +-msgstr "" +- +-#: ../src/daemon/abrt-auto-reporting.c:138 +-#, c-format +-msgid "Unknown option value: '%s'\n" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/lib/hooklib.c:251 +-msgid "Generating backtrace" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:42 +-#, c-format +-msgid "Can't connect to system DBus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:66 +-#, c-format +-msgid "Can't chown '%s': %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:93 +-#, c-format +-msgid "Deleting problem directory failed: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:127 +-#, c-format +-msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/problem_api_dbus.c:161 +-#, c-format +-msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" +- +-#: ../src/lib/ignored_problems.c:231 +-#, c-format +-msgid "Can't create temporary file '%s'" +-msgstr "" +- +-#: ../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 "" +- +-#. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 +-#, c-format +-msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:41 +-msgid "" +-"& [options] -d DIR\n" +-"\n" +-"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" +-"and identifies crash function in problem directory DIR" +-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 "" +- +-#: ../src/plugins/abrt-action-analyze-backtrace.c:146 +-msgid "Crash thread not found" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-c.c:67 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-oops.c:37 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "" +- +-#: ../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 "" +- +-#: ../src/plugins/abrt-action-analyze-xorg.c:113 +-#, c-format +-msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-python.c:36 +-msgid "" +-"& [-v] -d DIR\n" +-"\n" +-"Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 +-msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 +-msgid "File {0} doesn't exist" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 +-msgid "Extracting the oops text from core" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 +-msgid "" +-"Can't process {0}:\n" +-"{1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 +-msgid "Can't extract the oops message: '{0}'" +-msgstr "" +- +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 +-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" +-"\n" +-"Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:56 +-msgid "Additional debuginfo directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-backtrace.c:57 +-msgid "Kill gdb if it runs for more than NUM seconds" +-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 "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 +-msgid "" +-"& [-v] [-r] -d DIR\n" +-"\n" +-"Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 +-msgid "Do not hash fingerprints" +-msgstr "" +- +-#. Let user know what's going on +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 +-msgid "Generating core_backtrace" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 +-msgid "Error: GDB did not return any data" +-msgstr "" +- +-#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 +-#, c-format +-msgid "Error: %s" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:51 +-msgid "Exiting on user command" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:88 +-#, c-format +-msgid "" +-"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" +-" [-e, --exact=PATH[:PATH]...]\n" +-"\n" +-"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +-"to CACHEDIR, using TMPDIR as temporary staging area.\n" +-"Old 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" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:169 +-msgid "Can't open {0}: {1}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:206 +-msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:209 +-msgid "{0} of debuginfo files are not installed" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:223 +-msgid "Missing requested file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:228 +-msgid "Missing debuginfo file: {0}" +-msgstr "" +- +-#: ../src/plugins/abrt-action-install-debuginfo.in:231 +-msgid "All debuginfo files are available" +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 +-msgid "" +-"Ok to upload core dump? (It may contain sensitive data). If your answer is " +-"'No', a stack trace will be generated locally. (It may download a huge " +-"amount of data)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 +-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 "" +- +-#: ../src/plugins/abrt-action-trim-files.c:222 +-msgid "" +-"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" +-"\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" +-"FILEs are preserved (never deleted)." +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:236 +-msgid "Delete whole problem directories" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:237 +-msgid "Delete files inside this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-action-trim-files.c:238 +-msgid "Preserve this directory" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:529 +-msgid "Signal sent by userspace code" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:533 +-msgid "Signal sent by timer/IO/async event" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:541 +-msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:544 +-msgid "Signal due to write to closed pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:550 +-#: ../src/plugins/abrt-gdb-exploitable:575 +-msgid "Signal sent by keyboard" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:554 +-#: ../src/plugins/abrt-gdb-exploitable:579 +-msgid "Job control signal sent by kernel" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:558 +-#: ../src/plugins/abrt-gdb-exploitable:587 +-msgid "Signal sent by window resize" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:562 +-#: ../src/plugins/abrt-gdb-exploitable:591 +-msgid "Signal sent by alarm(N) expiration" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:583 +-msgid "Signal due to write to broken pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:607 +-msgid "ABRT signal (abort() was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:616 +-msgid "XCPU signal (over CPU time limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:620 +-msgid "XFSZ signal (over file size limit)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:624 +-msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:628 +-msgid "SYS signal (unknown syscall was called?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:633 +-msgid "Arithmetic exception" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:637 +-msgid "Division by zero" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:641 +-msgid "Illegal instruction (jump to a random address?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:647 +-msgid "Non-crash related signal" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:652 +-msgid "Stack overflow" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:656 +-msgid "Write to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:660 +-msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:666 +-#: ../src/plugins/abrt-gdb-exploitable:670 +-msgid "Jump to an invalid address" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:674 +-msgid "" +-"Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:693 +-msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:706 +-msgid "Likely crash reason: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:707 +-msgid "Exploitable rating (0-9 scale): " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:709 +-msgid "Current instruction: " +-msgstr "" +- +-#: ../src/plugins/abrt-gdb-exploitable:711 +-msgid "Exploitability analysis came up empty\n" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:142 +-msgid "" +-"& [-vs] [-F STR]... FILE PROG [ARGS]\n" +-"\n" +-"Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "" +- +-#: ../src/plugins/abrt-watch-log.c:154 +-msgid "Don't run PROG if STRs aren't found" +-msgstr "" +- +-#: ../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: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: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:153 +-#, c-format +-msgid " Tainted modules: %s." +-msgstr "" +- +-#: ../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: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:278 +-msgid "Create new problem directory in DIR for every oops found" +-msgstr "" +- +-#: ../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:280 +-msgid "Save the extracted information in PROBLEM" +-msgstr "" +- +-#: ../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:282 +-msgid "Throttle problem directory creation to 1 per second" +-msgstr "" +- +-#: ../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:379 +-msgid "Can't update the problem: more than one oops found" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-oops.c:398 +-#, c-format +-msgid "Sleeping for %d seconds" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:237 +-msgid "" +-"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" +-"\n" +-"Extract Xorg crash from FILE (or standard input)" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:245 +-msgid "Print found crash data on standard output" +-msgstr "" +- +-#: ../src/plugins/abrt-dump-xorg.c:246 +-msgid "Create problem directory in DIR for every crash found" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:70 +-msgid "" +-"Retrace server can not be used, because the crash is too large. Try local " +-"retracing." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:211 +-#: ../src/plugins/abrt-retrace-client.c:398 +-#: ../src/plugins/abrt-retrace-client.c:666 +-#: ../src/plugins/abrt-retrace-client.c:832 +-#, c-format +-msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:223 +-#: ../src/plugins/abrt-retrace-client.c:412 +-#: ../src/plugins/abrt-retrace-client.c:765 +-#: ../src/plugins/abrt-retrace-client.c:849 +-#: ../src/plugins/abrt-retrace-client.c:916 +-#: ../src/plugins/abrt-retrace-client.c:1001 +-#: ../src/plugins/abrt-retrace-client.c:1060 +-#, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" +-"%s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:232 +-#: ../src/plugins/abrt-retrace-client.c:745 +-#: ../src/plugins/abrt-retrace-client.c:841 +-#: ../src/plugins/abrt-retrace-client.c:908 +-#: ../src/plugins/abrt-retrace-client.c:982 +-#: ../src/plugins/abrt-retrace-client.c:1052 +-msgid "Invalid response from server: missing HTTP message body." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:424 +-#, c-format +-msgid "" +-"Retrace server is unable to process package '%s.%s'.\n" +-"Is it a part of official '%s' repositories?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:444 +-msgid "Querying server settings" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:452 +-msgid "The server is fully occupied. Try again later." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:453 +-msgid "The server denied your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:484 +-#: ../src/plugins/abrt-retrace-client.c:500 +-#, c-format +-msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:514 +-#, c-format +-msgid "" +-"The size of your crash is %lld bytes, but the retrace server only accepts " +-"crashes smaller or equal to %lld bytes." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:534 +-msgid "The server does not support xz-compressed tarballs." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:571 +-#, c-format +-msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:575 +-msgid "The server is not able to handle your request." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:594 +-msgid "Unknown package sent to Retrace server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:603 +-msgid "Preparing an archive to upload" +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:629 +-#, c-format +-msgid "You are going to upload %d megabytes. Continue?" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:638 +-msgid "Cancelled by user" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:673 +-#, c-format +-msgid "Uploading %d megabytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:675 +-#, c-format +-msgid "Uploading %lld bytes\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:699 +-#, c-format +-msgid "Uploading %d%%\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:711 +-msgid "Failed to read from a pipe" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:724 +-#, c-format +-msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:735 +-msgid "Upload successful" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:757 +-msgid "" +-"Your problem directory is corrupted and can not be processed by the Retrace " +-"server." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:759 +-msgid "" +-"The archive contains malicious files (such as symlinks) and thus can not be " +-"processed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:772 +-msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:778 +-msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:785 +-msgid "Retrace job started" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:798 +-#, c-format +-msgid "" +-"Task Id: %s\n" +-"Task Password: %s\n" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:856 +-msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:868 +-#, c-format +-msgid "" +-"Task Status: %s\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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1160 +-msgid "" +-"Retrace failed. Try again later and if the problem persists report this " +-"issue please." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1207 +-msgid "log to syslog" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1209 +-msgid "allow insecure connection to retrace server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1211 +-msgid "" +-"do not check whether retrace server is able to process given package before " +-"uploading the archive" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1214 +-msgid "retrace server URL" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1216 +-msgid "retrace server port" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1218 +-msgid "(debug) show received HTTP headers" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1219 +-msgid "For create and batch operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1221 +-msgid "read data from ABRT problem directory" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1223 +-msgid "read data from coredump" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1225 +-msgid "Delay for polling operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1227 +-msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1229 +-msgid "For status, backtrace, and log operations" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1231 +-msgid "id of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1233 +-msgid "password of your task on server" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1237 +-msgid "" +-"abrt-retrace-client [options]\n" +-"Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1282 +-#: ../src/plugins/abrt-retrace-client.c:1288 +-msgid "Either problem directory or coredump is needed." +-msgstr "" +- +-#: ../src/plugins/abrt-retrace-client.c:1294 +-#: ../src/plugins/abrt-retrace-client.c:1302 +-#: ../src/plugins/abrt-retrace-client.c:1310 +-#: ../src/plugins/abrt-retrace-client.c:1318 +-msgid "Task id is needed." +-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 "" +- +-#: ../src/plugins/abrt-retrace-client.c:1324 +-#, c-format +-msgid "Unknown operation: %s." +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 +-msgid "Local GNU Debugger" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 +-msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "" +- +-#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 +-msgid "" +-"Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +-msgid "Send core dump to remote retrace server for analysis" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +-#: ../src/plugins/analyze_CCpp.xml.in.h:3 +-msgid "Retrace server 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 "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 +-#: ../src/plugins/analyze_CCpp.xml.in.h:5 +-msgid "Insecure" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 +-#: ../src/plugins/analyze_CCpp.xml.in.h:6 +-msgid "Whether or not to use insecure connection" +-msgstr "" +- +-#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 +-#: ../src/plugins/analyze_CCpp.xml.in.h:7 +-msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:1 +-msgid "Collect .xsession-errors" +-msgstr "" +- +-#: ../src/plugins/collect_xsession_errors.xml.in.h:2 +-msgid "Save relevant lines from ~/.xsession-errors file" +-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 "" +- +-#: ../src/plugins/https-utils.c:62 +-msgid "An error occurred on the server side." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:65 +-#, c-format +-msgid "A server-side error occurred on '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:74 +-msgid "An error occurred while connecting to the server" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:77 +-#, c-format +-msgid "An error occurred while connecting to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:97 +-#, c-format +-msgid "Issuer certificate is invalid: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:100 +-#, c-format +-msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:103 +-#, c-format +-msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:107 +-msgid "Remote certificate has expired." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:110 +-#, c-format +-msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:113 +-#, c-format +-msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:149 +-#, c-format +-msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:182 +-#, c-format +-msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" +- +-#. Host exists, but has neither IPv4 nor IPv6?? +-#: ../src/plugins/https-utils.c:203 +-#, c-format +-msgid "Can't resolve host name '%s'." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:210 +-msgid "Failed to set socket blocking mode." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:213 +-msgid "Failed to wrap TCP socket by SSL." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:215 +-msgid "Failed to enable client handshake to SSL socket." +-msgstr "" +- +-#: ../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:233 +-#, c-format +-msgid "Can't connect to '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:241 +-msgid "Failed to set certificate hook." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:247 +-msgid "Failed to set handshake callback." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:251 +-msgid "Failed to reset handshake." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:258 +-#, c-format +-msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:267 +-msgid "Failed to close SSL socket." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:332 +-#, c-format +-msgid "Malformed HTTP response header: '%s'" +-msgstr "" +- +-#: ../src/plugins/https-utils.c:369 +-#, c-format +-msgid "Receiving of data failed: NSS error %d." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:398 +-msgid "Malformed chunked response." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:423 +-msgid "Failed to initialize NSS." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:429 +-msgid "Failed to initialize security module." +-msgstr "" +- +-#: ../src/plugins/https-utils.c:444 +-msgid "Failed to shutdown NSS." +-msgstr "" +- +-#: ../src/plugins/bodhi.c:375 +-msgid "List of bug ids" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:376 +-msgid "Specify a bodhi server url" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:377 +-msgid "Specify a release" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:382 +-msgid "" +-"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" +-"\n" +-"Search for updates on bodhi server" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:434 +-msgid "Searching for updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:440 +-msgid "No updates for this package found" +-msgstr "" +- +-#. strbuf_free(q); +-#: ../src/plugins/bodhi.c:469 +-msgid "Local version of the package is newer than available updates" +-msgstr "" +- +-#: ../src/plugins/bodhi.c:486 +-#, c-format +-msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:85 +-msgid "" +-"& [-v] [-od] FILE...\n" +-"\n" +-"Scans files for split oops message. Can print and/or delete them." +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:97 +-msgid "Print found oopses" +-msgstr "" +- +-#: ../src/hooks/abrt-merge-pstoreoops.c:98 +-msgid "Delete files with found oopses" +-msgstr "" +- +-#: ../src/cli/abrt-cli-core.c:91 +-#, c-format +-msgid "'%s' identifies more than one problem directory" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:142 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:147 +-msgid "Remove problem directory DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:148 +-msgid "Analyze and report problem data in DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:149 +-msgid "Print information about DIR" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:150 +-msgid "Print the count of the recent crashes" +-msgstr "" +- +-#: ../src/cli/abrt-cli.c:165 +-msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" +- +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "" +- +-#: ../src/cli/list.c:188 +-msgid "List only not-reported problems" +-msgstr "" +- +-#. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 +-msgid "Show detailed report" +-msgstr "" +- +-#: ../src/cli/list.c:191 +-msgid "List only the problems more recent than specified timestamp" +-msgstr "" +- +-#: ../src/cli/list.c:192 +-msgid "List only the problems older than specified timestamp" +-msgstr "" +- +-#: ../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:235 +-msgid "& info [options] DIR..." +-msgstr "" +- +-#: ../src/cli/list.c:244 +-msgid "Text larger than this will be shown abridged" +-msgstr "" +- +-#: ../src/cli/list.c:264 +-#, c-format +-msgid "No such problem directory '%s'" +-msgstr "" +- +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "" +- +-#: ../src/cli/status.c:78 +-msgid "Print only the problem count without any message" +-msgstr "" +- +-#: ../src/cli/status.c:79 +-msgid "Print only the problems more recent than specified timestamp" +-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 "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:1 +-msgid "" +-"Send core dump to remote retrace server for analysis or perform local " +-"analysis if the remote analysis fails" +-msgstr "" +- +-#: ../src/plugins/analyze_CCpp.xml.in.h:2 +-msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. If " +-"user doens't want to upload his coredump to anywhere the event performs " +-"local analysis. Local analysis is run event if remote analysis fails. Pros: " +-"no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " +-"private data, if any." +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:1 +-msgid "Analyze VM core" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "" +- +-#: ../src/plugins/analyze_VMcore.xml.in.h:3 +-msgid "" +-"Needs to install kernel debuginfo packages, which might take significant " +-"time, and take up disk space." +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:1 +-msgid "Collect GConf configuration" +-msgstr "" +- +-#: ../src/plugins/collect_GConf.xml.in.h:2 +-msgid "Save configuration from application's GConf directory" +-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 "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:1 +-msgid "Collect system-wide vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_system.xml.in.h:2 +-msgid "Save /etc/vimrc and /etc/gvimrc" +-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 "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:1 +-msgid "Collect yours vim configuration files" +-msgstr "" +- +-#: ../src/plugins/collect_vimrc_user.xml.in.h:2 +-msgid "Save .vimrc and .gvimrc from your home directory" +-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 "" +- +-#: ../src/plugins/post_report.xml.in.h:1 +-msgid "Post report" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:2 +-msgid "Executed after the reporting is finished" +-msgstr "" +- +-#: ../src/plugins/post_report.xml.in.h:3 +-msgid "Used for updating of the databases" +-msgstr "" +diff --git a/po/ur.po b/po/ur.po +index 6407454..b110b0e 100644 +--- a/po/ur.po ++++ b/po/ur.po +@@ -8,10 +8,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Urdu (http://www.transifex.com/projects/p/fedora/language/ur/)\n" ++"Language-Team: Urdu (http://www.transifex.com/projects/p/fedora-abrt/language/ur/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -72,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "انتباہ" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -194,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -233,7 +319,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -300,19 +386,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -387,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -397,32 +560,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -430,7 +593,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -462,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -488,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -650,6 +832,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -840,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1416,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1502,6 +1724,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/uz.po b/po/uz.po +new file mode 100644 +index 0000000..1c85750 +--- /dev/null ++++ b/po/uz.po +@@ -0,0 +1,1849 @@ ++# SOME DESCRIPTIVE TITLE. ++# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ++# This file is distributed under the same license as the PACKAGE package. ++# ++# Translators: ++msgid "" ++msgstr "" ++"Project-Id-Version: ABRT\n" ++"Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Uzbek (http://www.transifex.com/projects/p/fedora-abrt/language/uz/)\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Language: uz\n" ++"Plural-Forms: nplurals=1; plural=0;\n" ++ ++#: ../src/applet/abrt-applet.desktop.in.h:1 ++msgid "Automatic Bug Reporting Tool" ++msgstr "" ++ ++#: ../src/applet/abrt-applet.desktop.in.h:2 ++msgid "ABRT notification applet" ++msgstr "" ++ ++#: ../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" ++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:243 ++#, c-format ++msgid "Can't connect to NetworkManager over DBus: %s" ++msgstr "" ++ ++#: ../src/applet/applet.c:267 ++#, c-format ++msgid "Can't determine network status via NetworkManager: %s" ++msgstr "" ++ ++#: ../src/applet/applet.c:386 ++msgid "A problem has been detected" ++msgstr "" ++ ++#: ../src/applet/applet.c:388 ++#, c-format ++msgid "A problem in the %s package has been detected" ++msgstr "" ++ ++#: ../src/applet/applet.c:398 ++#, c-format ++msgid "%s and the diagnostic data has been submitted" ++msgstr "" ++ ++#: ../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:632 ../src/applet/applet.c:708 ++#, c-format ++msgid "Can't close notification: %s" ++msgstr "" ++ ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++msgid "Warning" ++msgstr "" ++ ++#: ../src/applet/applet.c:798 ++msgid "" ++"Notification area applet that notifies users about issues detected by ABRT" ++msgstr "" ++ ++#: ../src/applet/applet.c:814 ++msgid "translator-credits" ++msgstr "" ++ ++#: ../src/applet/applet.c:822 ++msgid "_Quit" ++msgstr "" ++ ++#: ../src/applet/applet.c:824 ++msgid "Hide" ++msgstr "" ++ ++#: ../src/applet/applet.c:826 ++msgid "_About" ++msgstr "" ++ ++#: ../src/applet/applet.c:894 ++msgid "Problem detected" ++msgstr "" ++ ++#: ../src/applet/applet.c:944 ++msgid "Ignore forever" ++msgstr "" ++ ++#. Problem has been 'autoreported' and is considered as KNOWN ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++msgid "Open" ++msgstr "" ++ ++#: ../src/applet/applet.c:960 ++msgid "The Problem has already been Reported" ++msgstr "" ++ ++#: ../src/applet/applet.c:960 ++msgid "A Known Problem has Occurred" ++msgstr "" ++ ++#. Problem has not yet been 'autoreported' and can be ++#. * 'autoreported' on user request. ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++msgid "Report" ++msgstr "" ++ ++#: ../src/applet/applet.c:984 ++msgid "A Problem has Occurred" ++msgstr "" ++ ++#: ../src/applet/applet.c:1010 ++msgid "A Problem has been Reported" ++msgstr "" ++ ++#: ../src/applet/applet.c:1018 ++msgid "A New Problem has Occurred" ++msgstr "" ++ ++#: ../src/applet/applet.c:1028 ++#, c-format ++msgid "Can't show notification: %s" ++msgstr "" ++ ++#. TODO: Terminate child's process? ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#, c-format ++msgid "Can't read from gio channel: '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:1146 ++#, c-format ++msgid "Can't set encoding on gio channel: %s" ++msgstr "" ++ ++#: ../src/applet/applet.c:1150 ++#, c-format ++msgid "Can't turn on nonblocking mode for gio channel: %s" ++msgstr "" ++ ++#: ../src/applet/applet.c:1184 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:1193 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:1476 ++#, c-format ++msgid "" ++"Failed to open connection to session manager: '%s', notification may " ++"reappear on the next login" ++msgstr "" ++ ++#: ../src/applet/applet.c:1617 ++msgid "" ++"& [-v] [DIR]...\n" ++"\n" ++"Applet which notifies user when new problems are detected by ABRT\n" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ ++#: ../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:112 ++#: ../src/configuration-gui/main.c:36 ++msgid "Problem Reporting Configuration" ++msgstr "" ++ ++#: ../src/configuration-gui/main.c:75 ++msgid "About System Config ABRT" ++msgstr "" ++ ++#: ../src/configuration-gui/main.c:105 ++msgid "About" ++msgstr "" ++ ++#: ../src/configuration-gui/main.c:106 ++msgid "Quit" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-package-data.c:382 ++msgid "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Query package database and save package and component name" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/plugins/abrt-action-analyze-backtrace.c:53 ++#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-oops.c:48 ++#: ../src/plugins/abrt-action-analyze-xorg.c:84 ++#: ../src/plugins/abrt-action-analyze-python.c:47 ++#: ../src/plugins/abrt-action-generate-backtrace.c:55 ++#: ../src/plugins/abrt-action-generate-core-backtrace.c:52 ++msgid "Problem directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-action-save-package-data.c:395 ++msgid "Configuration file" ++msgstr "" ++ ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++msgid "& [options]" ++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: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 "" ++ ++#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++msgid "Add program names to log" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:123 ++msgid "Unknown error" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:188 ++#, c-format ++msgid "'%s' is not a valid problem directory" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:223 ++#, c-format ++msgid "'%s' element can't be modified" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 ++#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-configuration.c:683 ++#, c-format ++msgid "Not Authorized" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:256 ++msgid "Can't access the problem for modification" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:461 ++msgid "Chowning directory failed. Check system logs for more details." ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:559 ++#, c-format ++msgid "'%s' is not a valid element name" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:580 ++#, c-format ++msgid "Can't get size of '%s'" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:595 ++msgid "No problem space left" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:627 ++#, c-format ++msgid "Can't delete the element '%s' from the problem directory '%s'" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" ++ ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:499 ++msgid "Exit after NUM seconds of inactivity" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++msgid "This program must be run as root." ++msgstr "" ++ ++#: ../src/daemon/abrtd.c:451 ++msgid "" ++"The problem data are incomplete. This usually happens when a problem is " ++"detected while computer is shutting down or user is logging out. In order to" ++" 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 "" ++ ++#: ../src/daemon/abrtd.c:497 ++msgid "Do not daemonize" ++msgstr "" ++ ++#: ../src/daemon/abrtd.c:498 ++msgid "Log to syslog even with -d" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-event.c:388 ++msgid "& [-v -i] -e|--event EVENT DIR..." ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-event.c:396 ++msgid "Run EVENT on DIR" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-event.c:397 ++msgid "Communicate directly to the user" ++msgstr "" ++ ++#: ../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:258 ++msgid "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" ++"specified in abrt.conf\n" ++"\n" ++"If UPLOAD_DIRECTORY is not provided, uses a value of\n" ++"WatchCrashdumpArchiveDir option from abrt.conf" ++msgstr "" ++ ++#: ../src/daemon/abrt-upload-watch.c:281 ++msgid "Daemize" ++msgstr "" ++ ++#: ../src/daemon/abrt-upload-watch.c:282 ++msgid "Number of concurrent workers. Default is " ++msgstr "" ++ ++#: ../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 "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:113 ++msgid "Invalid number of arguments" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:138 ++#, c-format ++msgid "Unknown option value: '%s'\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ ++#. Let user know what's going on ++#: ../src/lib/hooklib.c:253 ++msgid "Generating backtrace" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:42 ++#, c-format ++msgid "Can't connect to system DBus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:68 ++#, c-format ++msgid "Can't chown '%s': %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:97 ++#, c-format ++msgid "Deleting problem directory failed: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:133 ++#, c-format ++msgid "Can't get problem data from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/problem_api_dbus.c:169 ++#, c-format ++msgid "Can't get problem list from abrt-dbus: %s" ++msgstr "" ++ ++#: ../src/lib/ignored_problems.c:233 ++#, c-format ++msgid "Can't create temporary file '%s'" ++msgstr "" ++ ++#: ../src/lib/ignored_problems.c:250 ++#, c-format ++msgid "" ++"Can't write to '%s'. Problem '%s' will not be removed from the ignored " ++"problems '%s'" ++msgstr "" ++ ++#. Something nefarious happened ++#: ../src/lib/ignored_problems.c:264 ++#, c-format ++msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-backtrace.c:41 ++msgid "" ++"& [options] -d DIR\n" ++"\n" ++"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" ++"and identifies crash function in problem directory DIR" ++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 "" ++ ++#: ../src/plugins/abrt-action-analyze-backtrace.c:146 ++msgid "Crash thread not found" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-c.c:67 ++msgid "" ++"& [-v] -d DIR\n" ++"\n" ++"Calculates and saves UUID of coredump in problem directory DIR" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-oops.c:37 ++msgid "" ++"& [-v] -d DIR\n" ++"\n" ++"Calculates and saves UUID and DUPHASH for oops problem directory DIR" ++msgstr "" ++ ++#: ../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 "" ++ ++#: ../src/plugins/abrt-action-analyze-xorg.c:113 ++#, c-format ++msgid "Module '%s' was loaded - won't report this crash" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-python.c:36 ++msgid "" ++"& [-v] -d DIR\n" ++"\n" ++"Calculates and saves UUID and DUPHASH of python crash dumps" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 ++msgid "Usage: {0} [-v[v]] [--core=VMCORE]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 ++msgid "File {0} doesn't exist" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 ++msgid "Extracting the oops text from core" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 ++msgid "" ++"Can't process {0}:\n" ++"{1}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 ++msgid "Can't extract the oops message: '{0}'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 ++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" ++"\n" ++"Analyzes coredump in problem directory DIR, generates and saves backtrace" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-generate-backtrace.c:56 ++msgid "Additional debuginfo directories" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-generate-backtrace.c:57 ++msgid "Kill gdb if it runs for more than NUM seconds" ++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 "" ++ ++#: ../src/plugins/abrt-action-generate-core-backtrace.c:40 ++msgid "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"Creates coredump-level backtrace from core dump and corresponding binary" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-generate-core-backtrace.c:53 ++msgid "Do not hash fingerprints" ++msgstr "" ++ ++#. Let user know what's going on ++#: ../src/plugins/abrt-action-generate-core-backtrace.c:64 ++msgid "Generating core_backtrace" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-generate-core-backtrace.c:81 ++msgid "Error: GDB did not return any data" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-generate-core-backtrace.c:95 ++#, c-format ++msgid "Error: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:51 ++msgid "Exiting on user command" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:88 ++#, c-format ++msgid "" ++"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" ++"to CACHEDIR, using TMPDIR as temporary staging area.\n" ++"Old 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" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:169 ++msgid "Can't open {0}: {1}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:206 ++msgid "Coredump references {0} debuginfo files, {1} of them are not installed" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:209 ++msgid "{0} of debuginfo files are not installed" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:223 ++msgid "Missing requested file: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:228 ++msgid "Missing debuginfo file: {0}" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo.in:231 ++msgid "All debuginfo files are available" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 ++msgid "" ++"Ok to upload core dump? (It may contain sensitive data). If your answer is " ++"'No', a stack trace will be generated locally. (It may download a huge " ++"amount of data)." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 ++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 "" ++ ++#: ../src/plugins/abrt-action-trim-files.c:222 ++msgid "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"FILEs are preserved (never deleted)." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-trim-files.c:236 ++msgid "Delete whole problem directories" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-trim-files.c:237 ++msgid "Delete files inside this directory" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-trim-files.c:238 ++msgid "Preserve this directory" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:529 ++msgid "Signal sent by userspace code" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:533 ++msgid "Signal sent by timer/IO/async event" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:541 ++msgid "Signal has siginfo.si_code = SI_USER" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:544 ++msgid "Signal due to write to closed pipe" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:550 ++#: ../src/plugins/abrt-gdb-exploitable:575 ++msgid "Signal sent by keyboard" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:554 ++#: ../src/plugins/abrt-gdb-exploitable:579 ++msgid "Job control signal sent by kernel" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:558 ++#: ../src/plugins/abrt-gdb-exploitable:587 ++msgid "Signal sent by window resize" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:562 ++#: ../src/plugins/abrt-gdb-exploitable:591 ++msgid "Signal sent by alarm(N) expiration" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:583 ++msgid "Signal due to write to broken pipe" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:607 ++msgid "ABRT signal (abort() was called?)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:616 ++msgid "XCPU signal (over CPU time limit)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:620 ++msgid "XFSZ signal (over file size limit)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:624 ++msgid "TRAP signal (can be a bug in a debugger/tracer)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:628 ++msgid "SYS signal (unknown syscall was called?)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:633 ++msgid "Arithmetic exception" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:637 ++msgid "Division by zero" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:641 ++msgid "Illegal instruction (jump to a random address?)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:647 ++msgid "Non-crash related signal" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:652 ++msgid "Stack overflow" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:656 ++msgid "Write to an invalid address" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:660 ++msgid "Subroutine return to an invalid address (corrupted stack?)" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:666 ++#: ../src/plugins/abrt-gdb-exploitable:670 ++msgid "Jump to an invalid address" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:674 ++msgid "" ++"Access past the end of mapped file, invalid address, unaligned access, etc" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:693 ++msgid "Can't get signal no and do exploitability analysis\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:706 ++msgid "Likely crash reason: " ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:707 ++msgid "Exploitable rating (0-9 scale): " ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:709 ++msgid "Current instruction: " ++msgstr "" ++ ++#: ../src/plugins/abrt-gdb-exploitable:711 ++msgid "Exploitability analysis came up empty\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-watch-log.c:142 ++msgid "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Watch log file FILE, run PROG when it grows or is replaced" ++msgstr "" ++ ++#: ../src/plugins/abrt-watch-log.c:154 ++msgid "Don't run PROG if STRs aren't found" ++msgstr "" ++ ++#: ../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: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: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:153 ++#, c-format ++msgid " Tainted modules: %s." ++msgstr "" ++ ++#: ../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: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:278 ++msgid "Create new problem directory in DIR for every oops found" ++msgstr "" ++ ++#: ../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:280 ++msgid "Save the extracted information in PROBLEM" ++msgstr "" ++ ++#: ../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:282 ++msgid "Throttle problem directory creation to 1 per second" ++msgstr "" ++ ++#: ../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:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 ++msgid "Can't update the problem: more than one oops found" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:421 ++#, c-format ++msgid "Sleeping for %d seconds" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:237 ++msgid "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extract Xorg crash from FILE (or standard input)" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:245 ++msgid "Print found crash data on standard output" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-xorg.c:246 ++msgid "Create problem directory in DIR for every crash found" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:70 ++msgid "" ++"Retrace server can not be used, because the crash is too large. Try local " ++"retracing." ++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 "" ++ ++#: ../src/plugins/abrt-retrace-client.c:211 ++#: ../src/plugins/abrt-retrace-client.c:398 ++#: ../src/plugins/abrt-retrace-client.c:666 ++#: ../src/plugins/abrt-retrace-client.c:832 ++#, c-format ++msgid "Failed to send HTTP header of length %d: NSS error %d" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:223 ++#: ../src/plugins/abrt-retrace-client.c:412 ++#: ../src/plugins/abrt-retrace-client.c:765 ++#: ../src/plugins/abrt-retrace-client.c:849 ++#: ../src/plugins/abrt-retrace-client.c:916 ++#: ../src/plugins/abrt-retrace-client.c:1001 ++#: ../src/plugins/abrt-retrace-client.c:1060 ++#, c-format ++msgid "" ++"Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:232 ++#: ../src/plugins/abrt-retrace-client.c:745 ++#: ../src/plugins/abrt-retrace-client.c:841 ++#: ../src/plugins/abrt-retrace-client.c:908 ++#: ../src/plugins/abrt-retrace-client.c:982 ++#: ../src/plugins/abrt-retrace-client.c:1052 ++msgid "Invalid response from server: missing HTTP message body." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:424 ++#, c-format ++msgid "" ++"Retrace server is unable to process package '%s.%s'.\n" ++"Is it a part of official '%s' repositories?" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:444 ++msgid "Querying server settings" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:452 ++msgid "The server is fully occupied. Try again later." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:453 ++msgid "The server denied your request." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:484 ++#: ../src/plugins/abrt-retrace-client.c:500 ++#, c-format ++msgid "'%s' must be a regular file in order to use Retrace server." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:514 ++#, c-format ++msgid "" ++"The size of your crash is %lld bytes, but the retrace server only accepts " ++"crashes smaller or equal to %lld bytes." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:534 ++msgid "The server does not support xz-compressed tarballs." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:571 ++#, c-format ++msgid "The release '%s' is not supported by the Retrace server." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:575 ++msgid "The server is not able to handle your request." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:594 ++msgid "Unknown package sent to Retrace server." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:603 ++msgid "Preparing an archive to upload" ++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 "" ++ ++#: ../src/plugins/abrt-retrace-client.c:629 ++#, c-format ++msgid "You are going to upload %d megabytes. Continue?" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:638 ++msgid "Cancelled by user" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:673 ++#, c-format ++msgid "Uploading %d megabytes\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:675 ++#, c-format ++msgid "Uploading %lld bytes\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:699 ++#, c-format ++msgid "Uploading %d%%\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:711 ++msgid "Failed to read from a pipe" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:724 ++#, c-format ++msgid "Failed to send data: NSS error %d (%s): %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:735 ++msgid "Upload successful" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:757 ++msgid "" ++"Your problem directory is corrupted and can not be processed by the Retrace " ++"server." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:759 ++msgid "" ++"The archive contains malicious files (such as symlinks) and thus can not be " ++"processed." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:772 ++msgid "Invalid response from server: missing X-Task-Id." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:778 ++msgid "Invalid response from server: missing X-Task-Password." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:785 ++msgid "Retrace job started" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:798 ++#, c-format ++msgid "" ++"Task Id: %s\n" ++"Task Password: %s\n" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:856 ++msgid "Invalid response from server: missing X-Task-Status." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:868 ++#, c-format ++msgid "" ++"Task Status: %s\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 "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1160 ++msgid "" ++"Retrace failed. Try again later and if the problem persists report this " ++"issue please." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1207 ++msgid "log to syslog" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1209 ++msgid "allow insecure connection to retrace server" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1211 ++msgid "" ++"do not check whether retrace server is able to process given package before " ++"uploading the archive" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1214 ++msgid "retrace server URL" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1216 ++msgid "retrace server port" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1218 ++msgid "(debug) show received HTTP headers" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1219 ++msgid "For create and batch operations" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1221 ++msgid "read data from ABRT problem directory" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1223 ++msgid "read data from coredump" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1225 ++msgid "Delay for polling operations" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1227 ++msgid "(debug) do not delete temporary archive created from dump dir in " ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1229 ++msgid "For status, backtrace, and log operations" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1231 ++msgid "id of your task on server" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1233 ++msgid "password of your task on server" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1237 ++msgid "" ++"abrt-retrace-client [options]\n" ++"Operations: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1282 ++#: ../src/plugins/abrt-retrace-client.c:1288 ++msgid "Either problem directory or coredump is needed." ++msgstr "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1294 ++#: ../src/plugins/abrt-retrace-client.c:1302 ++#: ../src/plugins/abrt-retrace-client.c:1310 ++#: ../src/plugins/abrt-retrace-client.c:1318 ++msgid "Task id is needed." ++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 "" ++ ++#: ../src/plugins/abrt-retrace-client.c:1324 ++#, c-format ++msgid "Unknown operation: %s." ++msgstr "" ++ ++#: ../src/plugins/analyze_LocalGDB.xml.in.h:1 ++msgid "Local GNU Debugger" ++msgstr "" ++ ++#: ../src/plugins/analyze_LocalGDB.xml.in.h:2 ++msgid "Download debuginfo packages and generate backtrace locally using GDB" ++msgstr "" ++ ++#: ../src/plugins/analyze_LocalGDB.xml.in.h:3 ++msgid "" ++"Needs to downloads debuginfo packages, which might take significant time, " ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump" ++" to remote machines." ++msgstr "" ++ ++#: ../src/plugins/analyze_RetraceServer.xml.in.h:1 ++msgid "Send core dump to remote retrace server for analysis" ++msgstr "" ++ ++#: ../src/plugins/analyze_RetraceServer.xml.in.h:2 ++msgid "" ++"Uploads coredump to a server, which generates backtrace and returns it. " ++"Pros: no need for debuginfo downloads. Retrace server's database of " ++"debuginfos is more complete. Retrace server may generate better backtraces. " ++"Cons: coredump you upload contains all the data from the crashed program, " ++"including your private data, if any." ++msgstr "" ++ ++#: ../src/plugins/analyze_RetraceServer.xml.in.h:3 ++#: ../src/plugins/analyze_CCpp.xml.in.h:3 ++msgid "Retrace server 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 "" ++ ++#: ../src/plugins/analyze_RetraceServer.xml.in.h:5 ++#: ../src/plugins/analyze_CCpp.xml.in.h:5 ++msgid "Insecure" ++msgstr "" ++ ++#: ../src/plugins/analyze_RetraceServer.xml.in.h:6 ++#: ../src/plugins/analyze_CCpp.xml.in.h:6 ++msgid "Whether or not to use insecure connection" ++msgstr "" ++ ++#: ../src/plugins/analyze_RetraceServer.xml.in.h:7 ++#: ../src/plugins/analyze_CCpp.xml.in.h:7 ++msgid "" ++"Write \"insecure\" to allow insecure connection <a " ++"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" ++" >(warning)</a>" ++msgstr "" ++ ++#: ../src/plugins/collect_xsession_errors.xml.in.h:1 ++msgid "Collect .xsession-errors" ++msgstr "" ++ ++#: ../src/plugins/collect_xsession_errors.xml.in.h:2 ++msgid "Save relevant lines from ~/.xsession-errors file" ++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 "" ++ ++#: ../src/plugins/https-utils.c:62 ++msgid "An error occurred on the server side." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:65 ++#, c-format ++msgid "A server-side error occurred on '%s'" ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:74 ++msgid "An error occurred while connecting to the server" ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:77 ++#, c-format ++msgid "An error occurred while connecting to '%s'" ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:97 ++#, c-format ++msgid "Issuer certificate is invalid: '%s'." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:100 ++#, c-format ++msgid "Certificate is signed by an untrusted issuer: '%s'." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:103 ++#, c-format ++msgid "Certificate subject name '%s' does not match target host name '%s'." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:107 ++msgid "Remote certificate has expired." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:110 ++#, c-format ++msgid "Certificate issuer is not recognized: '%s'." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:113 ++#, c-format ++msgid "Bad certificate received. Subject '%s', issuer '%s'." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:149 ++#, c-format ++msgid "Failed to get slot 'PEM Token #0': %d." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:182 ++#, c-format ++msgid "Can't resolve host name '%s'. NSS error %d." ++msgstr "" ++ ++#. Host exists, but has neither IPv4 nor IPv6?? ++#: ../src/plugins/https-utils.c:203 ++#, c-format ++msgid "Can't resolve host name '%s'." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:210 ++msgid "Failed to set socket blocking mode." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:213 ++msgid "Failed to wrap TCP socket by SSL." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:215 ++msgid "Failed to enable client handshake to SSL socket." ++msgstr "" ++ ++#: ../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:233 ++#, c-format ++msgid "Can't connect to '%s'" ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:241 ++msgid "Failed to set certificate hook." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:247 ++msgid "Failed to set handshake callback." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:251 ++msgid "Failed to reset handshake." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:258 ++#, c-format ++msgid "Failed to complete SSL handshake: NSS error %d." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:267 ++msgid "Failed to close SSL socket." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:332 ++#, c-format ++msgid "Malformed HTTP response header: '%s'" ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:369 ++#, c-format ++msgid "Receiving of data failed: NSS error %d." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:398 ++msgid "Malformed chunked response." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:423 ++msgid "Failed to initialize NSS." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:429 ++msgid "Failed to initialize security module." ++msgstr "" ++ ++#: ../src/plugins/https-utils.c:444 ++msgid "Failed to shutdown NSS." ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:375 ++msgid "List of bug ids" ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:376 ++msgid "Specify a bodhi server url" ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:377 ++msgid "Specify a release" ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:382 ++msgid "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Search for updates on bodhi server" ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:434 ++msgid "Searching for updates" ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:440 ++msgid "No updates for this package found" ++msgstr "" ++ ++#. strbuf_free(q); ++#: ../src/plugins/bodhi.c:469 ++msgid "Local version of the package is newer than available updates" ++msgstr "" ++ ++#: ../src/plugins/bodhi.c:486 ++#, c-format ++msgid "" ++"An update exists which might fix your problem. You can install it by " ++"running: %s. Do you want to continue with reporting the bug?" ++msgstr "" ++ ++#: ../src/hooks/abrt-merge-pstoreoops.c:85 ++msgid "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"Scans files for split oops message. Can print and/or delete them." ++msgstr "" ++ ++#: ../src/hooks/abrt-merge-pstoreoops.c:97 ++msgid "Print found oopses" ++msgstr "" ++ ++#: ../src/hooks/abrt-merge-pstoreoops.c:98 ++msgid "Delete files with found oopses" ++msgstr "" ++ ++#: ../src/cli/abrt-cli-core.c:91 ++#, c-format ++msgid "'%s' identifies more than one problem directory" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:144 ++msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:149 ++msgid "Remove problem directory DIR" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:150 ++msgid "Analyze and report problem data in DIR" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:151 ++msgid "Print information about DIR" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:152 ++msgid "Print the count of the recent crashes" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 ++msgid "See 'abrt-cli COMMAND --help' for more information" ++msgstr "" ++ ++#: ../src/cli/list.c:179 ++msgid "& list [options] [DIR]..." ++msgstr "" ++ ++#: ../src/cli/list.c:188 ++msgid "List only not-reported problems" ++msgstr "" ++ ++#. deprecate -d option with --pretty=full ++#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++msgid "Show detailed report" ++msgstr "" ++ ++#: ../src/cli/list.c:191 ++msgid "List only the problems more recent than specified timestamp" ++msgstr "" ++ ++#: ../src/cli/list.c:192 ++msgid "List only the problems older than specified timestamp" ++msgstr "" ++ ++#: ../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:235 ++msgid "& info [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/list.c:244 ++msgid "Text larger than this will be shown abridged" ++msgstr "" ++ ++#: ../src/cli/list.c:264 ++#, c-format ++msgid "No such problem directory '%s'" ++msgstr "" ++ ++#: ../src/cli/status.c:70 ++msgid "& status [DIR]..." ++msgstr "" ++ ++#: ../src/cli/status.c:78 ++msgid "Print only the problem count without any message" ++msgstr "" ++ ++#: ../src/cli/status.c:79 ++msgid "Print only the problems more recent than specified timestamp" ++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 "" ++ ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ ++#: ../src/plugins/analyze_CCpp.xml.in.h:1 ++msgid "" ++"Send core dump to remote retrace server for analysis or perform local " ++"analysis if the remote analysis fails" ++msgstr "" ++ ++#: ../src/plugins/analyze_CCpp.xml.in.h:2 ++msgid "" ++"Uploads coredump to a server, which generates backtrace and returns it. If " ++"user doens't want to upload his coredump to anywhere the event performs " ++"local analysis. Local analysis is run event if remote analysis fails. Pros: " ++"no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump" ++" you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++ ++#: ../src/plugins/analyze_VMcore.xml.in.h:1 ++msgid "Analyze VM core" ++msgstr "" ++ ++#: ../src/plugins/analyze_VMcore.xml.in.h:2 ++msgid "" ++"Install kernel debuginfo packages, generate kernel log and oops message" ++msgstr "" ++ ++#: ../src/plugins/analyze_VMcore.xml.in.h:3 ++msgid "" ++"Needs to install kernel debuginfo packages, which might take significant " ++"time, and take up disk space." ++msgstr "" ++ ++#: ../src/plugins/collect_GConf.xml.in.h:1 ++msgid "Collect GConf configuration" ++msgstr "" ++ ++#: ../src/plugins/collect_GConf.xml.in.h:2 ++msgid "Save configuration from application's GConf directory" ++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 "" ++ ++#: ../src/plugins/collect_vimrc_system.xml.in.h:1 ++msgid "Collect system-wide vim configuration files" ++msgstr "" ++ ++#: ../src/plugins/collect_vimrc_system.xml.in.h:2 ++msgid "Save /etc/vimrc and /etc/gvimrc" ++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 "" ++ ++#: ../src/plugins/collect_vimrc_user.xml.in.h:1 ++msgid "Collect yours vim configuration files" ++msgstr "" ++ ++#: ../src/plugins/collect_vimrc_user.xml.in.h:2 ++msgid "Save .vimrc and .gvimrc from your home directory" ++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 "" ++ ++#: ../src/plugins/post_report.xml.in.h:1 ++msgid "Post report" ++msgstr "" ++ ++#: ../src/plugins/post_report.xml.in.h:2 ++msgid "Executed after the reporting is finished" ++msgstr "" ++ ++#: ../src/plugins/post_report.xml.in.h:3 ++msgid "Used for updating of the databases" ++msgstr "" +diff --git a/po/vi.po b/po/vi.po +index 8513b8c..276fb22 100644 +--- a/po/vi.po ++++ b/po/vi.po +@@ -3,14 +3,15 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: ++# dinhdangkhoi , 2014 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Vietnamese (http://www.transifex.com/projects/p/fedora/language/vi/)\n" ++"Language-Team: Vietnamese (http://www.transifex.com/projects/p/fedora-abrt/language/vi/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,11 +20,11 @@ msgstr "" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +-msgstr "" ++msgstr "Tự động Bug cho công cụ báo cáo" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "ABRT notification applet" +-msgstr "" ++msgstr "ABRT applet thông báo" + + #: ../src/applet/applet.c:130 + msgid "" +@@ -53,12 +54,12 @@ msgstr "" + + #: ../src/applet/applet.c:386 + msgid "A problem has been detected" +-msgstr "" ++msgstr "Một vấn đề đã được phát hiện" + + #: ../src/applet/applet.c:388 + #, c-format + msgid "A problem in the %s package has been detected" +-msgstr "" ++msgstr "Một vấn đề trong gói %s đã được phát hiện" + + #: ../src/applet/applet.c:398 + #, c-format +@@ -71,120 +72,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 +-msgid "Warning" ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++msgid "Warning" ++msgstr "Cảnh báo" ++ ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" +-msgstr "" ++msgstr "Ẩn" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" +-msgstr "" ++msgstr "Phát hiện vấn đề" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +280,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +319,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +386,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +473,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +560,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +593,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +625,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +670,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +832,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1054,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1634,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1454,7 +1677,7 @@ msgstr "" + #. deprecate -d option with --pretty=full + #: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" +-msgstr "" ++msgstr "Hiển thị báo cáo chi tiết" + + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +@@ -1501,6 +1724,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +@@ -1577,7 +1839,7 @@ msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +-msgstr "" ++msgstr "Công bố báo cáo" + + #: ../src/plugins/post_report.xml.in.h:2 + msgid "Executed after the reporting is finished" +diff --git a/po/wo.po b/po/wo.po +index 63d5148..b85963b 100644 +--- a/po/wo.po ++++ b/po/wo.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Wolof (http://www.transifex.com/projects/p/fedora/language/wo/)\n" ++"Language-Team: Wolof (http://www.transifex.com/projects/p/fedora-abrt/language/wo/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/xh.po b/po/xh.po +index 41012d2..a3bcad1 100644 +--- a/po/xh.po ++++ b/po/xh.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Xhosa (http://www.transifex.com/projects/p/fedora/language/xh/)\n" ++"Language-Team: Xhosa (http://www.transifex.com/projects/p/fedora-abrt/language/xh/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/zh_CN.po b/po/zh_CN.po +index 1d1d58a..845b7da 100644 +--- a/po/zh_CN.po ++++ b/po/zh_CN.po +@@ -9,19 +9,19 @@ + # Mike Manilone , 2011 + # Tiansworld , 2012-2013 + # Tommy He , 2011-2012 +-# turning , 2013 ++# Yangxin Guan , 2013 + # Wei Liu , 2014 +-# wwy353244835 , 2013 ++# wangwenye , 2013 + # yusuf , 2011 +-# zsun , 2013 ++# Zamir SUN , 2013 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora-abrt/language/zh_CN/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -82,120 +82,206 @@ msgstr "已提交 %s 和诊断数据" + msgid "Can't execute '%s'" + msgstr "无法执行 ”%s“" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "无法关闭通知:%s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "警告" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "用来将 ABRT 检测到的问题通知给用户的小程序" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Fedora Simplified Chinese Translation Group \nTommy He " + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "退出(_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "隐藏" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "关于(_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "检测到问题" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "永远忽略" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "打开" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "该问题已经被提交" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "发生一个已知问题" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "报告" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "发生一个错误" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "一个问题已被提交" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "发生一个新问题" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "无法显示通知:%s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "无法读取 gio 频道:'%s'" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "无法在 gio 频道中设定编码:%s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "无法为 gio 频道设定非阻断模式:%s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "无法获取 '%s' 的所有权" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "无法打开目录以写入 '%s'" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "打开会话管理器 :'%s', 失败,通知会在下次登录时重新出现" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "关闭(_C)" +@@ -204,7 +290,7 @@ msgstr "关闭(_C)" + msgid "_Defaults" + msgstr "默认(_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "配置错误报告" +@@ -243,7 +329,7 @@ msgstr "问题目录" + msgid "Configuration file" + msgstr "配置文件" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" +@@ -310,19 +396,19 @@ msgstr "没有留出问题空间" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "无法从问题目录 '%s' 中删除元素 '%s'" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "名称 '%s' 已丢失,请检查其它拥有该名称的服务是否未运行。\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "闲置 NUM 秒后退出" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "此程序必须以 root 权限运行。" + +@@ -397,8 +483,85 @@ msgstr "无效参数值" + msgid "Unknown option value: '%s'\n" + msgstr "未知选项值:'%s'\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "正在生成回溯文件" + +@@ -407,32 +570,32 @@ msgstr "正在生成回溯文件" + msgid "Can't connect to system DBus: %s" + msgstr "无法连接系统 DBus:%s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "无法变更 '%s' 的属主:%s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "删除问题目录失败:%s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "无法从 abrt-dbus 中获取问题数据:%s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "无法从 abrt-dbus 中获取问题列表:%s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "无法创建临时文件 '%s'" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -440,7 +603,7 @@ msgid "" + msgstr "无法写入 '%s'。问题 '%s' 将不会从已忽略问题 '%s' 中被移除" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "无法重命名 '%s' 为 '%s'。移除问题 '%s' 失败" +@@ -472,6 +635,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\n在有问题的目录 DIR 中计算并保存核心转储的 UUID" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -498,29 +680,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\n计算并保存 python 崩溃转储的 UUID 和 DUPHASH" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "用法: {0} [-v[v]] [--core=虚拟核心数]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "文件 {0} 不存在" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "正在从核心提取异常文字信息" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "无法执行 {0}:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "无法提取异常信息: '{0}'" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "成功提取异常文字信息" + +@@ -660,6 +842,38 @@ msgstr "删除该目录中的文件" + msgid "Preserve this directory" + msgstr "保留该目录" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "信号由用户区代码发送" +@@ -850,11 +1064,15 @@ msgstr "每 1 秒创建一个控流问题目录" + msgid "Print search string(s) to stdout and exit" + msgstr "输出搜索字符串至标准输出并退出" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "无法更新问题:发现超过一个异常" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "休眠 %d 秒" +@@ -1426,31 +1644,35 @@ msgstr "删除已找到的内核错误文件" + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' 标识出多于一个问题目录" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "列出所有未报告的问题 [根据 DIR]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "删除问题目录 DIR" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "分析并报告 DIR 中的问题数据" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "输出有关 DIR 的信息" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "显示最近的崩溃计数" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "详情请查看 'abrt-cli COMMAND --help'" + +@@ -1512,6 +1734,45 @@ msgstr "仅显示比指定时间更晚的问题。" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT 已检测到 '%u' 个问题。预了解详细信息请执行:abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/zh_HK.po b/po/zh_HK.po +index ea16ca6..6fcfd7b 100644 +--- a/po/zh_HK.po ++++ b/po/zh_HK.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/fedora/language/zh_HK/)\n" ++"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/fedora-abrt/language/zh_HK/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/zh_TW.po b/po/zh_TW.po +index df67296..940a598 100644 +--- a/po/zh_TW.po ++++ b/po/zh_TW.po +@@ -10,10 +10,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\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" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-abrt/language/zh_TW/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -74,120 +74,206 @@ msgstr "%s 和診斷資料已提交" + msgid "Can't execute '%s'" + msgstr "無法執行「%s」" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "無法關閉通知:%s" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "警告" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "會通知使用者有關於 ABRT 所發現的問題的通知區域面板程式" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "Eunju Kim , 2009.\nTerry Chuang , 2009, 2010.\nCheng-Chia Tseng , 2011, 2012." + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "退出(_Q)" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "隱藏" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "關於(_A)" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "偵測到的問題" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "永遠忽略" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "開啟" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "此問題已被回報過" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "遭遇已知問題" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "回報" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "遭遇到問題" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "已回報問題" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "遭遇新問題" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "無法顯示通知:%s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "無法從 gio 通道讀取:「%s」" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "無法設定 gio 通道上的編碼:%s" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "無法為 gio 通道啟動不阻擋模式:%s" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "無法掌握「%s」的擁有權" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "無法開啟目錄以寫入「%s」" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "無法開啟與作業階段管理員的連線:「%s」,通知可能會在下次登入時再次出現" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + 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/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "關閉(_C)" +@@ -196,7 +282,7 @@ msgstr "關閉(_C)" + msgid "_Defaults" + msgstr "預設值(_D)" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "問題回報組態" +@@ -235,7 +321,7 @@ msgstr "問題目錄" + msgid "Configuration file" + msgstr "組態檔" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [選項]" +@@ -302,19 +388,19 @@ msgstr "無剩餘問題空間" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "無法從問題目錄「%2$s」刪除「%1$s」元素" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "「%s」名稱已遺失,請確認其他擁有該名稱的服務並未執行中。\n" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "在停止使用 NUM 秒後離開" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "此程式必須以 root 身份執行。" + +@@ -389,8 +475,85 @@ msgstr "引數數量無效" + msgid "Unknown option value: '%s'\n" + msgstr "選項值不明:「%s」\n" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "正在產生追蹤資訊" + +@@ -399,32 +562,32 @@ msgstr "正在產生追蹤資訊" + msgid "Can't connect to system DBus: %s" + msgstr "無法連接至系統 DBus:%s" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "無法 chown 「%s」:%s" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "刪除問題目錄失敗:%s" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "無法從 abrt-dbus 取得問題資料:%s" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "無法從 abrt-dbus 取得問題清單:%s" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "無法建立暫存檔「%s」" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -432,7 +595,7 @@ msgid "" + msgstr "無法寫入「%s」。問題「%s」不會從忽略的問題「%s」中移除" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "無法將「%s」重新命名為「%s」。無法移除問題「%s」" +@@ -464,6 +627,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "& [-v] -d DIR\n\n在問題目錄 DIR 內計算並儲存的核心傾印其 UUID" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -490,29 +672,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "& [-v] -d DIR\n\n計算並儲存 python 當掉傾印的 UUID 與 DUPHASH" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "用法:{0} [-v[v]] [--core=VMCORE]" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "檔案 {0} 不存在" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "從核心抽出 oops 內文" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "無法處理 {0}:\n{1}" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "無法抽出 oops 訊息:「{0}」" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops 內文已成功抽出" + +@@ -652,6 +834,38 @@ msgstr "刪除此目錄內的檔案" + msgid "Preserve this directory" + msgstr "保留這個目錄" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "訊號由使用者空間代碼傳送" +@@ -842,11 +1056,15 @@ msgstr "節制問題目錄的建立速度為每秒 1 個" + msgid "Print search string(s) to stdout and exit" + msgstr "將搜尋字串列印在 stdout 上並離開" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "無法更新問題:找到超過一份 oops" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "正睡眠 %d 秒" +@@ -1418,31 +1636,35 @@ msgstr "刪除找到的 oops 其檔案" + msgid "'%s' identifies more than one problem directory" + msgstr "「%s」辨識出一個以上的問題目錄" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" +-msgstr "列出尚未回報的問題 [於 DIRs 內]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" ++msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "從問題目錄 DIR 移除檔案" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "在 DIR 內分析並回報問題資料" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "列印有關 DIR 的資訊" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "列印最近程式崩潰的數目" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "請見 'abrt-cli COMMAND --help' 以瞭解更多資訊" + +@@ -1504,6 +1726,45 @@ msgstr "僅列印比指定的時間戳記更近期的問題" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "ABRT 已偵測到 %u 項問題。若要取得更多資訊,請執行:abrt-cli list%s\n" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +diff --git a/po/zu.po b/po/zu.po +index 25fbc78..5ea2baa 100644 +--- a/po/zu.po ++++ b/po/zu.po +@@ -7,10 +7,10 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-02-26 09:33+0100\n" +-"PO-Revision-Date: 2014-02-11 11:03+0000\n" ++"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Zulu (http://www.transifex.com/projects/p/fedora/language/zu/)\n" ++"Language-Team: Zulu (http://www.transifex.com/projects/p/fedora-abrt/language/zu/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -71,120 +71,206 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + +-#: ../src/applet/applet.c:632 ../src/applet/applet.c:698 ++#: ../src/applet/applet.c:632 ../src/applet/applet.c:708 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:738 ../src/applet/applet.c:740 ++#: ../src/applet/applet.c:670 ++msgid "" ++"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"\n" ++"Do you want to continue?" ++msgstr "" ++ ++#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:788 ++#: ../src/applet/applet.c:798 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:804 ++#: ../src/applet/applet.c:814 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:812 ++#: ../src/applet/applet.c:822 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:824 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:816 ++#: ../src/applet/applet.c:826 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:884 ++#: ../src/applet/applet.c:894 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:934 ++#: ../src/applet/applet.c:944 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:945 ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:950 ++#: ../src/applet/applet.c:960 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:969 ../src/applet/applet.c:1004 ++#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:974 ++#: ../src/applet/applet.c:984 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1000 ++#: ../src/applet/applet.c:1010 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1008 ++#: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1028 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1052 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1136 ++#: ../src/applet/applet.c:1146 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1140 ++#: ../src/applet/applet.c:1150 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1172 ++#: ../src/applet/applet.c:1184 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1182 ++#: ../src/applet/applet.c:1193 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1465 ++#: ../src/applet/applet.c:1476 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1606 ++#: ../src/applet/applet.c:1617 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" + ++#: ../src/configuration-gui/abrt-config-widget.glade.h:1 ++msgid "Ask before stealing directory" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:2 ++msgid "Automatically send uReport" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:3 ++msgid "Shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:4 ++msgid "Silent shortened reporting" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:5 ++msgid "" ++"The coredump file is necessary for generating stack trace which is time and " ++"space consuming operation. ABRT provides a service which generates the stack" ++" trace from the coredump but you have to upload the coredump to this " ++"service. With this option disabled ABRT will upload the coredump without " ++"asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:6 ++msgid "" ++"ABRT stores problem data in directories. Whenever ABRT needs writable " ++"directory, the directory is moved from the system location to your home " ++"directory. With this option disabled ABRT will move the problem directory " ++"without asking." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:7 ++msgid "" ++"uReport is short and completely anonymous description of a problem. ABRT " ++"uses uReports for fast global duplicate detection. In default configuration" ++" uReport is sent at beginning of reporting process. With this option enabled" ++" uReports are sent automatically immediately after problem detection." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:8 ++msgid "" ++"With this option enabled reporting process started by click on Report button" ++" in problem notification bubble will be interrupted after uReport is sent. " ++"You can always use the default problem browser to make complete report." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:9 ++msgid "" ++" With this option enabled ABRT never shows notifications of reported " ++"problems. Takes effect only if Shortened reporting is enabled." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:10 ++msgid "Ask before uploading coredump" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:11 ++msgid "" ++" With this option enabled ABRT always create bug ticket with restricted " ++"access if possibly sensitive data are dected." ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:12 ++msgid "Request private ticket for sensitive information" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:13 ++msgid "Notify incomplete problems" ++msgstr "" ++ ++#: ../src/configuration-gui/abrt-config-widget.glade.h:14 ++msgid "" ++"Incomplete problems are detected while computer is shutting down or user is " ++"logging out. In order to provide valuable problem reports, ABRT will not " ++"allow you to submit these problems." ++msgstr "" ++ + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "" +@@ -193,7 +279,7 @@ msgstr "" + msgid "_Defaults" + msgstr "" + +-#: ../src/configuration-gui/system-config-abrt.c:110 ++#: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "" +@@ -232,7 +318,7 @@ msgstr "" + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:777 ++#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" +@@ -299,19 +385,19 @@ msgstr "" + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:759 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:763 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:786 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:804 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -386,8 +472,85 @@ msgstr "" + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-handle-upload.in:69 ++#, c-format ++msgid "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:105 ++#: ../src/daemon/abrt-handle-upload.in:108 ++msgid "Not a directory: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:111 ++msgid "Skipping: '{0}' (starts with slash)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:114 ++msgid "Skipping: '{0}' (starts with dot)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:117 ++msgid "Skipping: '{0}' (contains ..)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:120 ++msgid "Skipping: '{0}' (contains space)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:123 ++msgid "Skipping: '{0}' (contains tab)" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:128 ++msgid "Can't change directory to '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:139 ++msgid "Unknown file type: '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:144 ++msgid "Can't create working directory in '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:155 ++msgid "Can't move '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:160 ++msgid "Can't copy '{0}' to '{1}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:164 ++msgid "Verification error on '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:166 ++msgid "Unpacking '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:170 ++msgid "Can't create '{0}' directory" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:174 ++msgid "Can't unpack '{0}'" ++msgstr "" ++ ++#: ../src/daemon/abrt-handle-upload.in:198 ++msgid "'{0}' processed successfully" ++msgstr "" ++ + #. Let user know what's going on +-#: ../src/lib/hooklib.c:251 ++#: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "" + +@@ -396,32 +559,32 @@ msgstr "" + msgid "Can't connect to system DBus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:66 ++#: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:93 ++#: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:127 ++#: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:161 ++#: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + +-#: ../src/lib/ignored_problems.c:231 ++#: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "" + +-#: ../src/lib/ignored_problems.c:248 ++#: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " +@@ -429,7 +592,7 @@ msgid "" + msgstr "" + + #. Something nefarious happened +-#: ../src/lib/ignored_problems.c:262 ++#: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" +@@ -461,6 +624,25 @@ msgid "" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" + ++#: ../src/plugins/abrt-action-analyze-core.in:72 ++#, c-format ++msgid "Analyzing coredump '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:110 ++#, c-format ++msgid "Missing build id: %s" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:142 ++#, c-format ++msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-analyze-core.in:164 ++msgid "COREFILE is not specified" ++msgstr "" ++ + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" +@@ -487,29 +669,29 @@ msgid "" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:29 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:56 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:59 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:64 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "" + "Can't process {0}:\n" + "{1}" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:72 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "" + +-#: ../src/plugins/abrt-action-analyze-vmcore.in:75 ++#: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "" + +@@ -649,6 +831,38 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + ++#: ../src/plugins/abrt-action-ureport:39 ++#, c-format ++msgid "Unable to start '%s', error message was: '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:50 ++#, c-format ++msgid "Not a number in file '%s'" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:66 ++#, c-format ++msgid "Usage: %s [-v]" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:86 ++msgid "Unable to get current working directory as it was probably deleted" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:117 ++msgid "A bug was already filed about this problem:" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:127 ++msgid "uReport was already sent, not sending it again" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-ureport:145 ++#, c-format ++msgid "reporter-ureport failed with exit code %d" ++msgstr "" ++ + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" +@@ -839,11 +1053,15 @@ msgstr "" + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:379 ++#: ../src/plugins/abrt-dump-oops.c:311 ++msgid "Failed to compile regex" ++msgstr "" ++ ++#: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:398 ++#: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" +@@ -1415,31 +1633,35 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:142 ++#: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:146 +-msgid "List not yet reported problems [in DIRs]" ++#: ../src/cli/abrt-cli.c:148 ++msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:147 ++#: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:165 ++#: ../src/cli/abrt-cli.c:153 ++msgid "Process multiple problems" ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +@@ -1501,6 +1723,45 @@ msgstr "" + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + ++#: ../src/cli/report.c:28 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:38 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ ++#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "" ++ ++#: ../src/cli/process.c:64 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), report(e), info(i), skip(s):" ++msgstr "" ++ ++#: ../src/cli/process.c:77 ++#, c-format ++msgid "Reporting '%s'" ++msgstr "" ++ ++#. dummy must be free because the function ask allocate memory ++#: ../src/cli/process.c:133 ++msgid "For next problem press ENTER:" ++msgstr "" ++ ++#: ../src/cli/process.c:144 ++msgid "Without --since argument, iterates over all detected problems." ++msgstr "" ++ ++#: ../src/cli/process.c:150 ++msgid "Selects only problems detected after timestamp" ++msgstr "" ++ + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +-- +1.8.3.1 + diff --git a/SOURCES/0067-koops-don-t-analyze-MCEs-like-standard-oopses.patch b/SOURCES/0067-koops-don-t-analyze-MCEs-like-standard-oopses.patch new file mode 100644 index 0000000..0391477 --- /dev/null +++ b/SOURCES/0067-koops-don-t-analyze-MCEs-like-standard-oopses.patch @@ -0,0 +1,103 @@ +From ac3121ac9b752d62d82b329b8bae520147ebe6a6 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 26 Jun 2014 11:29:17 +0200 +Subject: [ABRT PATCH 67/68] koops: don't analyze MCEs like standard oopses + +MCEs are not kernel oopses as we know them, MCEs do not have stacktrace +and ABRT drops oopses without meaningful stack trace frames for hashing. +The required files are generated by abrt-action-check-oops-for-hw-errror +because that executable understands the format of MCE data. + - uuid (sha1 of backtrace file) + - duphash (sha1 of backtrace file) + - kernel (from dmesg) + +Related to #1076820 + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-action-check-oops-for-hw-error.in | 19 ++++++++++++++ + src/plugins/koops_event.conf | 29 +++++++++++----------- + 2 files changed, 33 insertions(+), 15 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 d74f89d..6bf37f5 100644 +--- a/src/plugins/abrt-action-check-oops-for-hw-error.in ++++ b/src/plugins/abrt-action-check-oops-for-hw-error.in +@@ -4,6 +4,8 @@ import sys + import os + import locale + import gettext ++import hashlib ++import re + + GETTEXT_PROGNAME = "abrt" + +@@ -83,6 +85,23 @@ if __name__ == "__main__": + )) + f.close() + ++ oops_hash = hashlib.sha1() ++ with open("backtrace", "r") as btfile: ++ for line in btfile: ++ oops_hash.update(line) ++ ++ with open_or_die("uuid", "w") as f: ++ f.write(oops_hash.hexdigest()) ++ ++ with open_or_die("duphash", "w") as f: ++ f.write(oops_hash.hexdigest()) ++ ++ res = tail_with_search("dmesg", "Linux version", 1) ++ if res: ++ kernel = re.sub(r"^.*Linux version ([^ ]+) .*$", r"\1", res[0]); ++ with open_or_die("kernel", "w") as krnlfile: ++ krnlfile.write(kernel) ++ + # vmcore MCEs already have good backtrace element, nothing more to do + if vmcore_mce: + sys.exit(0) +diff --git a/src/plugins/koops_event.conf b/src/plugins/koops_event.conf +index b1472ce..1604acf 100644 +--- a/src/plugins/koops_event.conf ++++ b/src/plugins/koops_event.conf +@@ -1,23 +1,22 @@ + # Analyze + 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 && ++ # 'dmesg' file is required by check-oops-for-hw-error ++ dmesg >>dmesg + # 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; } ++ { ++ abrt-action-check-oops-for-hw-error || true ++ } && ++ { ++ # run abrt-action-analyze-oops only if check-hw-error didn't create the ++ # required files ++ if test ! -f uuid -a ! -f duphash; then ++ abrt-action-analyze-oops || exit 1 ++ fi ++ } && ++ abrt-action-save-kernel-data ++ + + # 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/0068-ureport-attach-contact-email-if-configured.patch b/SOURCES/0068-ureport-attach-contact-email-if-configured.patch new file mode 100644 index 0000000..7f7483b --- /dev/null +++ b/SOURCES/0068-ureport-attach-contact-email-if-configured.patch @@ -0,0 +1,87 @@ +From 715a047ada1ca9f9420e194306c5b0fe01b5c9f1 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 9 Oct 2014 10:24:42 +0200 +Subject: [ABRT PATCH 68/68] ureport: attach contact email if configured + +Resolves #1150389 + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-action-ureport | 37 ++++++++++++++++++++++++++++++++++--- + 1 file changed, 34 insertions(+), 3 deletions(-) + +diff --git a/src/plugins/abrt-action-ureport b/src/plugins/abrt-action-ureport +index e38a92c..48bebef 100755 +--- a/src/plugins/abrt-action-ureport ++++ b/src/plugins/abrt-action-ureport +@@ -8,6 +8,7 @@ + import sys + import os + import getopt ++import augeas + + from report import dd_opendir, DD_FAIL_QUIETLY_ENOENT + from reportclient import set_verbosity, error_msg_and_die, error_msg, log1, log +@@ -32,12 +33,31 @@ def init_gettext(): + gettext.bindtextdomain(GETTEXT_PROGNAME, '/usr/share/locale') + gettext.textdomain(GETTEXT_PROGNAME) + +-def spawn_and_wait(prog): ++ ++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 spawn_and_wait(prog, args=None): ++ if args is None: ++ args = [prog] ++ else: ++ args.insert(0, prog) ++ + try: +- return os.spawnlp(os.P_WAIT, prog, prog) ++ return os.spawnvpe(os.P_WAIT, prog, args, os.environ) + except OSError as err: + error_msg(_("Unable to start '%s', error message was: '%s'"), +- prog, err) ++ " ".join(args), err) + return -1 + + def try_parse_number(dd, filename): +@@ -78,6 +98,7 @@ if __name__ == "__main__": + verbose += 1 + + set_verbosity(verbose) ++ os.environ["ABRT_VERBOSE"] = str(verbose) + + # getcwd might fail if cwd was deleted + try: +@@ -140,6 +161,16 @@ if __name__ == "__main__": + sys.exit(1) + dd.save_text("ureports_counter", str(ureports_counter + 1)) + dd.close() ++ ++ email = os.getenv("uReport_ContactEmail") ++ if not email: ++ augeas = get_augeas("libreport", "/etc/libreport/plugins/ureport.conf") ++ email = augeas.get("/files/etc/libreport/plugins/ureport.conf/ContactEmail") ++ ++ if email: ++ log1("Attaching ContactEmail: " + email) ++ spawn_and_wait("reporter-ureport", ["-A", "-E"]) ++ + sys.exit(exitcode) + else: + error_msg_and_die(_("reporter-ureport failed with exit code %d" % exitcode)) +-- +1.8.3.1 + diff --git a/SOURCES/0069-console-notifications-use-return-instead-of-exit.patch b/SOURCES/0069-console-notifications-use-return-instead-of-exit.patch new file mode 100644 index 0000000..f3f5fb6 --- /dev/null +++ b/SOURCES/0069-console-notifications-use-return-instead-of-exit.patch @@ -0,0 +1,48 @@ +From 8482a75bf58d5e68f4c63746cb27433954f1d54a Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 9 Oct 2014 16:28:12 +0200 +Subject: [ABRT PATCH 69/69] console-notifications: use return instead of exit + +Thanks Ray Strode [halfline] + +Related to rhbz#1150169 + +Signed-off-by: Jakub Filak +--- + src/cli/abrt-console-notification.sh | 10 +++++----- + 1 file changed, 5 insertions(+), 5 deletions(-) + +diff --git a/src/cli/abrt-console-notification.sh b/src/cli/abrt-console-notification.sh +index 849273c..38de7bb 100755 +--- a/src/cli/abrt-console-notification.sh ++++ b/src/cli/abrt-console-notification.sh +@@ -1,13 +1,13 @@ +-# If shell is not connect to a terminal, exit immediately, because this script ++# If shell is not connect to a terminal, return immediately, because this script + # should print out ABRT's status and it is senseless to continue without + # terminal. +-tty -s || exit 0 ++tty -s || return 0 + + # If $HOME is not set, a non human user is logging in to shell but this script +-# should provide information to human users, therefore exiting immediately ++# should provide information to human users, therefore returning immediately + # without showing the notification. + if [ -z "$HOME" ]; then +- exit 0 ++ return 0 + fi + + if [ -z "$ABRT_DEBUG_LOG" ]; then +@@ -19,7 +19,7 @@ SINCEFILE="$LPATHDIR/lastnotification" + + if [ ! -f "$LPATHDIR" ]; then + # It might happen that user doesn't have write access on his home. +- mkdir -p "$LPATHDIR" >"$ABRT_DEBUG_LOG" 2>&1 || exit 0 ++ mkdir -p "$LPATHDIR" >"$ABRT_DEBUG_LOG" 2>&1 || return 0 + fi + + TMPPATH=`mktemp --tmpdir="$LPATHDIR" lastnotification.XXXXXXXX 2> "$ABRT_DEBUG_LOG"` +-- +1.8.3.1 + diff --git a/SOURCES/0070-applet-don-t-show-duphash-instead-of-component.patch b/SOURCES/0070-applet-don-t-show-duphash-instead-of-component.patch new file mode 100644 index 0000000..3a5b666 --- /dev/null +++ b/SOURCES/0070-applet-don-t-show-duphash-instead-of-component.patch @@ -0,0 +1,28 @@ +From 567b1fdbaff68f9fc2f52853bda95dcc11cb5ff0 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 10 Oct 2014 11:18:51 +0200 +Subject: [ABRT PATCH 70/70] applet: don't show duphash instead of component + +Related to rhbz#1084031 + +Signed-off-by: Jakub Filak +--- + src/applet/applet.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/applet/applet.c b/src/applet/applet.c +index a40f877..bd95666 100644 +--- a/src/applet/applet.c ++++ b/src/applet/applet.c +@@ -1326,7 +1326,7 @@ static void Crash(DBusMessage* signal) + if (duphash != NULL && duphash[0] != '\0') + problem_data_add_text_noteditable(pi->problem_data, FILENAME_DUPHASH, duphash); + if (package_name != NULL && package_name[0] != '\0') +- problem_data_add_text_noteditable(pi->problem_data, FILENAME_COMPONENT, duphash); ++ problem_data_add_text_noteditable(pi->problem_data, FILENAME_COMPONENT, package_name); + pi->foreign = foreign_problem; + show_problem_notification(pi, flags); + } +-- +1.8.3.1 + diff --git a/SOURCES/0071-console-notifications-skip-non-interactive-shells.patch b/SOURCES/0071-console-notifications-skip-non-interactive-shells.patch new file mode 100644 index 0000000..a6a1e20 --- /dev/null +++ b/SOURCES/0071-console-notifications-skip-non-interactive-shells.patch @@ -0,0 +1,30 @@ +From bbd1e3c8765a8e28d4ade94eff60640c140b436a Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Sat, 11 Oct 2014 00:05:07 +0200 +Subject: [ABRT PATCH 71/71] console-notifications: skip non-interactive shells + +Related to rhbz#1141485 +Related to rhbz#1139001 + +Signed-off-by: Jakub Filak +--- + src/cli/abrt-console-notification.sh | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/src/cli/abrt-console-notification.sh b/src/cli/abrt-console-notification.sh +index 38de7bb..976dfc3 100755 +--- a/src/cli/abrt-console-notification.sh ++++ b/src/cli/abrt-console-notification.sh +@@ -3,6 +3,9 @@ + # terminal. + tty -s || return 0 + ++# Skip all for noninteractive shells for the same reason as above. ++[ -z "$PS1" ] && return 0 ++ + # If $HOME is not set, a non human user is logging in to shell but this script + # should provide information to human users, therefore returning immediately + # without showing the notification. +-- +1.8.3.1 + diff --git a/SOURCES/0072-applet-ensure-writable-dump-directory-before-reporti.patch b/SOURCES/0072-applet-ensure-writable-dump-directory-before-reporti.patch new file mode 100644 index 0000000..a9e16b4 --- /dev/null +++ b/SOURCES/0072-applet-ensure-writable-dump-directory-before-reporti.patch @@ -0,0 +1,132 @@ +From a169b05a10f242b19beab749458e86d7d7aa4f7b Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 21 Oct 2014 14:57:10 +0200 +Subject: [ABRT PATCH 72/72] applet: ensure writable dump directory before + reporting + +Related to rhbz#1084027 + +Signed-off-by: Jakub Filak + +Conflicts: + src/applet/applet.c +--- + src/applet/applet.c | 62 ++++++++++++++++++++++++++++++++++------------------- + 1 file changed, 40 insertions(+), 22 deletions(-) + +diff --git a/src/applet/applet.c b/src/applet/applet.c +index bd95666..8c339a4 100644 +--- a/src/applet/applet.c ++++ b/src/applet/applet.c +@@ -309,6 +309,7 @@ typedef struct problem_info { + bool incomplete; + bool reported; + bool was_announced; ++ bool is_writable; + } problem_info_t; + + static void push_to_deferred_queue(problem_info_t *pi) +@@ -326,6 +327,36 @@ static void problem_info_set_dir(problem_info_t *pi, const char *dir) + problem_data_add_text_noteditable(pi->problem_data, CD_DUMPDIR, dir); + } + ++static bool problem_info_ensure_writable(problem_info_t *pi) ++{ ++ if (pi->is_writable) ++ return true; ++ ++ /* chown the directory in any case, because kernel oopses are not foreign */ ++ /* but their dump directories are not writable without chowning them or */ ++ /* stealing them. The stealing is deprecated as it breaks the local */ ++ /* duplicate search and root cannot see them */ ++ const int res = chown_dir_over_dbus(problem_info_get_dir(pi)); ++ if (pi->foreign && res != 0) ++ { ++ error_msg(_("Can't take ownership of '%s'"), problem_info_get_dir(pi)); ++ return false; ++ } ++ pi->foreign = false; ++ ++ struct dump_dir *dd = open_directory_for_writing(problem_info_get_dir(pi), /* don't ask */ NULL); ++ if (!dd) ++ { ++ error_msg(_("Can't open directory for writing '%s'"), problem_info_get_dir(pi)); ++ return false; ++ } ++ ++ problem_info_set_dir(pi, dd->dd_dirname); ++ pi->is_writable = true; ++ dd_close(dd); ++ return true; ++} ++ + static problem_info_t *problem_info_new(const char *dir) + { + problem_info_t *pi = xzalloc(sizeof(*pi)); +@@ -601,8 +632,13 @@ static pid_t spawn_event_handler_child(const char *dump_dir_name, const char *ev + return child; + } + +-static void run_report_from_applet(const char *dirname) ++static void run_report_from_applet(problem_info_t *pi) + { ++ if (!problem_info_ensure_writable(pi)) ++ return; ++ ++ const char *dirname = problem_info_get_dir(pi); ++ + fflush(NULL); /* paranoia */ + pid_t pid = fork(); + if (pid < 0) +@@ -642,7 +678,7 @@ static void action_report(NotifyNotification *notification, gchar *action, gpoin + if (strcmp(A_REPORT_REPORT, action) == 0) + { + #endif//RHBZ_1067114_NO_UREPORT +- run_report_from_applet(problem_info_get_dir(pi)); ++ run_report_from_applet(pi); + problem_info_free(pi); + #ifndef RHBZ_1067114_NO_UREPORT + } +@@ -1113,7 +1149,7 @@ static gboolean handle_event_output_cb(GIOChannel *gio, GIOCondition condition, + if (pi->known || !(state->flags & REPORT_UNKNOWN_PROBLEM_IMMEDIATELY)) + notify_problem(pi); + else +- run_report_from_applet(problem_info_get_dir(pi)); ++ run_report_from_applet(pi); + } + else + { +@@ -1174,29 +1210,11 @@ static void export_event_configuration(const char *event_name) + + static void run_event_async(problem_info_t *pi, const char *event_name, int flags) + { +- /* chown the directory in any case, because kernel oopses are not foreign */ +- /* but their dump directories are not writable without chowning them or */ +- /* stealing them. The stealing is deprecated as it breaks the local */ +- /* duplicate search and root cannot see them */ +- const int res = chown_dir_over_dbus(problem_info_get_dir(pi)); +- if (pi->foreign && res != 0) ++ if (!problem_info_ensure_writable(pi)) + { +- error_msg(_("Can't take ownership of '%s'"), problem_info_get_dir(pi)); + problem_info_free(pi); + return; + } +- pi->foreign = false; +- +- struct dump_dir *dd = open_directory_for_writing(problem_info_get_dir(pi), /* don't ask */ NULL); +- if (!dd) +- { +- error_msg(_("Can't open directory for writing '%s'"), problem_info_get_dir(pi)); +- problem_info_free(pi); +- return; +- } +- +- problem_info_set_dir(pi, dd->dd_dirname); +- dd_close(dd); + + export_event_configuration(event_name); + +-- +1.8.3.1 + diff --git a/SOURCES/0073-a-a-g-machine-id-add-systemd-s-machine-id.patch b/SOURCES/0073-a-a-g-machine-id-add-systemd-s-machine-id.patch new file mode 100644 index 0000000..4580d27 --- /dev/null +++ b/SOURCES/0073-a-a-g-machine-id-add-systemd-s-machine-id.patch @@ -0,0 +1,209 @@ +From b7024111fcfe3662e96f5e6ad51d680fa3607b51 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 23 Oct 2014 16:37:14 +0200 +Subject: [ABRT PATCH 73/75] a-a-g-machine-id: add systemd's machine id + +The dmidecode based algorithm may not work on all architectures. + +man machine-id + +Related to rhbz#1139552 + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-action-generate-machine-id | 162 +++++++++++++++++++++++++--- + 1 file changed, 150 insertions(+), 12 deletions(-) + +diff --git a/src/plugins/abrt-action-generate-machine-id b/src/plugins/abrt-action-generate-machine-id +index 0aea787..6f43258 100644 +--- a/src/plugins/abrt-action-generate-machine-id ++++ b/src/plugins/abrt-action-generate-machine-id +@@ -1,14 +1,47 @@ + #!/usr/bin/python ++ ++## Copyright (C) 2014 ABRT team ++## Copyright (C) 2014 Red Hat, Inc. ++ ++## 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, Suite 500, Boston, MA 02110-1335 USA ++ ++"""This module provides algorithms for generating Machine IDs. ++""" ++ ++import sys + from argparse import ArgumentParser ++import logging + +-import dmidecode + import hashlib + ++def generate_machine_id_dmidecode(): ++ """Generate a machine_id based off dmidecode fields + +-# Generate a machine_id based off dmidecode fields +-def generate_machine_id(): +- dmixml = dmidecode.dmidecodeXML() ++ The function generates the same result as sosreport-uploader ++ ++ Returns a machine ID as string or throws RuntimeException ++ ++ """ + ++ try: ++ import dmidecode ++ except ImportError as ex: ++ raise RuntimeError("Could not import dmidecode module: {0}" ++ .format(str(ex))) ++ ++ dmixml = dmidecode.dmidecodeXML() + # Fetch all DMI data into a libxml2.xmlDoc object + dmixml.SetResultType(dmidecode.DMIXML_DOC) + xmldoc = dmixml.QuerySection('all') +@@ -38,20 +71,125 @@ def generate_machine_id(): + return machine_id.hexdigest() + + +-if __name__ == "__main__": +- CMDARGS = ArgumentParser(description = "Generate a machine_id based off dmidecode fields") +- CMDARGS.add_argument('-o', '--output', type=str, help='Output file') ++def generate_machine_id_systemd(): ++ """Generate a machine_id equals to a one generated by systemd ++ ++ This function returns contents of /etc/machine-id ++ ++ Returns a machine ID as string or throws RuntimeException. ++ ++ """ ++ ++ try: ++ with open('/etc/machine-id', 'r') as midf: ++ return "".join((l.strip() for l in midf)) ++ except IOError as ex: ++ raise RuntimeError("Could not use systemd's machine-id: {0}" ++ .format(str(ex))) ++ ++ ++GENERATORS = { 'sosreport_uploader-dmidecode' : generate_machine_id_dmidecode, ++ 'systemd' : generate_machine_id_systemd } ++ ++ ++def generate_machine_id(generators): ++ """Generates all requested machine id with all required generators ++ ++ Keyword arguments: ++ generators -- a list of generator names ++ ++ Returns a dictionary where keys are generators and associated values are ++ products of those generators. ++ ++ """ ++ ++ ids = {} ++ workers = GENERATORS ++ for sd in generators: ++ try: ++ ids[sd] = workers[sd]() ++ except RuntimeError as ex: ++ logging.error("Machine-ID generator '{0}' failed: {1}" ++ .format(sd, ex.message)) ++ ++ return ids ++ ++ ++def print_result(ids, outfile, prefixed): ++ """Writes a dictionary of machine ids to a file ++ ++ Each dictionary entry is written on a single line. The function does not ++ print trailing new-line if the dictionary contains only one item as it is ++ common format of one-liners placed in a dump directory. ++ ++ Keyword arguments: ++ ids -- a dictionary [generator name: machine ids] ++ outfile -- output file ++ prefixed -- use 'generator name=' prefix or not ++ """ ++ ++ fmt = '{0}={1}' if prefixed else '{1}' ++ ++ if len(ids) > 1: ++ fmt += '\n' ++ ++ for sd, mid in ids.iteritems(): ++ outfile.write(fmt.format(sd,mid)) ++ ++ ++def print_generators(outfile=None): ++ """Prints requested generators ++ ++ Keyword arguments: ++ outfile -- output file (default: sys.stdout) ++ ++ """ ++ if outfile is None: ++ outfile = sys.stdout ++ ++ for sd in GENERATORS.iterkeys(): ++ outfile.write("{0}\n".format(sd)) ++ ++ ++if __name__ == '__main__': ++ CMDARGS = ArgumentParser(description = "Generate a machine_id") ++ CMDARGS.add_argument('-o', '--output', type=str, ++ help="Output file") ++ CMDARGS.add_argument('-g', '--generators', nargs='+', type=str, ++ help="Use given generators only") ++ CMDARGS.add_argument('-l', '--list-generators', action='store_true', ++ default=False, help="Print out a list of usable generators") ++ CMDARGS.add_argument('-n', '--noprefix', action='store_true', ++ default=False, help="Do not use generator name as prefix for IDs") + + OPTIONS = CMDARGS.parse_args() + ARGS = vars(OPTIONS) + +- machineid = generate_machine_id() ++ logging.basicConfig(format='%(message)s') ++ ++ if ARGS['list_generators']: ++ print_generators() ++ sys.exit(0) ++ ++ requested_generators = None ++ if ARGS['generators']: ++ requested_generators = ARGS['generators'] ++ else: ++ requested_generators = GENERATORS.keys() ++ ++ machineids = generate_machine_id(requested_generators) + + if ARGS['output']: + try: +- with open(ARGS['output'], 'w') as outfile: +- outfile.write(machineid) ++ with open(ARGS['output'], 'w') as fout: ++ print_result(machineids, fout, not ARGS['noprefix']) + except IOError as ex: +- print ex ++ logging.error("Could not open output file: {0}".format(str(ex))) ++ sys.exit(1) + else: +- print machineid ++ print_result(machineids, sys.stdout, not ARGS['noprefix']) ++ # print_results() omits new-line for one-liners ++ if len(machineids) == 1: ++ sys.stdout.write('\n') ++ ++ sys.exit(len(requested_generators) - len(machineids.keys())) +-- +1.8.3.1 + diff --git a/SOURCES/0074-a-a-g-machine-id-suppress-its-failures-in-abrt_event.patch b/SOURCES/0074-a-a-g-machine-id-suppress-its-failures-in-abrt_event.patch new file mode 100644 index 0000000..427fbd8 --- /dev/null +++ b/SOURCES/0074-a-a-g-machine-id-suppress-its-failures-in-abrt_event.patch @@ -0,0 +1,39 @@ +From 4bfbbd5840a21257cf319936b3c59b7aaa1519ad Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 24 Oct 2014 15:50:02 +0200 +Subject: [ABRT PATCH 74/75] a-a-g-machine-id: suppress its failures in + abrt_event.conf + +If an event script exits with a non-zero code, abrtd deletes entire dump +directory. + +Failures of a-a-g-machine-id must not lead to the deletion of a dump +directory. + +It is also expected that dmidecode-less systems will print an error +message related to the fact that dmidecode doesn't work, hence +forwarding of STDOUT and STDERR to 'event_log' file. + +Related to rhbz#1139552 + +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 deda7c7..54e1b3f 100644 +--- a/src/daemon/abrt_event.conf ++++ b/src/daemon/abrt_event.conf +@@ -94,7 +94,7 @@ EVENT=post-create + + # Example: if you want to include *machineid* in dump directories: + EVENT=post-create +- /usr/libexec/abrt-action-generate-machine-id -o $DUMP_DIR/machineid ++ /usr/libexec/abrt-action-generate-machine-id -o $DUMP_DIR/machineid >>event_log 2>&1 || : + + # Example: if you want to upload data immediately at the moment of a crash: + #EVENT=post-create +-- +1.8.3.1 + diff --git a/SOURCES/0075-Translation-updates.patch b/SOURCES/0075-Translation-updates.patch new file mode 100644 index 0000000..61b74ef --- /dev/null +++ b/SOURCES/0075-Translation-updates.patch @@ -0,0 +1,12890 @@ +From def7763ff1ce79e8b4e1f9021ae4b380c8b0ea29 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 31 Oct 2014 09:29:48 +0100 +Subject: [ABRT PATCH 75/75] Translation updates + +Signed-off-by: Jakub Filak +--- + po/ach.po | 18 ++++---- + po/af.po | 18 ++++---- + po/aln.po | 18 ++++---- + po/am.po | 18 ++++---- + po/ar.po | 18 ++++---- + po/as.po | 98 ++++++++++++++++++++--------------------- + po/ast.po | 18 ++++---- + po/az.po | 18 ++++---- + po/bal.po | 18 ++++---- + po/be.po | 18 ++++---- + po/bg.po | 18 ++++---- + po/bn.po | 18 ++++---- + po/bn_IN.po | 132 +++++++++++++++++++++++++++---------------------------- + po/bo.po | 18 ++++---- + po/br.po | 18 ++++---- + po/brx.po | 18 ++++---- + po/bs.po | 18 ++++---- + po/ca.po | 18 ++++---- + po/cs.po | 18 ++++---- + po/cy.po | 18 ++++---- + po/da.po | 18 ++++---- + po/de.po | 134 ++++++++++++++++++++++++++++---------------------------- + po/de_CH.po | 18 ++++---- + po/dz.po | 18 ++++---- + po/el.po | 18 ++++---- + po/en_GB.po | 18 ++++---- + po/en_US.po | 18 ++++---- + po/eo.po | 18 ++++---- + po/es.po | 99 ++++++++++++++++++++--------------------- + po/et.po | 18 ++++---- + po/eu.po | 18 ++++---- + po/fa.po | 18 ++++---- + po/fi.po | 18 ++++---- + po/fr.po | 100 +++++++++++++++++++++--------------------- + po/ga.po | 18 ++++---- + po/gl.po | 18 ++++---- + po/gu.po | 113 +++++++++++++++++++++++------------------------ + po/he.po | 18 ++++---- + po/hi.po | 136 +++++++++++++++++++++++++++++---------------------------- + po/hr.po | 18 ++++---- + po/hu.po | 18 ++++---- + po/hy.po | 18 ++++---- + po/ia.po | 18 ++++---- + po/id.po | 18 ++++---- + po/ilo.po | 18 ++++---- + po/is.po | 18 ++++---- + po/it.po | 132 +++++++++++++++++++++++++++---------------------------- + po/ja.po | 133 +++++++++++++++++++++++++++---------------------------- + po/ka.po | 18 ++++---- + po/kk.po | 18 ++++---- + po/km.po | 18 ++++---- + po/kn.po | 135 ++++++++++++++++++++++++++++---------------------------- + po/ko.po | 132 +++++++++++++++++++++++++++---------------------------- + po/ks.po | 18 ++++---- + po/ku.po | 18 ++++---- + po/ky.po | 18 ++++---- + po/la.po | 18 ++++---- + po/lo.po | 18 ++++---- + po/lt.po | 18 ++++---- + po/lv.po | 18 ++++---- + po/mai.po | 18 ++++---- + po/mg.po | 18 ++++---- + po/mk.po | 18 ++++---- + po/ml.po | 132 +++++++++++++++++++++++++++---------------------------- + po/mn.po | 18 ++++---- + po/mr.po | 98 ++++++++++++++++++++--------------------- + po/ms.po | 18 ++++---- + po/my.po | 18 ++++---- + po/nb.po | 18 ++++---- + po/nds.po | 18 ++++---- + po/ne.po | 18 ++++---- + po/nl.po | 98 ++++++++++++++++++++--------------------- + po/nn.po | 18 ++++---- + po/no.po | 18 ++++---- + po/nso.po | 18 ++++---- + po/or.po | 132 +++++++++++++++++++++++++++---------------------------- + po/pa.po | 18 ++++---- + po/pl.po | 38 ++++++++-------- + po/pt.po | 18 ++++---- + po/pt_BR.po | 101 +++++++++++++++++++++--------------------- + po/ro.po | 18 ++++---- + po/ru.po | 136 ++++++++++++++++++++++++++++----------------------------- + po/ru_RU.po | 18 ++++---- + po/si.po | 18 ++++---- + po/sk.po | 18 ++++---- + po/sl.po | 18 ++++---- + po/sq.po | 18 ++++---- + po/sr.po | 18 ++++---- + po/sr@latin.po | 18 ++++---- + po/sv.po | 18 ++++---- + po/ta.po | 98 ++++++++++++++++++++--------------------- + po/te.po | 133 +++++++++++++++++++++++++++---------------------------- + po/tg.po | 18 ++++---- + po/th.po | 18 ++++---- + po/tl.po | 18 ++++---- + po/tr.po | 18 ++++---- + po/uk.po | 38 ++++++++-------- + po/ur.po | 18 ++++---- + po/uz.po | 18 ++++---- + po/vi.po | 18 ++++---- + po/wo.po | 18 ++++---- + po/xh.po | 18 ++++---- + po/zh_CN.po | 134 ++++++++++++++++++++++++++++---------------------------- + po/zh_HK.po | 18 ++++---- + po/zh_TW.po | 134 ++++++++++++++++++++++++++++---------------------------- + po/zu.po | 18 ++++---- + 106 files changed, 2060 insertions(+), 2050 deletions(-) + +diff --git a/po/ach.po b/po/ach.po +index 22d18df..06df762 100644 +--- a/po/ach.po ++++ b/po/ach.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Acoli (http://www.transifex.com/projects/p/fedora-abrt/language/ach/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/af.po b/po/af.po +index 1fa4436..7c851dd 100644 +--- a/po/af.po ++++ b/po/af.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Afrikaans (http://www.transifex.com/projects/p/fedora-abrt/language/af/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/aln.po b/po/aln.po +index bb1ad2a..a43707f 100644 +--- a/po/aln.po ++++ b/po/aln.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Albanian Gheg (http://www.transifex.com/projects/p/fedora-abrt/language/aln/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/am.po b/po/am.po +index 20b0381..81af44a 100644 +--- a/po/am.po ++++ b/po/am.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Amharic (http://www.transifex.com/projects/p/fedora-abrt/language/am/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/ar.po b/po/ar.po +index 5233b78..5d0d98c 100644 +--- a/po/ar.po ++++ b/po/ar.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Arabic (http://www.transifex.com/projects/p/fedora-abrt/language/ar/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/as.po b/po/as.po +index 540a663..c4dabc1 100644 +--- a/po/as.po ++++ b/po/as.po +@@ -11,9 +11,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-08 11:49+0000\n" ++"Last-Translator: Nilamdyuti Goswami \n" + "Language-Team: Assamese (http://www.transifex.com/projects/p/fedora-abrt/language/as/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -85,7 +85,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "আপুনি এটা বিশেষ সমস্যাৰ অধিসূচনাসমূহ মৌন কৰিব লৈছে। আপুনি এই সমস্যাৰ বাবে এটা অধিসূচনা চিহ্ন আৰু কেতিয়াও দেখি নাপাব, যি কি নহওক, ABRT এ ইয়াক চিনাক্ত কৰিব আৰু আপুনি ইয়াক ABRT GUI ৰ পৰা সংবাদন কৰিব পাৰিব।\n\nআপুনি আগবাঢ়িব খোজে নে?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -258,7 +258,7 @@ msgstr "কেন্দ্ৰডাম্প আপল'ড কৰাৰ আগ + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "এই বিকল্প সামৰ্থবান থাকিলে ABRT এ সদায় নিষিদ্ধ অভিগমৰ সৈতে বাগ টিকেট সৃষ্টি কৰে যদি সম্ভৱত সংবেদনশীল তথ্য চিনাক্ত কৰা হয়।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -486,72 +486,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n UPLOAD_DIR - Directory where uploaded archives are stored\n FILENAME - Uploaded archive file name\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "এটা ডাইৰেকটৰি নহয়: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "বাদ দিয়া হৈছে: '{0}' (স্লেশৰ সৈতে আৰম্ভ হয়)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "বাদ দিয়া হৈছে: '{0}' (ডটৰ সৈতে আৰম্ভ হয়)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "বাদ দিয়া হৈছে: '{0}' (অন্তৰ্ভুক্ত কৰে ..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "বাদ দিয়া হৈছে: '{0}' (স্পেইচ অন্তৰ্ভুক্ত কৰে)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "বাদ দিয়া হৈছে: '{0}' (টেব অন্তৰ্ভুক্ত কৰে)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "ডাইৰেকটৰিক '{0}' লৈ পৰিবৰ্তন কৰিব নোৱাৰি" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "অজ্ঞাত ফাইল ধৰণ: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "'{0}' ত কাৰ্য্যকৰী ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' ক '{1}' লৈ স্থানান্তৰ কৰিব নোৱাৰি" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' ক '{1}' লৈ কপি কৰিব নোৱাৰি" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "'{0}' ত সত্যাপন ত্ৰুটি" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "'{0}' আনপেক কৰা হৈছে" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "'{0}' ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "'{0}' ক আনপেক কৰিব নোৱাৰি" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' ক সফলভাৱে প্ৰক্ৰিয়াকৰণ কৰা হল" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -699,7 +699,7 @@ msgstr "oops বাৰ্তা নিষ্কাষণ কৰিব নোৱ + msgid "Oops text extracted successfully" + msgstr "Oops লিখনী সফলভাৱে নিষ্কাষণ কৰা হল" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -835,37 +835,37 @@ msgstr "এই ডাইৰেকটৰিৰ ভিতৰত থকা ফা + msgid "Preserve this directory" + msgstr "এই ডাইৰেকটৰি সংৰক্ষণ কৰক" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "'%s' আৰম্ভ কৰিবলে অক্ষম, ত্ৰুটি বাৰ্তা আছিল: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "ফাইল '%s' ত এটা সংখ্যা নহয়" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Usage: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "বৰ্তমান কাৰ্য্য ডাইৰেকটৰি সম্ভবত মচি পেলোৱাৰ বাবে প্ৰাপ্ত কৰিবলে অক্ষম " + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "এই সমস্যাৰ বিষয়ে এটা বাগ ইতিমধ্যে ফাইল কৰা হৈছিল:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport ইতিমধ্যে পঠোৱা হৈছিল, ইয়াক পুনৰ পঠোৱা হোৱা নাই" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport প্ৰস্থান ক'ড %d ৰ সৈতে ব্যৰ্থ হল" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1059,7 +1059,7 @@ msgstr "stdout লে সন্ধান স্ট্ৰিং(সমূহ) প + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "regex কমপাইল কৰিবলে ব্যৰ্থ" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1643,7 +1643,7 @@ msgstr "ব্যৱহাৰ: abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "সমস্যাসমূহ দেখুৱাওক [in DIRs]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1663,7 +1663,7 @@ msgstr "শেহতীয়া ক্ৰেশসমূহৰ গণনা প্ + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "একাধিক সমস্যাসমূহ প্ৰক্ৰিয়া কৰক" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1729,42 +1729,42 @@ msgstr "ABRT এ %u সমস্যা(সমূহ) চিনাক্ত ক + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "আৰু [options] DIR সংবাদন কৰক..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "সংবাদন কৰাৰ পিছত PROBLEM_DIR আতৰাওক" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "'%s' মচি পেলোৱা হৈছে" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "কাৰ্য্যসমূহ: remove(rm), info(i), skip(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "কাৰ্য্যসমূহ: remove(rm), report(e), info(i), skip(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "'%s' সংবাদন কৰা" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "পৰৱৰ্তী সমস্যাৰ বাবে ENTER টিপক:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "--since তৰ্ক নাথাকিলে, সকলো চিনাক্ত কৰা সমস্যাবোৰ পুনৰাবৃত্তি হয়।" + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "কেৱল টাইমস্টাম্পৰ পিছত চিনাক্ত কৰা সমস্যাবোৰ নিৰ্বাচন কৰে" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/ast.po b/po/ast.po +index c3fbe03..41d24bc 100644 +--- a/po/ast.po ++++ b/po/ast.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Asturian (http://www.transifex.com/projects/p/fedora-abrt/language/ast/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/az.po b/po/az.po +index d5faf44..414fa12 100644 +--- a/po/az.po ++++ b/po/az.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/fedora-abrt/language/az/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/bal.po b/po/bal.po +index 9a15c32..ec724f3 100644 +--- a/po/bal.po ++++ b/po/bal.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Balochi (http://www.transifex.com/projects/p/fedora-abrt/language/bal/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/be.po b/po/be.po +index ab27e7c..8255262 100644 +--- a/po/be.po ++++ b/po/be.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Belarusian (http://www.transifex.com/projects/p/fedora-abrt/language/be/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/bg.po b/po/bg.po +index 7b26554..cdfbd0f 100644 +--- a/po/bg.po ++++ b/po/bg.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Bulgarian (http://www.transifex.com/projects/p/fedora-abrt/language/bg/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "Изтрий файловете в тази директория" + msgid "Preserve this directory" + msgstr "Запази тази директория" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/bn.po b/po/bn.po +index 4b55cf3..0f3d8f6 100644 +--- a/po/bn.po ++++ b/po/bn.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Bengali (http://www.transifex.com/projects/p/fedora-abrt/language/bn/)\n" +@@ -701,7 +701,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -837,34 +837,34 @@ msgstr "এই ডিরেক্টরির মধ্যে উপস্থি + msgid "Preserve this directory" + msgstr "এই ডিরেক্টরিটি সংরক্ষণ করা হবে" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/bn_IN.po b/po/bn_IN.po +index 1e8f16b..2eba3f3 100644 +--- a/po/bn_IN.po ++++ b/po/bn_IN.po +@@ -12,9 +12,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-17 10:24+0000\n" ++"Last-Translator: Saibal Ray\n" + "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/fedora-abrt/language/bn_IN/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -86,7 +86,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "অাপনি একটি নির্দিষ্ট সমস্যার বিজ্ঞপ্তি নীরব করতে চলেছেন। অাপনি অার এই সমস্যার জন্য বিজ্ঞপ্তি দেখতে পাবেন না, তবে, ABRT এটি সনাক্ত করবে এবং অাপনি তা ABRT GUI থেকে রিপোর্ট করতে পারবেন।\n\nঅাপনি কি জারি রাখতে চান?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -199,19 +199,19 @@ msgstr "& [-v] [DIR]...\n\nABRT দ্বারা নতুন সমস্য + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "ডিরেক্টরি নেওয়ার পূর্বে জিঞ্জাসা করুন" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "uReport স্বয়ংক্রিয়ভাবে পাঠান" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "সংক্ষিপ্ত রিপোর্টিং" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "নীরব সংক্ষিপ্ত রিপোর্টিং" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -220,7 +220,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "স্ট্যাক ট্রেস প্রস্তুত করতে কোর-ডাম্প ফাইল প্রয়োজনীয় যা সময় এবং স্থান সাপেক্ষ এক কাজ। ABRT একটি পরিষেবা প্রদান করে, যা কোর-ডাম্প থেকে স্ট্যাক ট্রেস প্রস্তুত করে কিন্তু অাপনাকে পরিষেবায় কোর-ডাম্প অাপলোড করতে হবে। এই বিকল্প নিষ্ক্রিয় অবস্থায়, ABRT জিঞ্জাসা না করেই কোর-ডাম্প অাপলোড করবে।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -228,7 +228,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "ABRT সমস্যা ডেটা ডিরেক্টরিগুলিতে রাখে। যখনই ABRT-এর লিখনযোগ্য ডিরেক্টরির প্রয়োজন হয় তখনই, ডিরেক্টরি সিস্টেম অবস্থান থেকে অাপনার হোম ডিরেক্টরিতে সরানো হয়। এই বিকল্প নিষ্ক্রিয় থাকা অবস্থায়, ABRT জিঞ্জাসা না করেই সরাসরি সমস্যা ডিরেক্টরি সরাবে।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -236,45 +236,45 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "uReport হল একটি সমস্যার সংক্ষিপ্ত এবং সম্পূর্ণ বেনামী বর্ণনা। ABRT দ্রুত সার্বিক সদৃশ সনাক্তকরণের জন্য uReports ব্যবহার করে। ডিফল্ট কনফিগারেশনে, রিপোর্টিং প্রক্রিয়ার শুরুতে uReport পাঠানো হয়। এই বিকল্প সক্রিয় অবস্থায়, সমস্যার সনাক্ত হওয়ার অবিলম্ব পরেই uReports স্বয়ংক্রিয়ভাবে পাঠানো হয়।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "এই বিকল্প সক্রিয় অবস্থায়, সমস্যা বিজ্ঞপ্তি বাবলে রিপোর্ট বোতামে ক্লিক করে শুরু করা রিপোর্টিং প্রক্রিয়া uReport পাঠানোর পরে বাধাপ্রাপ্ত হবে। অাপনি ডিফল্ট সমস্যা ব্রাউজার ব্যবহার করে সর্বদাই সম্পূর্ণ রিপোর্ট বানাতে পারবেন।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr " এই বিকল্প সক্রিয় অবস্থায়, ABRT কখনও রিপোর্ট করা সমস্যাগুলির বিজ্ঞপ্তিগুলি দেখাবে না। সংক্ষিপ্ত রিপোর্টিং সক্রিয় থাকলে তবেই কার্যকর হয়।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "কোর-ডাম্প অাপলোড করার অাগে জিজ্ঞাসা করুন" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "এই বিকল্প সক্রিয় অবস্থায়, সম্ভাব্য ভাবে সংবেদনশীল ডেটা সনাক্ত হলে, ABRT সর্বদা সীমাবদ্ধ অ্যাক্সেস সমেত বাগ টিকিট তৈরি করে।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "সংবেদনশীল তথ্যের জন্য ব্যক্তিগত টিকিটের অনুরোধ জানান" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "অসম্পূর্ণ সমস্যাগুলি জানান" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "কম্পিউটার শাট ডাউন বা ব্যবহারকারী লগ অাউটের সময়ে, অসম্পূর্ণ সমস্যা সনাক্ত করা হয়েছে। মূল্যবান সমস্যার রিপোর্ট প্রদান করতে, ABRT অাপনাকে এই সমস্যাগুলি জমা দেওয়ার অনুমতি দেবে না।" + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -487,72 +487,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "ব্যবহার: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n UPLOAD_DIR - Directory where uploaded archives are stored\n FILENAME - Uploaded archive file name\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "একটি ডিরেক্টরি নয়: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (স্ল্যাশ দিয়ে শুরু)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (ডট দিয়ে শুরু)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (বিশিষ্ট ..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (স্পেস রয়েছে)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (ট্যাব রয়েছে)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "ডিরেক্টরি '{0}'-এ পরিবর্তন করা সম্ভব নয়" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "অজানা ফাইল ধরন: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "'{0}' -এ ওয়ার্কিং ডিরেক্টরি তৈরি করা সম্ভব নয়" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}', '{1}' -এ সরানো সম্ভব নয়" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}', '{1}'-এ অনুলিপি করা সম্ভব নয়" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "'{0}'-এ যাচাইকরণ ত্রুটি" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "'{0}' অান-প্যাক করা হচ্ছে" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "'{0}' ডিরেক্টরি তৈরি করা সম্ভব নয়" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "'{0}' অান-প্যাক করা সম্ভব নয়" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' সফল ভাবে প্রক্রিয়া করা হয়েছে" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -632,21 +632,21 @@ msgstr "& [-v] -d DIR\n\nসমস্যাযুক্ত ডিরেক্ট + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "'%s' কোর-ডাম্প বিশ্লেষণ করা হচ্ছে" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "বিল্ড অাইডি অনুপস্থিত: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "ব্যবহার: %s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREFILE নির্দিষ্ট করা নেই" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -700,7 +700,7 @@ msgstr "oops বার্তা বের করে অানা যায় + msgid "Oops text extracted successfully" + msgstr "Oops পাঠ্য সফলভাবে বের করে অানা হয়েছে" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -836,37 +836,37 @@ msgstr "এই ডিরেক্টরির মধ্যে উপস্থি + msgid "Preserve this directory" + msgstr "এই ডিরেক্টরিটি সংরক্ষণ করা হবে" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "'%s' শুরু করা যায়নি, ত্রুটি বার্তা হল: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "'%s' ফাইলে একটি সংখ্যা নয়" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "ব্যবহার: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "বর্তমান ওয়ার্কিং ডিরেক্টরি সম্ভবত সনাক্ত হওয়ার কারণে এটি পাওয়া যায়নি" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "এই সমস্যাটির বিষয়ে ইতিমধ্যেই একটি বাগ ফাইল করা হয়েছে:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport ইতিমধ্যেই পাঠানো হয়েছে, তাই অাবার পাঠানো হচ্ছে না" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport ব্যর্থ হয়েছে, প্রস্থান কোড %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1060,7 +1060,7 @@ msgstr "অনুসন্ধানের পংক্তিগুলি stdout- + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "regex একত্রিত করতে ব্যর্থ হয়েছে" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1644,7 +1644,7 @@ msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "সমস্যাগুলি তালিকাভুক্ত করুন [DIRs-এ]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1664,7 +1664,7 @@ msgstr "সাম্প্রতিক ক্র্যাশগুলির গ + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "একাধিক সমস্যাগুলি প্রক্রিয়া করুন" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1730,42 +1730,42 @@ msgstr "ABRT %u সমস্য সনাক্ত করেছে। অার + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& রিপোর্ট [বিকল্প] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "রিপোর্ট করার পরে PROBLEM_DIR সরান" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "'%s' মোছা হচ্ছে" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "অ্যাকশন: remove(rm), info(i), skip(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "অ্যাকশন: remove(rm), report(e), info(i), skip(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "'%s' রিপোর্ট করা হচ্ছে" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "পরবর্তী সমস্যার জন্য ENTER টিপুন:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "--since অার্গুমেন্ট ব্যতীত, সমস্ত সনাক্ত করা সমস্যার উপরে পুনরাবৃত্তি করুন।" + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "শুধুমাত্র টাইম-স্ট্যাম্পের পরে সনাক্ত করা সমস্যাগুলি নির্বাচন করে" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/bo.po b/po/bo.po +index 545f2ca..26e4695 100644 +--- a/po/bo.po ++++ b/po/bo.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Tibetan (http://www.transifex.com/projects/p/fedora-abrt/language/bo/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/br.po b/po/br.po +index 891c89a..b56bc41 100644 +--- a/po/br.po ++++ b/po/br.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Breton (http://www.transifex.com/projects/p/fedora-abrt/language/br/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/brx.po b/po/brx.po +index ce94412..b84aa02 100644 +--- a/po/brx.po ++++ b/po/brx.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Bodo (http://www.transifex.com/projects/p/fedora-abrt/language/brx/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/bs.po b/po/bs.po +index e36842a..139cbee 100644 +--- a/po/bs.po ++++ b/po/bs.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Bosnian (http://www.transifex.com/projects/p/fedora-abrt/language/bs/)\n" +@@ -697,7 +697,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -833,34 +833,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/ca.po b/po/ca.po +index 07fcedd..a97e958 100644 +--- a/po/ca.po ++++ b/po/ca.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Catalan (http://www.transifex.com/projects/p/fedora-abrt/language/ca/)\n" +@@ -697,7 +697,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -833,34 +833,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/cs.po b/po/cs.po +index 56f4f32..30e7e49 100644 +--- a/po/cs.po ++++ b/po/cs.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Czech (http://www.transifex.com/projects/p/fedora-abrt/language/cs/)\n" +@@ -700,7 +700,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -836,34 +836,34 @@ msgstr "Smazat soubory uvnitř tohoto adresáře" + msgid "Preserve this directory" + msgstr "Zachovat tento adresář" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/cy.po b/po/cy.po +index 15b7213..f1f6821 100644 +--- a/po/cy.po ++++ b/po/cy.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Welsh (http://www.transifex.com/projects/p/fedora-abrt/language/cy/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/da.po b/po/da.po +index afe0218..08c1592 100644 +--- a/po/da.po ++++ b/po/da.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Danish (http://www.transifex.com/projects/p/fedora-abrt/language/da/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "Slet filer i denne mappe" + msgid "Preserve this directory" + msgstr "Bevar denne mappe" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/de.po b/po/de.po +index 43164b9..f4f2f52 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -17,9 +17,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-21 00:19+0000\n" ++"Last-Translator: hpeters \n" + "Language-Team: German (http://www.transifex.com/projects/p/fedora-abrt/language/de/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -91,7 +91,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "Sie sind im Begriff, Benachrichtigungen für ein bestimmtes Problem zu unterdrücken. Sie werden in Zukunft keine Benachrichtigungen für dieses Problem erhalten, ABRT wird es jedoch weiterhin aufzeichnen und Sie haben die Möglichkeit, das Problem über die ABRT-Oberfläche zu berichten.\n\nMöchten Sie fortfahren?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -204,19 +204,19 @@ msgstr "& [-v] [DIR]...\n\nApplet zur Benachrichtigung des Benutzers, wenn neue + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Vor Übernahme des Verzeichnisses nachfragen" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "uReport automatisch senden" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "Verkürzte Berichterstattung" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "Verkürzte Berichterstattung (silent)" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -225,7 +225,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "Die Coredump-Datei ist notwendig zur Generierung eines Stack Trace – eine Operation, die viel Zeit und Speicherplatz in Anspruch nimmt. ABRT bietet einen Service, der den Stack Trace aus dem Coredump erstellt, allerdings müssen Sie den Coredump für diesen Service hochladen. Ist diese Option deaktiviert, lädt ABRT den Coredump ohne Nachfrage hoch." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -233,7 +233,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "ABRT speichert Fehlerdaten in Verzeichnissen. Wenn ABRT ein schreibbares Verzeichnis benötigt, wird das Verzeichnis von seinem Speicherort in Ihr Benutzerverzeichnis verlegt. Ist diese Option deaktiviert, verlegt ABRT das Fehlerverzeichnis ohne Nachfrage." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -241,45 +241,45 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "uReport ist eine kurze und vollständig anonyme Beschreibung eines Fehlers. ABRT nutzt uReports für eine schnelle und globale Erkennung von Duplikaten. In der Standardkonfiguration wird ein uReport zu Beginn der Berichterstattung gesendet. Ist diese Option aktiviert, werden uReports automatisch gesendet, sobald ein Fehler erkannt wird." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "Ist diese Option aktiviert, wird die Berichterstattung, die durch einen Klick auf die Schaltfläche »Melden« im Benachrichtigungsdialog begonnen wurde, nach dem Senden des uReports unterbrochen. Sie können jederzeit den standardmäßigen Fehlerbrowser verwenden, um einen vollständigen Bericht einzureichen." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr "Ist diese Option aktiviert, zeigt ABRT keine Benachrichtigungen über gemeldete Fehler. Dies ist nur wirksam, wenn die verkürzte Berichterstattung aktiviert ist." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "Vor dem Hochladen des Coredumps nachfragen" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "Ist diese Option aktiviert, erstellt ABRT immer Fehlerberichte mit eingeschränktem Zugriff, falls möglicherweise sensible Daten entdeckt wurden." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "Privates Ticket für sensible Informationen anfordern" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Unvollständige Probleme melden" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "Beim Herunterfahren des Rechners oder beim Abmelden des Benutzers können gegebenenfalls unvollständige Fehler erkannt werden. Um nur nützliche Fehlerberichte einzureichen, lässt ABRT das Melden dieser Fehler nicht zu." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -492,72 +492,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "Verwendung: %s [-vd] ABRT_SPOOL_VERZ UPLOAD_VERZ DATEINAME\n\n -v - Ausführliche Ausgabe\n -d - Hochgeladenes Archiv löschen\n ABRT_SPOOL_VERZ - Verzeichnis, in das gültige hochgeladene Archive entpackt werden\n UPLOAD_VERZ - Verzeichnis, in dem hochgeladene Archive gespeichert werden\n DATEINAME - Name der Archivdatei\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Kein Verzeichnis: »{0}«" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Überspringen: »{0}« (beginnt mit einem Schrägstrich)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Überspringen: »{0}« (beginnt mit einem Punkt)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Überspringen: »{0}« (enthält ..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Überspringen: »{0}« (enthält Leerzeichen)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Überspringen: »{0}« (enthält Tabulatoren)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Verzeichnis kann nicht auf »{0}« geändert werden" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Unbekannter Dateityp: »{0}«" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "Arbeitsverzeichnis kann nicht in »{0}« erstellt werden" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "»{0}« kann nicht nach »{1}« verlegt werden" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "»{0}« kann nicht nach »{1}« kopiert werden" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "Fehler bei Prüfung von »{0}«" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "»{0}« wird entpackt" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "Verzeichnis »{0}« kann nicht erstellt werden" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "»{0}« kann nicht entpackt werden" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "»{0}« erfolgreich verarbeitet" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -577,7 +577,7 @@ msgstr "Chown nicht möglich: »%s«: %s" + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" +-msgstr "Problematisches Verzeichnis konnte nicht gelöscht werden: %s" ++msgstr "Fehlerverzeichnis konnte nicht gelöscht werden: %s" + + #: ../src/lib/problem_api_dbus.c:133 + #, c-format +@@ -637,21 +637,21 @@ msgstr "& [-v] -d DIR\n\nBerechnet und speichert UUID des Speicherauszugs in Pro + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "Coredump »%s« wird analysiert" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "Fehlende Build-ID: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "Verwendung: %s [-v] [-o AUSGABEDATEI] -c COREDATEI" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREDATEI ist nicht angegeben" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -705,7 +705,7 @@ 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 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -841,37 +841,37 @@ msgstr "Löscht Dateien in diesem Verzeichnis" + msgid "Preserve this directory" + msgstr "Dieses Verzeichnis behalten" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "»%s« konnte nicht gestartet werden, Fehlermeldung lautet: »%s«" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "Keine Nummer in Datei »%s«" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Verwendung: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "Aktuelles Arbeitsverzeichnis konnte nicht bestimmt werden, womöglich wurde es gelöscht" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "Für diesen Fehler wurde bereits ein Fehlerbericht eingereicht:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport wurde bereits gesendet und wird nicht erneut gesendet" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport ist fehlgeschlagen mit Exit-Code %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1065,7 +1065,7 @@ msgstr "Suchbegriff(e) in Stdout schreiben und beenden" + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "Kompilieren von regex fehlgeschlagen" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1649,7 +1649,7 @@ msgstr "Aufruf: abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "Fehler anzeigen [in DIRs]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1669,7 +1669,7 @@ msgstr "Anzahl der jüngsten Abstürze ausgeben" + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "Mehrere Fehler verarbeiten" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1735,42 +1735,42 @@ msgstr "ABRT hat %u Fehler festgestellt. (Für weitere Informationen: abrt-cli l + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& berichten [Optionen] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "PROBLEM_DIR nach Berichterstattung löschen" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "»%s« wird gelöscht" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Aktionen: entfernen(rm), info(i), überspringen(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Aktionen: entfernen(rm), berichten(e), info(i), überspringen(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "»%s« wird gemeldet" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "Drücken Sie die EINGABETASTE für den nächsten Fehler" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "Ohne --since Parameter werden alle erkannten Fehler durchgegangen." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "Nur Fehler auswählen, die nach diesem Zeitpunkt auftraten" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/de_CH.po b/po/de_CH.po +index 65491c7..87122de 100644 +--- a/po/de_CH.po ++++ b/po/de_CH.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/fedora-abrt/language/de_CH/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/dz.po b/po/dz.po +index 8380e9c..3f04ead 100644 +--- a/po/dz.po ++++ b/po/dz.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Dzongkha (http://www.transifex.com/projects/p/fedora-abrt/language/dz/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/el.po b/po/el.po +index 7749cf0..abdadbd 100644 +--- a/po/el.po ++++ b/po/el.po +@@ -11,7 +11,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Greek (http://www.transifex.com/projects/p/fedora-abrt/language/el/)\n" +@@ -699,7 +699,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -835,34 +835,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/en_GB.po b/po/en_GB.po +index 39d4b57..44d548e 100644 +--- a/po/en_GB.po ++++ b/po/en_GB.po +@@ -11,7 +11,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/fedora-abrt/language/en_GB/)\n" +@@ -699,7 +699,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -835,34 +835,34 @@ msgstr "Delete files inside this directory" + msgid "Preserve this directory" + msgstr "Preserve this directory" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/en_US.po b/po/en_US.po +index 931a0c5..91f2bb7 100644 +--- a/po/en_US.po ++++ b/po/en_US.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: English (United States) (http://www.transifex.com/projects/p/fedora-abrt/language/en_US/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/eo.po b/po/eo.po +index 63720b0..0f0f8a3 100644 +--- a/po/eo.po ++++ b/po/eo.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Esperanto (http://www.transifex.com/projects/p/fedora-abrt/language/eo/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/es.po b/po/es.po +index 5d522c1..0da7cc4 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -11,6 +11,7 @@ + # beckerde , 2011,2013 + # Eduardo Villagrán M , 2013 + # vareli , 2014 ++# Gerardo Rosales , 2014 + # Gladys Guerrero , 2014 + # Henderb Rodriguez , 2014 + # Jiří Moskovčák , 2011 +@@ -22,9 +23,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-10 18:53+0000\n" ++"Last-Translator: Gerardo Rosales \n" + "Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/language/es/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -96,7 +97,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "Vas a silenciar las notificaciones de un problema en particular. Nunca más verás una notificación para este problema, sin embargo, ABRT seguirá detectándolos y serás capaz de reportarlo desde la interfaz de ABRT.\n\n¿Deseas continuar?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -269,7 +270,7 @@ msgstr "Preguntar antes de subir coredump" + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "Con esta opción habilitada ABRT siempre crea una entrada del bug con acceso restringido si son detectados datos posiblemente sensibles." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -497,72 +498,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "Uso: %s[-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n-v - Informativo\n-d - Elimina el archivo cargado\nABRT_SPOOL_DIR - Directorio en el cual los archivos cargados son desempaquetados\nUPLOAD_DIR - Directorio donde los archivos cargados son guardados\nFILENAME - Nombre del archivo cargado\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "No es un directorio: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Omitiendo: '{0}' (Inicia con una barra diagonal / )" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Omitiendo: '{0}' (Inicia con un punto)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Omitiendo: '{0}' (contiene ..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Omitiendo: '{0}' (Contiene espacio)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Omitiendo: '{0}' (Contiene tabulación)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "No se puede cambiar el directorio a '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Tipo de archivo desconocido: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "No se puede crear un directorio para trabajar en '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "No se puede mover '{0}' a '{1}'" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "No se puede copiar '{0}' a '{1}'" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "Error de verificación en '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "Desempacando '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "No se puede crear el directorio '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "No se puede desempaquetar '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' se proceso exitosamente" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -710,7 +711,7 @@ 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 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -846,37 +847,37 @@ msgstr "Borrar archivos dentro de este directorio" + msgid "Preserve this directory" + msgstr "Preservar este directorio" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "No se pudo iniciar '%s', el mensaje de error fue: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "No un número en el archivo '%s'" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Uso: %s[-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "Imposible obtener el directorio de trabajo actual, probablemente fue borrado" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "Un error ya fue reportado acerca de este problema:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport ya fue enviado, no se enviará de nuevo" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport falló con el código de salida %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1070,7 +1071,7 @@ msgstr "Imprime la(s) cadena(s) de búsqueda a stdout y sale" + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "Fallo al compilar regex" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1654,7 +1655,7 @@ msgstr "Uso: abrt-cli [--version] COMANDO [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "Listar problemas [en DIRs]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1674,7 +1675,7 @@ msgstr "Imprima el conteo de las fallas recientes" + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "Procesando varios problemas" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1740,42 +1741,42 @@ msgstr "ABRT a detectado %u problema(s). Para más información ejecute: abrt-cl + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& reporte[opciones] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "Elimina PROBLEM_DIR después de reportarlos" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "Borrando '%s'" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Acciones: eliminar(rm), información(i), omitir(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Acciones: eliminar(rm), reporte(e), información(i), omitir(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "Reportando '%s'" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "Para el siguiente problema presione la tecla ENTER:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "Without -- puesto que el argumento se repite sobre todos los problemas detectados." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "Selecciona unicamente los problemas después del tiempo especificado" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/et.po b/po/et.po +index ecac4a3..47eae14 100644 +--- a/po/et.po ++++ b/po/et.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Estonian (http://www.transifex.com/projects/p/fedora-abrt/language/et/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "Kustuta failid selle kataloogi seest" + msgid "Preserve this directory" + msgstr "Säilita see kataloog" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/eu.po b/po/eu.po +index ba31e79..5ef1e34 100644 +--- a/po/eu.po ++++ b/po/eu.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Basque (http://www.transifex.com/projects/p/fedora-abrt/language/eu/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "Ezabatu direktorio honetako fitxategiak" + msgid "Preserve this directory" + msgstr "Mantendu direktorio hau" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/fa.po b/po/fa.po +index f302f86..1aa72df 100644 +--- a/po/fa.po ++++ b/po/fa.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Persian (http://www.transifex.com/projects/p/fedora-abrt/language/fa/)\n" +@@ -698,7 +698,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -834,34 +834,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/fi.po b/po/fi.po +index 8999e7a..3ba352b 100644 +--- a/po/fi.po ++++ b/po/fi.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Finnish (http://www.transifex.com/projects/p/fedora-abrt/language/fi/)\n" +@@ -698,7 +698,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -834,34 +834,34 @@ msgstr "Poista tiedostot tästä hakemistosta" + msgid "Preserve this directory" + msgstr "Säästä tämä hakemisto" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/fr.po b/po/fr.po +index 26e28ff..8eef733 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -17,9 +17,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-22 02:06+0000\n" ++"Last-Translator: Sam Friedmann \n" + "Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/language/fr/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -91,7 +91,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "Vous allez mettre en sourdine les notifications d'un problème en particulier. Vous ne verrez jamais plus de bulle concernant ce problème. Cependant, ABRT le détectera et vous pourrez le rapporter à partir de l'interface utilisateur ABRT.\n\nSouhaitez-vous continuer ?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -264,7 +264,7 @@ msgstr "Demander avant de téléverser le vidage de la mémoire" + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "Quand cette option est activée, ABRT crée toujours un ticket d'anomalie à accès restreint si des données possiblement sensibles ont été détectées." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -455,7 +455,7 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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" ++msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nSurveille UPLOAD_DIRECTORY et décompresse 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:281 + msgid "Daemize" +@@ -492,72 +492,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "Utilisation : %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbeux\n -d - Supprimer l'archive téléversée\n ABRT_SPOOL_DIR - Répertoire sur lequel les archives téléversées valides sont décompressées\n UPLOAD_DIR - Répertoire dans lequel les archives téléversées sont stockées\n FILENAME - Nom de fichier de l'archive téléversée\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "N'est pas un répertoire : « {0} »" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Ignorer : « {0} » (commence par une barre oblique)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Ignorer : « {0} » (commence par un point)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Ignorer : « {0} » (contient ...)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Ignorer : « {0} » (contient un espace)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Ignorer : « {0} » (contient un onglet)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Impossible de modifier le répertoire sur « {0} »" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Type de fichier inconnu : « {0} »" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "Impossible de créer un répertoire de travail dans « {0} »" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "Impossible de déplacer « {0} » vers « {1} »" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "Impossible de copier « {0} » sur « {1} »" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "Erreur de vérification sur « {0} »" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "Décompression de « {0} »" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "Impossible de créer le répertoire « {0} »" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "Impossible de décompresser « {0} »" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "Traitement de « {0} » réussi" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -705,7 +705,7 @@ 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 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -841,37 +841,37 @@ msgstr "Supprimer les fichiers se trouvant dans ce répertoire" + msgid "Preserve this directory" + msgstr "Préserver ce répertoire" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "Impossible de lancer « %s », message d'erreur : « %s »" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "N'est pas un numéro dans le fichier « %s »" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Utilisation : %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "Impossible d'obtenir le répertoire de travail actuel, celui-ci a probablement été supprimé" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "Un bogue concernant ce problème a déjà été enregistré :" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport a déjà été envoyé, il ne sera pas envoyé à nouveau" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "échec de reporter-ureport avec code de sortie %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1065,7 +1065,7 @@ msgstr "Afficher les chaînes recherchées sur la sortie standard et quitter" + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "Échec de la compilation des expressions régulières" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1649,7 +1649,7 @@ msgstr "Usage : abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "Répertorier les problèmes [dans DIRs]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1669,7 +1669,7 @@ msgstr "Affiche le nombre de plantages récents" + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "Traiter de multiples problèmes" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1735,42 +1735,42 @@ msgstr "ABRT a détecté %u incident(s). Pour plus d'informations, lancer : abrt + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [options] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "Supprimer PROBLEM_DIR après le rapport" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "Suppression de « %s »" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Actions : supprimer (rm), informations (i), ignorer (s) :" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Actions : supprimer (rm), rapporter (e), informations (i), ignorer (s) :" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "Rapporter « %s »" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "Pour le problème suivant, veuillez appuyer sur ENTRÉE :" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "Sans l'argument --since, réitère tous les problèmes détectés." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "Sélectionne uniquement les problèmes détectés après l'horodatage" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/ga.po b/po/ga.po +index 9493f7f..32b3b9a 100644 +--- a/po/ga.po ++++ b/po/ga.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Irish (http://www.transifex.com/projects/p/fedora-abrt/language/ga/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/gl.po b/po/gl.po +index d2b510d..388e776 100644 +--- a/po/gl.po ++++ b/po/gl.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Galician (http://www.transifex.com/projects/p/fedora-abrt/language/gl/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/gu.po b/po/gu.po +index eeb551c..2c0d9f7 100644 +--- a/po/gu.po ++++ b/po/gu.po +@@ -6,13 +6,14 @@ + # Jiří Moskovčák , 2011 + # Keralkumar Patel , 2014 + # sweta , 2013 ++# sweta , 2014 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-20 08:40+0000\n" ++"Last-Translator: sweta \n" + "Language-Team: Gujarati (http://www.transifex.com/projects/p/fedora-abrt/language/gu/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -84,7 +85,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "તમે ખાસ સમસ્યાઓની સૂચનાઓને મૂંગી કરી રહ્યા છો. તમે ફરી આ સમસ્યા માટે સૂચના બબલને કદી જોશો નહિં, છતાંપણ, ABRT તેને શોધશે અને તમે ABRT GUI માંથી તેનો અહેવાલ કરવા માટે સક્ષમ હશો.\n\nશું તમે ચાલુ રાખવા માંગો છો?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -218,7 +219,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "કોરડમ્પ ફાઇલ સ્ટેક ટ્રીને પેદા કરવા માટે જરૂરી છે કે જે આ ક્રિયાનો સમય અને જગ્યા લે છે. ABRT સેવાને પૂરી પાડે છે કે જે કોરડમ્પમાંથી સ્ટેક ટ્રેસને પેદા કરે છે પરંતુ તમારે આ સેવા માટે કોરડમ્પને અપલોડ કરવુ જ પડશે. આ નિષ્ક્રિય થયેલ આ વિકલ્પ સાથે ABRT એ પૂછ્યા વગર કોરડમ્પને અપલોડ કરશે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -226,7 +227,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "ABRT એ ડિરેક્ટરીઓમાં સમસ્યા માહિતીનો સંગ્રહ કરે છે. ગમે ત્યારે ABRT ને લખી શકાય તેવી ડિરેક્ટરીની જરૂર પડે, ડિરેક્ટરી તમારી ઘર ડિરેક્ટરીમાં સિસ્ટમ સ્થાનમાંથી ખસેડેલ છે. નિષ્ક્રિય થયેલ આ વિકલ્પ સાથે ABRT એ પૂછ્યા વગર સમસ્યા ડિરેક્ટરીને ખસેડશે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -234,20 +235,20 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "uReport એ ટૂંકો છે અને સંપૂર્ણપણે સમસ્યાનું અનામિક વર્ણન છે. ABRT એ ઝડપી વૈશ્ર્વિક નકલી શોધ માટે uReports ને વાપરે છે. મૂળભૂત રૂપરેખાંકન uReports માં અહેવાલીકરણ પ્રક્રિયાની શરૂઆતમાં મોકલેલ છે. સક્રિય થયેલ આ વિકલ્પ સાથે uReports સમસ્યા શોધ પછી તરતજ આપમેળે મોકલેલ છે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "સમસ્યા સૂચના બબલમાં અહેવાલ બટન પર ક્લિક દ્દારા શરૂ થયેલ સક્રિય થયેલ અહેવાલીકરણ પ્રક્રિયા આ વિકલ્પ સાથે uReport ને મોકલેલ છે તેનાં પછી અવરોધાયેલ છે. તમે અહેવાલને સમાપ્ત કરવા માટે મૂળભૂત સમસ્યા બ્રાઉઝરને હંમેશા વાપરી શકે છે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr "સક્રિય થયેલ આ વિકલ્પ સાથે ABRT એ અહેવાલ થયેલ સમસ્યાઓની સૂચનાઓને બતાવે છે. ફક્ત અસર થાય છે જો ટૂંકા અહેવાલને સક્રિય કરે છે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -257,7 +258,7 @@ msgstr "Coredump અપલોડ કરતા પહેલા પૂછો " + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "સક્રિય થયેલ આ વિકલ્પ સાથે ABRT મર્યાદિત પ્રવેશ સાથે હંમેશા ભૂલ ટિકિટને બનાવે છે જો શક્ય સંવેદનશીલ માહિતીને શોધેલ છે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -272,7 +273,7 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "અપૂરતી સમસ્યાઓ શોધેલ છે જ્યારે કમ્પ્યૂટરને બંધ કરી રહ્યા હોય અથવા વપરાશકર્તા બહાર નીકળી રહ્યા હોય. કિંમતી સમસ્યા અહેવાલને પૂરુ પાડલા ક્રમમાં, ABRT એ આ સમસ્યાઓને સમાવવા માટે તમમે પરવાનગી આપશે નહિં." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -485,72 +486,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "વપરાશ: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - વર્બોસ\n -d - અપલોડ થયેલ પેટીને કાઢો\n ABRT_SPOOL_DIR - ડિરેક્ટરી જ્યાં યોગ્ય અપલોડ થયેલ પેટીઓ તેમાં ખોલેલ છે\n UPLOAD_DIR - ડિરેક્ટરી જ્યાં અપલોડ થયેલ પેટીઓ સંગ્રહેલ છે\n FILENAME - અપલોડ થયેલ પેટી ફાઇલ નામ\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "ડિરેક્ટરી નથી: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "છોડી રહ્યા છે: '{0}' (સ્લેશ સાથે શરૂ કરે છે)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "છોડી રહ્યા છે: '{0}' (બિંદુ સાથે શરૂ કરે છે)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "છોડી રહ્યા છે: '{0}' (સમાવે છે ..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "છોડી રહ્યા છે: '{0}' (જગ્યાને સમાવે છે)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "છોડી રહ્યા છે: '{0}' (ટૅબને સમાવે છે)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "'{0}' માટે ડિરેક્ટરીને બદલી શકાતી નથી" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "અજ્ઞાત ફાઇલ પ્રકાર: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "'{0}' માં કાર્ય કરવાની ડિરેક્ટરીને બનાવી શકાતી નથી" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' થી '{1}' ને ખસેડી શકાતુ નથી" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' થી '{1}' માં નકલ કરી શકાતી નથી" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "'{0}' પર ચકાસણી ભૂલ" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "'{0}' ને ખોલી રહ્યા છે" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "'{0}' ડિરેક્ટરીને બનાવી શકાતી નથી" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "'{0}' ને ખોલી શકાતુ નથી" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' પ્રક્રિયા સફળતાપૂર્વક થઇ" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -630,7 +631,7 @@ msgstr "& [-v] -d DIR\n\nસમસ્યા ડિરેક્ટરી DIR મ + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "coredump '%s' નું વિશ્ર્લેષણ કરી રહ્યા છે" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format +@@ -698,7 +699,7 @@ msgstr "oops સંદેશાને કાઢી શકાતુ નથી: '{ + msgid "Oops text extracted successfully" + msgstr "Oops લખાણને સફળતાપૂર્વક કાઢી નાંખેલ છે" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -834,37 +835,37 @@ msgstr "આ ડિરેક્ટરીની અંદર ફાઇલોને + msgid "Preserve this directory" + msgstr "આ ડિરેક્ટરીને સાચવો" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "'%s' ને શરૂ કરવાનું અસમર્થ, ભૂલ સંદેશો આ હતો: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "ફાઇલ '%s' માં નંબર નથી" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "વપરાશ: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "હાલની કામ કરવાની ડિરેક્ટરીને મેળવવાનું અસમર્થ તે કદાચ શોધાઇ હતી" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "આ સમસ્યા વિશે ભૂલને પહેલેથી અદા કરેલ છે:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport પહેલેથી મોકલેલ હતો, તેને ફરીથી મોકલી રહ્યા નથી" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "exit કોડ %d સાથે reporter-ureport નિષ્ફળ" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1058,7 +1059,7 @@ msgstr "stdout માટે શોધ શબ્દમાળા (ઓ) ને છ + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "regex ને કમ્પાઇલ કરવામાં નિષ્ફળતા" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1642,7 +1643,7 @@ msgstr "વપરાશ: abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "સમસ્યાઓની યાદી [DIRs માં]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1662,7 +1663,7 @@ msgstr "તાજેતરનાં ભંગાણોની ગણતરીન + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "ઘણી સમસ્યાઓની પ્રક્રિયા" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1728,42 +1729,42 @@ msgstr "ABRT એ %u સમસ્યા(ઓ) ને શોધી. વધારે + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [options] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "અહેવાલ થયા પછી PROBLEMDIR ને દૂર કરો (_D)" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "'%s' ને કાઢી રહ્યા છે" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "ક્રિયાઓ: remove(rm), info(i), skip(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "ક્રિયાઓ: remove(rm), report(e), info(i), skip(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "'%s' નો અહેવાલ કરી રહ્યા છે" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "આગળની સમસ્યા માટે ENTER ને દબાવો:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "--since દલીલ વગર, બધી શોધાયેલ સમસ્યાઓ પર પુનરાવર્તિત થાય છે." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "ટાઇમસ્ટેમ્પ પછી ફક્ત શોધાયેલ સમસ્યાઓને પસંદ કરે છે" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/he.po b/po/he.po +index 4ca0b1a..29247a9 100644 +--- a/po/he.po ++++ b/po/he.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Hebrew (http://www.transifex.com/projects/p/fedora-abrt/language/he/)\n" +@@ -698,7 +698,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -834,34 +834,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/hi.po b/po/hi.po +index 6f6fce7..0a12010 100644 +--- a/po/hi.po ++++ b/po/hi.po +@@ -6,19 +6,21 @@ + # Chandan kumar , 2012 + # Jiří Moskovčák , 2011 + # keshav mishra , 2013 +-# rajesh , 2012 ++# keshav mishra , 2013 ++# rajesh , 2012,2014 + # Rajesh Ranjan , 2014 + # Rajesh , 2011,2014 + # Tarsem singh , 2014 ++# Tarsem singh , 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-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-17 11:47+0000\n" ++"Last-Translator: Rajesh Ranjan \n" + "Language-Team: Hindi (http://www.transifex.com/projects/p/fedora-abrt/language/hi/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -90,7 +92,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "आप खास समस्या की अधिसूचना को मूक करने जा रहे हैं. आप इस समस्या के लिए फिर से अधिसूचना बबल नहीं देखेंगे, हालाँकि, ABRT इसे पता करेगा और आप इसे ABRT GUI से रिपोर्ट कर पाएँगे.\n\nक्या आप जारी रखना चाहते हैं?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -203,19 +205,19 @@ msgstr "& [-v] [DIR]...\n\nएप्प्लेट जो उपयोक्त + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "निर्देशिका लेने के पहले पूछें" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "स्वतः uReport भेजें" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "संक्षिप्त रिपोर्टिंग" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "मौन संक्षिप्त रिपोर्टिंग" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -224,7 +226,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "कोरडंप फाइल स्टैक ट्रैस जनित करने के लिए जरूरी है जो कि समय और स्थान की खपत करने वाला काम है. ABRT ऐसी सेवा प्रदान करता है कोरडंप से स्टैक ट्रैस जनित करता है लेकिन आपको इस सेवा में कोरडंप को अपलोड करना है. इस विकल्प के साथ निष्क्रिय ABRT बिना पूछे कोरडंप को अपलोड करेगा." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -232,7 +234,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "ABRT निर्देशिका में समस्या आँकड़ा को जमा करता है. जब कभी ABRT को लिखने योग्य निर्देशिका चाहिए, निर्देशिका को आपके तंत्र स्थान से घर निर्देशिका में ले जाया जाता है. इस विकल्प के साथ निष्क्रिय ABRT समस्या निर्देशिका को बिना पूछे खिसकाएगा." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -240,45 +242,45 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "uReport संक्षिप्त है और समस्या का पूरी तरह से बेनाम विवरण है. ABRT uReports का उपयोग तेज वैश्विक नकल जाँच के लिए करता है. तयशुदा विन्यास में uReport को रिपोर्टिंग प्रक्रिया के आरंभ में भेजा जाता है. इस विकल्प के सक्रिय किए जाने के साथ uReports को समस्या के पता के बाद तत्काल स्वतः भेजा जाता है." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "इस विकल्प के साथ सक्रिय रिपोर्टिंग प्रक्रिया जो रिपोर्ट बटन पर क्लिक करने से आरंभ होता है वह uReport के भेजे जाने के बाद बाधित होता है. आप हमेशा तयशुदा समस्या ब्राउज़र पूरी रपट बनाने के लिए उपयोग कर सकते हैं." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr " इस विकल्प के साथ सक्रिय ABRT रिपोर्ट किए गए समस्या को कभी नहीं दिखाता है. यह तभी प्रभावी होता है जब संक्षिप्त रिपोर्टिंग सक्रिय किया जाता है." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "कोरडंप अपलोड के पहले पूछें" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr " इस विकल्प के सक्रिय करने से ABRT हमेशा बग टिकट प्रतिबंधित पहुँच के साथ बनाता है यदि संभावित रूप से संवेदनशील आँकड़ों का पता किया जाता है." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "संवेदनशील सूचना के लिए निजी टिकट का निवेदन करें" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "अपूर्ण समस्या अधिसूचित करें" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "अपूर्ण समस्या का पता चलता है जब कंप्यूटर बंद किया जा रहा है या उपयोक्ता लॉग आउट है. मूल्यवान समस्या रिपोर्ट देने के क्रम में, ABRT आपको इन समस्याओं के सुपुर्द करने की छूट नहीं देगा." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -491,72 +493,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "प्रयोग: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n UPLOAD_DIR - Directory where uploaded archives are stored\n FILENAME - Uploaded archive file name\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "निर्देशिका नहीं है: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "छोड़ रहा है: '{0}' (starts with slash)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "छोड़ रहा है: '{0}' (starts with dot)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "छोड़ रहा है: '{0}' (contains ..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "छोड़ रहा है: '{0}' (contains space)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "छोड़ रहा है: '{0}' (contains tab)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "'{0}' में निर्देशिका बदल नहीं सकता है" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "अज्ञात फाइल प्रकार: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "'{0}' में कार्यशील निर्देशिका नहीं बना सकता है" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' को '{1}' में खिसका नहीं सकता है" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' को '{1}' में नहीं नक़ल ले सकता है" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "'{0}' पर सत्यापन त्रुटि" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "'{0}' को खोला जा रहा है" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "'{0}' निर्देशिका नहीं बना सकता है" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "'{0}' खोल नहीं सकता है" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' को सफलतापूर्वक प्रक्रिया किया गया" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -636,21 +638,21 @@ msgstr "& [-v] -d DIR\n\nकोरडंप के UUID को समस्य + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "'%s' कोरडंप का विश्लेषण" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "अनुपस्थित बिल्ड आईडी: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "प्रयोग: %s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREFILE निर्दिष्ट नहीं" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -704,7 +706,7 @@ msgstr "वूप्स संदेश निकाल नहीं सकत + msgid "Oops text extracted successfully" + msgstr "वूप्स पाठ सफलतापूर्वक निकाले गए" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -840,37 +842,37 @@ msgstr "इस निर्देशिका के भीतर की फ़ + msgid "Preserve this directory" + msgstr "इस निर्देशिका को संरक्षित रखता है" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "'%s' को आरंभ करने में असमर्थ, त्रुटि संदेश था: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "'%s' फ़ाइल में संख्या नहीं" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "प्रयोग: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "वर्तमान कार्यशील निर्देशिका पाने में असमर्थ क्योंकि यह मिटा दिया गया था" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "इस समस्या के बारे में बग पहले से फ़ाइल किया गया था:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport पहले से भेजा गया था, इसे फिर से नहीं भेज रहा है" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "%d निकास कोड के साथ reporter-ureport विफल" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1064,7 +1066,7 @@ msgstr "stdout में खोज स्ट्रिंग छापें औ + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "रिजेक्स कंपाइल करने में विफल" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1648,7 +1650,7 @@ msgstr "उपयोग: abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "[in DIRs] में समस्या की सूची दें" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1668,7 +1670,7 @@ msgstr "हालिया क्रैश की गिनती छापे + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "एकाधिक समस्या की प्रक्रिया करें" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1734,42 +1736,42 @@ msgstr "ABRT ने %u समस्या का पता किया है. + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [options] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "रिपोर्टिंग के बाद PROBLEM_DIR हटाएँ" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "'%s' मिटा रहा है" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "क्रिया: remove(rm), info(i), skip(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "क्रिया: remove(rm), report(e), info(i), skip(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "'%s' की रिपोर्टिंग" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "ENTER को अगली समस्या के लिए दबाएँ:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "बिना --since argumen के, सभी पता किए समस्या पर बार-बार आता है." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "टाइमस्टैंप के बाद पता चली समस्या को केवल दिखाता है" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/hr.po b/po/hr.po +index 1978445..1d11c7b 100644 +--- a/po/hr.po ++++ b/po/hr.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Croatian (http://www.transifex.com/projects/p/fedora-abrt/language/hr/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/hu.po b/po/hu.po +index f4fb9a0..ae85e0a 100644 +--- a/po/hu.po ++++ b/po/hu.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora-abrt/language/hu/)\n" +@@ -700,7 +700,7 @@ 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 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -836,34 +836,34 @@ msgstr "Ezen a könyvtáron belül törölje az összes fájlt" + msgid "Preserve this directory" + msgstr "Könyvtár megörzése" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/hy.po b/po/hy.po +index 217d6cd..f288453 100644 +--- a/po/hy.po ++++ b/po/hy.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Armenian (http://www.transifex.com/projects/p/fedora-abrt/language/hy/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/ia.po b/po/ia.po +index 9c4677f..8ffd8ca 100644 +--- a/po/ia.po ++++ b/po/ia.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Interlingua (http://www.transifex.com/projects/p/fedora-abrt/language/ia/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/id.po b/po/id.po +index 31ccc17..c26fc46 100644 +--- a/po/id.po ++++ b/po/id.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Indonesian (http://www.transifex.com/projects/p/fedora-abrt/language/id/)\n" +@@ -700,7 +700,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -836,34 +836,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/ilo.po b/po/ilo.po +index ed4e3bf..d5f75c0 100644 +--- a/po/ilo.po ++++ b/po/ilo.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Iloko (http://www.transifex.com/projects/p/fedora-abrt/language/ilo/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/is.po b/po/is.po +index 32a7f25..ada7a5d 100644 +--- a/po/is.po ++++ b/po/is.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Icelandic (http://www.transifex.com/projects/p/fedora-abrt/language/is/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/it.po b/po/it.po +index 1e1d9a5..31c6729 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -18,9 +18,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-22 02:49+0000\n" ++"Last-Translator: fvalen \n" + "Language-Team: Italian (http://www.transifex.com/projects/p/fedora-abrt/language/it/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -92,7 +92,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "Stai per disattivare le notifiche di un problema specifico. Così facendo non sarai in grado di visualizzare l'avviso relativo a questo problema, tuttavia ABRT continuerà con il rilevamento e ti permetterà di eseguire il riporto dalla GUI di ABRT.\n\nDesideri continuare?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -205,19 +205,19 @@ msgstr "& [-v] [DIR]...\n\nApplet che notifica all'utente il rilevamento di un n + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Chiedi prima di sottrarre la directory" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Invia uReport automaticamente" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "Notifica abbreviata" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "Notifica abbreviata silenziosa" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -226,7 +226,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "Il file coredump è necessario per la generazione degli stack trace. Questa operazione richiederà tempo e spazio. ABRT fornisce un servizio in grado di generare uno stack trace da coredump, e a tal proposito sarà necessario caricare coredump per il suddetto servizio. Con questa opzione disabilitata, ABRT caricherà coredump senza richiederlo all'utente." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -234,7 +234,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "ABRT archivia i dati del problema nelle directory. Ogni qualvolta ABRT necessita di una directory modificabile, la directory desidetrata verrà spostata nella home directory. Se l'opzione è disabilitata, ABRT sposterà la directory senza richiederlo all'utente." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -242,45 +242,45 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "uReport è una descrizione breve e anonima del problema. ABRT utilizza uReport per un rilevamento rapido del duplicato. In una configurazione predefinita uReport viene inviato all'inizio del processo di notifica. Se l'opzione è abilitata, dopo il rilevamento del problema verranno inviati automaticamente gli uReport." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "Se questa opzione è abilitata il processo di notifica iniziato selezionando il pulsante Riporta nell'avviso di notifica, verrà interrotto dopo l'invio di uReport. È possibile utilizzare il browser predefinito per inviare una notifica completa." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr "Se questa opzione è abilitata, ABRT non mostrerà mai le notifiche dei problemi riportati. Questa impostazione è effettiva solo se è stata abilitata la Notifica abbreviata." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "Chiedi prima di caricare coredump" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "Se questa opzione è abilitata ABRT creerà sempre un ticket per il bug con un accesso limitato in presenza di dati sensibili." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "Richiedi un ticket privato per le informazioni sensibili" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Notifica problemi incompleti" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "I problemi incompleti vengono rilevati durante lo spegnimento del computer o durante l'operazione di logout di un utente. Al fine di fornire notifiche utili, ABRT non permetterà l'invio di questi problemi." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -493,72 +493,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "Utilizzo: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory nella quale vengono estratti gli archivi validi caricati\n UPLOAD_DIR - Directory nella quale sono conservati gli archivi caricati\n FILENAME - Nome del file dell'archivio caricato\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Non è una directory: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Saltato: '{0}' (inizia con barra)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Saltato: '{0}' (inizia con un punto)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Saltato: '{0}' (contiene ..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Saltato: '{0}' (presenta uno spazio)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Saltato: '{0}' (presenta un tab)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Impossibile modificare la directory su '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Tipo di file sconosciuto: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "Impossibile creare una directory operativa in '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "Impossibile spostare '{0}' su '{1}'" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "Impossibile copiare '{0}' su '{1}'" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "Errore di verifica su '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "Estrazione '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "Impossibile creare la directory '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "Impossibile estrarre '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' processato con successo" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -638,21 +638,21 @@ msgstr "& [-v] -d DIR\n\nCalcola e salva UUID di coredump nella directory del pr + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "Analisi coredump '%s'" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "id di compilazione mancante: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "Utilizzo: %s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREFILE non è stato specificato" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -706,7 +706,7 @@ msgstr "Impossibile estrarre il messaggio oops: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Estratto con successo il testo oops" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -842,37 +842,37 @@ msgstr "Cancella i file all'interno di questa directory" + msgid "Preserve this directory" + msgstr "Preserva questa directory" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "Impossibile iniziare '%s', messaggio d'errore: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "Nessun numero nel file '%s'" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Utilizzo: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "Impossibile ottenere la directory di lavoro corrente poichè probebilmente è stata rimossa" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "È già stato inviato un bug in relazione a questo problema" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport è già stato inviato, invio non permesso" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport fallito con codice di uscita %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1066,7 +1066,7 @@ msgstr "Stampa la/le stringa/stringhe ricercate in stdout ed esce" + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "Impossibile compilare regex" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1650,7 +1650,7 @@ msgstr "Utilizzo: abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "Elenca i problemi [in DIR]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1670,7 +1670,7 @@ msgstr "Stampa il contatore dei crash recenti" + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "Elabora problemi multipli" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1736,42 +1736,42 @@ msgstr "ABRT ha trovato %u problema(i). Per maggiori informazioni usare: abrt-cl + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [options] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "Rimuovi PROBLEM_DIR dopo la notifica" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "Rimozione '%s'" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Azioni: remove(rm), info(i), skip(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Azioni: remove(rm), report(e), info(i), skip(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "Notifica '%s'" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "Per il problema successivo premere ENTER:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "Senza l'argomento --since, ripetere su tutti i problemi rilevati." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "Seleziona solo i problemi rilevati dopo il timestamp" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/ja.po b/po/ja.po +index c2c2a00..47ac4f0 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -6,6 +6,7 @@ + # Casey Jones , 2011 + # hyuugabaru , 2009 + # Jiří Moskovčák , 2011 ++# Kenzo Moriguchi , 2014 + # Makoto Mizukami , 2010 + # nnakakit , 2013 + # noriko , 2014 +@@ -15,9 +16,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-21 05:22+0000\n" ++"Last-Translator: Kenzo Moriguchi \n" + "Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-abrt/language/ja/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -89,7 +90,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "特定の問題の通知を無音にします。この問題では通知ポップアップが表示されませんが、ABRT はこれを検出し、ABRT GUI からこれを報告することができます。\n\n続けますか?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -202,19 +203,19 @@ msgstr "& [-v] [DIR]...\n\n新しい問題が ABRT で検出されるとユー + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "ディレクトリをスチールする前に尋ねる" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "uReport を自動的に送信する" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr " 短縮形のレポート" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "サイレントの短縮形レポート" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -223,7 +224,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "coredump ファイルは、時間がかかりスペースを消費する操作であるスタックトレースの生成に必要です。ABRT は、coredump からスタックトレースを生成するサービスを提供しますが、coredump をこのサービスにアップロードする必要があります。このオプションを無効にすると、ABRT は尋ねることなく coredump をアップロードします。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -231,7 +232,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "ABRT は、問題のデータをディレクトリに保存します。ABRT が書き込み可能なディレクトリを必要とする時は常に、このディレクトリはシステムからユーザーのホームディレクトリに移動されます。このオプションを無効にすると、ABRT は尋ねることなく問題のディレクトリを移動します。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -239,45 +240,45 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "uReport は、問題を説明したもので、簡潔で完全に匿名のものです。ABRT は uReport を使用して、グローバルな重複を素早く検出します。デフォルト設定では、uReport はレポーティングプロセスの最初に送信されます。このオプションを有効にすると、問題の検出後に直ちに uReport が自動的に送信されます。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "このオプションを有効にすると、問題通知のポップアップ内のレポートボタンをクリックして開始されたレポーティングプロセスは、uReport の送信後に中断されます。デフォルトの問題ブラウザを使った完全なレポート作成は、常に可能です。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr "このオプションを有効にすると、ABRT は報告された問題の通知を表示しません。短縮形レポーティングが有効な場合にのみ、実行されます。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "coredump をアップロードする前に尋ねる" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "このオプションを有効にすると、機密性の可能性があるデータが検出されると ABRT は常にアクセス制限のあるバグチケットは作成します。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "機密情報のプライベートチケットを要求する" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "完了していない問題を通知する" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "コンピューターのシャットダウン中またはユーザーのログアウト中に完了していない問題が検出されました。価値のある問題レポートを提出するため、ABRT はユーザーによるこれらの問題の提出を許可しません。" + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -490,72 +491,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "使い方: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - 冗長表示にする\n -d - アップロード済みのアーカイブを削除する\n ABRT_SPOOL_DIR - アップロード済みの有効なアーカイブが解凍されるディレクトリ\n UPLOAD_DIR - アップロード済みアーカイブが保存されるディレクトリ\n FILENAME - アップロード済みアーカイブファイル名\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "ディレクトリではありません: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "スキップ中: '{0}' (スラッシュで開始)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "スキップ中: '{0}' (ドットで開始)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "スキップ中: '{0}' (.. を含む)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "スキップ中: '{0}' (空白を含む)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "スキップ中: '{0}' (タブを含む)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "'{0}' にディレクトリを変更できません" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "不明なファイルタイプ: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "'{0}' に作業ディレクトリを作成できません" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' を '{1}' に移動できません" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' を '{1}' にコピーできません" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "'{0}' で確認エラー" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "'{0}' を解凍中" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "'{0}' ディレクトリを作成できません" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "'{0}' を解凍できません" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' が正常に処理されました" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -635,21 +636,21 @@ msgstr "& [-v] -d DIR\n\nDIR 問題ディレクトリ内のコアダンプの UU + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "coredump '%s' を分析中" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "build id がありません: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "使い方: %s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREFILE が指定されていません" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -703,7 +704,7 @@ msgstr "ウップスメッセージを抽出できません: '{0}'" + msgid "Oops text extracted successfully" + msgstr "ウップステキストが正常に抽出されました" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -839,37 +840,37 @@ msgstr "このディレクトリ内のファイル群を削除" + msgid "Preserve this directory" + msgstr "このディレクトリを維持" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "'%s' をスタートできません、エラーメッセージは: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "ファイル '%s' に番号がありません" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "使い方: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "現在作業中のディレクトリは削除された可能性があるため、取得できません" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "この問題に関するバグはすでに提出されています:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport はすでに送信されているので、再送信されません" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport は、終了コード %d で失敗しました" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1063,7 +1064,7 @@ msgstr "検索文字列を標準出力に表示して終了" + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "regex のコンパイルに失敗しました" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1647,7 +1648,7 @@ msgstr "使い方: abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "問題を一覧表示する [in DIRs]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1667,7 +1668,7 @@ msgstr "最新のクラッシュ回数を表示する" + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "複数の問題を処理する" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1733,42 +1734,42 @@ msgstr "ABRT により %u 件の問題が検出されました。次を実行し + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [options] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "レポート後に PROBLEM_DIR を削除します" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "'%s' を削除中" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "アクション: 削除(rm), 情報(i), スキップ(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "アクション: 削除(rm), レポート(e), 情報(i), スキップ(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "'%s' をレポート中" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "次の問題に移るには、ENTER を押します:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "--since 引数がないと、すべての検出済み問題を繰り返します。" + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "タイムスタンプ後に検出された問題のみを選択します" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/ka.po b/po/ka.po +index 7b2c4de..878158c 100644 +--- a/po/ka.po ++++ b/po/ka.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Georgian (http://www.transifex.com/projects/p/fedora-abrt/language/ka/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/kk.po b/po/kk.po +index be63a50..5ef671d 100644 +--- a/po/kk.po ++++ b/po/kk.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Kazakh (http://www.transifex.com/projects/p/fedora-abrt/language/kk/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/km.po b/po/km.po +index 56a2347..68adc69 100644 +--- a/po/km.po ++++ b/po/km.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Khmer (http://www.transifex.com/projects/p/fedora-abrt/language/km/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/kn.po b/po/kn.po +index 7214cb8..2ed8a8b 100644 +--- a/po/kn.po ++++ b/po/kn.po +@@ -5,15 +5,16 @@ + # Translators: + # Jiří Moskovčák , 2011 + # shanky , 2014 ++# Shankar Prasad , 2014 + # shankar , 2013 +-# shanky , 2013 ++# shanky , 2013-2014 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-17 09:44+0000\n" ++"Last-Translator: shanky \n" + "Language-Team: Kannada (http://www.transifex.com/projects/p/fedora-abrt/language/kn/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -85,7 +86,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "ನೀವು ಒಂದು ನಿರ್ದಿಷ್ಟ ತೊಂದರೆಯ ಸೂಚನೆಗಳನ್ನು ಮೂಕಗೊಳಿಸಲಿದ್ದೀರಿ. ಈ ತೊಂದರೆಗಾಗಿ ನಿಮಗೆ ಮುಂದೆ ಯಾವುದೆ ಸೂಚನೆಯು ಕಾಣಿಸಿಕೊಳ್ಳುವುದಿಲ್ಲ, ಹಾಗಿದ್ದರೂ ಸಹ ABRTಯು ಅದನ್ನು ಪತ್ತೆ ಮಾಡುತ್ತದೆ ಮತ್ತು ಅದನ್ನು ನೀವು ABRT GUI ಇಂದ ವರದಿ ಮಾಡಲು ಸಾಧ್ಯವಿರುತ್ತದೆ.\n\nನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುವಿರಾ?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -198,19 +199,19 @@ msgstr "& [-v] [DIR]...\n\nApplet which notifies user when new problems are dete + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "ಕೋಶವನ್ನು ಕಸಿದುಕೊಳ್ಳುವ ಮೊದಲು ಕೇಳು" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "uReport ಅನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಕಳುಹಿಸು" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "ಕಿರಿದಾಗಿದಾದ ವರದಿ ಮಾಡುವಿಕೆ" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "ನಿಶ್ಯಬ್ಧವಾದ ಕಿರಿದಾದ ವರದಿಮಾಡುವಿಕೆ" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -219,7 +220,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "ಕೋರ್‌ಡಂಪ್ ಕಡತವು ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ ಅನ್ನು ರಚಿಸಲು ಅಗತ್ಯವಿರುತ್ತದೆ ಆದರೆ ಇದಕ್ಕಾಗಿ ಹೆಚ್ಚಿನ ಸಮಯ ಹಾಗು ಸ್ಥಳವು ಬೇಕಿರುತ್ತದೆ. ABRT ಯು ಕೋರ್‌ಡಂಪ್‌ನಿಂದ ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ ಅನ್ನು ಉತ್ಪಾದಿಸುವ ಒಂದು ಸೇವೆಯನ್ನು ಒದಗಿಸುತ್ತದೆ ಆದರೆ ಈ ಸೇವೆಗಾಗಿ ನೀವು ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡಬೇಕಿರುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ನಿಮ್ಮನ್ನು ಕೇಳದೆ ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -227,7 +228,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "ABRT ಯು ಸಮಸ್ಯೆ ಮಾಹಿತಿಯನ್ನು ಕೋಶಗಳಲ್ಲಿ ಶೇಖರಿಸಿ ಇರಿಸುತ್ತದೆ. ABRT ಗೆ ಬರೆಯಬಹುದಾದ ಕೋಶದ ಅಗತ್ಯವಿದ್ದಾಗಲೆಲ್ಲಾ, ಕೋಶವನ್ನು ವ್ಯವಸ್ಥೆಯ ಸ್ಥಳದಿಂದ ನಿಮ್ಮ ನೆಲೆ ಕೋಶಕ್ಕೆ ಸ್ಥಳಾಂತರಿಸಲಾಗುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ಯು ನಿಮ್ಮನ್ನು ಕೇಳದೆ ಸಮಸ್ಯೆಯ ಕೋಶವನ್ನು ಸ್ಥಳಾಂತರಿಸುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -235,45 +236,45 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "uReport ಎನ್ನುವುದು ಸಮಸ್ಯೆಯ ಸಂಕ್ಷಿಪ್ತವಾದ ಮತ್ತು ಸಂಪೂರ್ಣವಾಗಿ ಅನಾಮಧೇಯವಾದಂತಹ ವಿವರಣೆಯಾಗಿರುತ್ತದೆ. ABRT ಯು ವೇಗವಾದ ಸಾರ್ವತ್ರಿಕ ನಕಲುಪ್ರತಿ ಪತ್ತೆ ಮಾಡಲು uReports ಅನ್ನು ಬಳಸುತ್ತದೆ. ಪೂರ್ವನಿಯೋಜಿತ ಸಂರಚನೆಯಲ್ಲಿ uReport ಅನ್ನು ವರದಿಯ ಪ್ರಕ್ರಿಯೆಯ ಆರಂಭದಲ್ಲಿ ಕಳುಹಿಸಲಾಗುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಸಮಸ್ಯೆಯು ಕಂಡುಬಂದ ತಕ್ಷಣವೆ ಸ್ವಯಂಚಾಲಿತವಾಗಿ uReports ಅನ್ನು ಕಳುಹಿಸಲಾಗುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಾಗ ತೊಂದರೆ ಸೂಚನಾ ಗುಳ್ಳೆಯ ಮೇಲಿರುವ ವರದಿ ಗುಂಡಿಯ ಮೇಲೆ ಕ್ಲಿಕ್ ಮಾಡುವ ಮೂಲಕ ಆರಂಭಗೊಳ್ಳುವ ವರದಿ ಮಾಡುವ ಪ್ರಕ್ರಿಯೆಯನ್ನು uReport ಅನ್ನು ಕಳುಹಿಸಿದ ನಂತರೆ ನಿಲ್ಲಿಸಲಾಗುತ್ತದೆ. ಸಂಪೂರ್ಣ ವರದಿಯನ್ನು ತಯಾರಿಸಲು ನೀವು ಯಾವಾಗಲೂ ಪೂರ್ವನಿಯೋಜಿತ ಸಮಸ್ಯೆಯ ವೀಕ್ಷಕವನ್ನು ಬಳಸಬಹುದು." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr "ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ಎಂದಿಗೂ ಸಹ ವರದಿ ಮಾಡಲಾದ ಸಮಸ್ಯೆಗಳ ಸೂಚನೆಗಳನ್ನು ತೋರಿಸುವುದಿಲ್ಲ. ಕಿರಿದಾಗಿಸಲಾದ (ಶಾರ್ಟನ್ಡ್‌) ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದಲ್ಲಿ ಮಾತ್ರ ಕಾರ್ಯರೂಪಕ್ಕೆ ಬರುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುವ ಮೊದಲು ನನ್ನನ್ನು ಕೇಳು" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ಯು, ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಯು ಕಂಡುಬಂದಲ್ಲಿ ಯಾವಾಗಲೂ ಸಹ ನಿರ್ಬಂಧಿತ ನಿಲುಕನ್ನು ಹೊಂದಿರುವ ದೋಷದ ಟಿಕೆಟ್ ಅನ್ನು ರಚಿಸುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಗಾಗಿ ಖಾಸಗಿ ಟಿಕೆಟ್‌ಗಾಗಿನ ಮನವಿ" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "ಅಪೂರ್ಣವಾದ ಸಮಸ್ಯೆಗಳನ್ನು ಸೂಚಿಸು" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "ಗಣಕವನ್ನು ಸ್ಥಗಿತಗೊಳಿಸುತ್ತಿದ್ದರೆ ಅಥವ ಬಳಕೆದಾರರು ನಿರ್ಗಮಿಸುತ್ತಿದ್ದರೆ ಅಪೂರ್ಣವಾದ ಸಮಸ್ಯೆಗಲು ಕಂಡುಬರಬಹುದು. ಮೌಲ್ಯಯುತವಾದ ಸಮಸ್ಯೆಯ ವರದಿಗಳನ್ನು ಒದಗಿಸಲು, ABRT ಈ ಸಮಸ್ಯೆಗಳನ್ನು ಸಲ್ಲಿಸಲು ನಿಮಗೆ ಅನುಮತಿಸುವುದಿಲ್ಲ." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -486,72 +487,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "ಬಳಕೆ: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - ವರ್ಬೋಸ್\n -d - ಅಪ್‌ಲೋಡ್ ಮಾಡಲಾದ ಆರ್ಕೈವ್‌ ಅನ್ನು ಅಳಿಸು\n ABRT_SPOOL_DIR - ಮಾನ್ಯವಾದ ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ಗಳನ್ನು ಅನ್‌ಪ್ಯಾಕ್‌ ಮಾಡಲಾಗುವ ಕೋಶ\n UPLOAD_DIR - ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ಗಳನ್ನು ಇರಿಸಲಾಗುವ ಕೋಶ\n FILENAME - ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ ಕಡತದ ಹೆಸರು\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "ಒಂದು ಕೋಶವಲ್ಲ: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಅಡ್ಡಗೆರೆಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಚುಕ್ಕಿಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (.. ಅನ್ನು ಹೊಂದಿದೆ)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಖಾಲಿಸ್ಥಳವನ್ನು ಹೊಂದಿದೆ)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಟ್ಯಾಬ್ ಅನ್ನು ಹೊಂದಿದೆ)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "ಕೋಶವನ್ನು '{0}' ಗೆ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "ಗೊತ್ತಿರದ ಕಡತದ ಬಗೆ: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "'{0}' ನಲ್ಲಿ ಕೆಲಸ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' ಅನ್ನು '{1}' ಗೆ ಸ್ಥಳಾಂತರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' ಅನ್ನು '{1}' ಗೆ ಪ್ರತಿಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "'{0}' ನಲ್ಲಿ ಪರಿಶೀಲನಾ ದೋಷ" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "'{0}' ಅನ್ನು ಅನ್‌ಪ್ಯಾಕ್‌ ಮಾಡಲಾಗುತ್ತಿದೆ" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "'{0}' ನಲ್ಲಿ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "'{0}' ಅನ್ನು ಹೊರತೆಗೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸಂಸ್ಕರಿಸಲಾಗಿದೆ" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -631,21 +632,21 @@ msgstr "& [-v] -d DIR\n\nCalculates and saves UUID of coredump in problem direct + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "ಕೋರ್‌ಡಂಪ್ '%s' ಅನ್ನು ವಿಶ್ಲೇಷಿಸಲಾಗುತ್ತಿದೆ" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "ನಿರ್ಮಾಣದ id ಕಾಣಿಸುತ್ತಿಲ್ಲ: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "ಬಳಕೆ: %s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREFILE ಅನ್ನು ಸೂಚಿಸಲಾಗಿಲ್ಲ" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -699,7 +700,7 @@ msgstr "ಸಂದೇಶವನ್ನು ಹೊರತೆಗೆಯಲು ಸಾಧ + msgid "Oops text extracted successfully" + msgstr "Oops ಪಠ್ಯವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಹೊರತೆಗೆಯಲಾಗಿದೆ" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -835,37 +836,37 @@ msgstr "ಈ ಕೋಶದಲ್ಲಿನ ಕಡತಗಳನ್ನು ಅಳಿಸ + msgid "Preserve this directory" + msgstr "ಈ ಕೋಶವನ್ನು ಇರಿಸಿಕೊ" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "'%s' ಅನ್ನು ಆರಂಭಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ, ದೋಷ ಸಂದೇಶವು ಹೀಗಿದೆ: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "'%s' ಕಡತದಲ್ಲಿ ಒಂದು ಸಂಖ್ಯೆಯಾಗಿಲ್ಲ" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "ಬಳಕೆ: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "ಪ್ರಸಕ್ತ ಕೆಲಸದ ಕೋಶವನ್ನು ಬಹುಷಃ ಅಳಿಸಲಾಗಿರುವ ಕಾರಣದಿಂದ ಅದನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "ಈ ಸಮಸ್ಯೆಯ ಕುರಿತು ಒಂದು ದೋಷವನ್ನು ಈಗಾಗಲೆ ವರದಿ ಮಾಡಲಾಗಿದೆ:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport ಅನ್ನು ಈಗಾಗಲೆ ಕಳುಹಿಸಲಾಗಿದೆ, ಅದನ್ನು ಇನ್ನೊಮ್ಮೆ ಕಳಿಸಲಾಗುವುದಿಲ್ಲ" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "ರಿಪೋರ್ಟರ್-ureport %d ಎಂಬ ನಿರ್ಗಮನ ಸಂಕೇತದೊಂದಿಗೆ ವಿಫಲಗೊಂಡಿದೆ" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1059,7 +1060,7 @@ msgstr "ಹುಡುಕು ವಾಕ್ಯಾಂಶವನ್ನು(ಗಳನ್ + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "regex ಅನ್ನು ಕಂಪೈಲ್ ಮಾಡಲು ವಿಫಲಗೊಂಡಿದೆ" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1643,7 +1644,7 @@ msgstr "ಬಳಕೆ: abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "ತೊಂದರೆಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಿ [DIRಗಳಲ್ಲಿ]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1663,7 +1664,7 @@ msgstr "ಇತ್ತೀಚಿನ ಕ್ರಾಶ್‌ಗಳ ಎಣಿಕೆಯ + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "ಅನೇಕ ತೊಂದರೆಗಳನ್ನು ಸಂಸ್ಕರಿಸಿ" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1729,42 +1730,42 @@ msgstr "ABRT ಗೆ %u ತೊಂದರೆ(ಗಳು) ಕಂಡುಬಂದಿದ + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "ಮತ್ತು ವರದಿ [ಆಯ್ಕೆಗಳು] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "ವರದಿ ಮಾಡಿದ ನಂತರ PROBLEM_DIR ಅನ್ನು ತೆಗೆದುಹಾಕು" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "'%s' ಅನ್ನು ಅಳಿಸಲಾಗುತ್ತಿದೆ" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "ಕ್ರಿಯೆಗಳು: remove(rm), info(i), skip(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "ಕ್ರಿಯೆಗಳು: remove(rm), report(e), info(i), skip(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "'%s' ಅನ್ನು ವರದಿ ಮಾಡಲಾಗುತ್ತಿದೆ" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "ಮುಂದಿನ ಸಮಸ್ಯೆಗಾಗಿ ENTER ಅನ್ನು ಒತ್ತಿ:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "--since ಆರ್ಗ್ಯುಮೆಂಟ್ ಇಲ್ಲದೆ, ಅಳಿಸಲಾದ ಎಲ್ಲಾ ಸಮಸ್ಯೆಗಳ ಮೇಲೆ ಪುನರಾವರ್ತಿಸುತ್ತದೆ." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "ಈ ಸಮಯಮುದ್ರೆಯ ನಂತರ ಕಂಡುಬಂದ ಸಮಸ್ಯೆಗಳನ್ನು ಮಾತ್ರ ಆರಿಸು" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/ko.po b/po/ko.po +index ff8bc41..716104f 100644 +--- a/po/ko.po ++++ b/po/ko.po +@@ -12,9 +12,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-22 06:29+0000\n" ++"Last-Translator: eukim \n" + "Language-Team: Korean (http://www.transifex.com/projects/p/fedora-abrt/language/ko/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -86,7 +86,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "특정 문제에 대한 알림을 무음으로 합니다. 이 문제에 대한 알림 팝업이 표시되지 않지만, ABRT가 이를 감지하여 ABRT GUI에 보고할 수 있습니다.\n\n계속 진행하시겠습니까?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -199,19 +199,19 @@ msgstr "& [-v] [DIR]...\n\nABRT가 새로운 문제를 감지할 경우 사용 + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "디렉토리를 가져오기 전 묻습니다 " + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "자동으로 uReport를 전송합니다 " + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "단축형 보고서 " + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "자동 단축형 보고서 " + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -220,7 +220,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "코어 덤프 파일은 시간 및 공간을 많이 사용하는 작업인 스택 트레이스 생성에 필요합니다. ABRT는 코어덤프에서 스택 트레이스를 생성하는 서비스를 제공하지만 이 서비스에 코어 덤프를 업로드해야 합니다. 이 옵션을 사용하지 않으면 ABRT는 묻지 않고 코어 덤프를 업로드합니다. " + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -228,7 +228,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "ABRT는 문제 데이터를 디렉토리에 저장합니다. ABRT가 쓰기 가능한 디렉토리를 필요로 할 때 마다 디렉토리는 시스템에서 사용자의 홈 디렉토리로 이동합니다. 이 옵션을 사용하지 않으면 ABRT는 묻지 않고 문제 디렉토리를 이동합니다." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -236,45 +236,45 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "uReport는 간결하게 익명으로 문제를 설명하는 것입니다. ABRT는 uReport를 사용하여 전체 중복을 신속하게 감지합니다. 기본 설정에서 uReport는 보고 절차 시작에 전송됩니다. 이 옵션을 사용하면 문제가 감지된 후 바로 uReport가 자동으로 전송됩니다. " + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "이 옵션을 사용하면 문제 알림 팝업에 있는 보고서 버튼을 클릭하여 시작된 보고 절차가 uReport 전송 후 중단됩니다. 기본값 문제 브라우저를 사용하여 완전한 보고서를 작성할 수 있습니다." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr "이 옵션을 사용하면 ABRT는 보고된 문제에 대해 알림을 표시하지 않습니다. 단축형 보고가 유효한 경우에만 실행됩니다. " + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "coredump를 업로드하기 전 묻습니다 " + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "이 옵션을 사용하면 민감한 데이터가 감지되었을 경우 ABRT는 항상 액세스가 제한된 버그 티켓을 생성합니다." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "민감한 정보에 대해 비공개 티켓을 요청합니다 " + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "완료하지 않은 문제를 알려줍니다 " + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "컴퓨터 종료시 또는 사용자 로그 아웃 시에 완료하지 않은 문제가 감지되었습니다. 정확한 문제 보고서를 제출하기 위해 ABRT는 이러한 문제에 대해 보고 허용하지 않습니다." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -487,72 +487,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "사용법: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - 상세 설명\n -d - 업로드된 아카이브 삭제\n ABRT_SPOOL_DIR - 업로드된 유효한 아카이브가 압축 해제될 디렉토리\n UPLOAD_DIR - 업로드된 아카이브가 저장될 디렉토리\n FILENAME - 업로드된 아카이브 파일 이름 \n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "디렉토리가 아닙니다: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "생략 중: '{0}' (슬래시로 시작)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "생략 중: '{0}' (점으로 시작)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "생략 중: '{0}' (.. 포함)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "생략 중: '{0}' (공백 포함)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "생략 중: '{0}' (탭 포함)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "'{0}'로 디렉토리를 변경할 수 없습니다 " + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "알 수 없는 파일 형식: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "'{0}'에 작업 디렉토리를 생성할 수 없습니다 " + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}'을 '{1}'로 이동할 수 없습니다 " + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}'을 '{1}'에 복사할 수 없습니다 " + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "'{0}'에서 확인 오류 " + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "'{0}' 압축 해제 중 " + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "'{0}' 디렉토리를 생성할 수 없습니다 " + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "'{0}'을 압축 해제할 수 없습니다 " + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}'이 성공적으로 처리되었습니다 " + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -632,21 +632,21 @@ msgstr "& [-v] -d DIR\n\n문제 디렉토리 DIR에 있는 코어 덤프의 UUID + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "코어 덤프 '%s' 분석 중 " + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "빌드 ID가 누락되어 있습니다: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "사용법: %s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREFILE이 지정되어 있지 않습니다 " + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -700,7 +700,7 @@ msgstr "oops 메세지를 추출할 수 없습니다: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Oops 텍스트가 성공적으로 추출되었습니다 " + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -836,37 +836,37 @@ msgstr "디렉토리 내에 있는 파일 삭제 " + msgid "Preserve this directory" + msgstr "이 디렉토리를 보관합니다 " + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "'%s'를 시작할 수 없습니다. 오류 메세지: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "파일 '%s'에 번호가 없습니다 " + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "사용법: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "현재 작업하고 있는 디렉토리는 삭제되어 가져올 수 없습니다 " + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "이 문제에 대한 버그가 이미 작성되어 있습니다:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport가 이미 전송되어 있기때문에 다시 전송되지 않습니다 " + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport는 종료 코드 %d로 실패했습니다 " + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1060,7 +1060,7 @@ msgstr "검색 문자열을 표준 출력에 인쇄하고 종료 " + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "regex 컴파일에 실패했습니다 " + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1644,7 +1644,7 @@ msgstr "사용법: abrt-cli [--version] COMMAND [DIR]... " + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr " [in DIRs]에 문제 나열 " + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1664,7 +1664,7 @@ msgstr "최근 충돌 횟수를 출력" + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "여러 문제 처리 " + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1730,42 +1730,42 @@ msgstr "ABRT에 의해 '%u' 건의 문제가 발견되었습니다. (다음을 + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [options] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "보고 후 PROBLEM_DIR 삭제 " + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "'%s' 삭제 중 " + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "동작: 삭제(rm), 정보(i), 생략(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "동작: 삭제(rm), 보고 (e), 정보(i), 생략(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "'%s' 보고 중 " + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "다음 문제로 이동하려면 ENTER를 누릅니다: " + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "--since 인수가 없으면 감지된 모든 문제를 반복합니다 " + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "타임 스탬프 후 감지된 문제만 선택합니다 " + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/ks.po b/po/ks.po +index 4a9600c..939d388 100644 +--- a/po/ks.po ++++ b/po/ks.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Kashmiri (http://www.transifex.com/projects/p/fedora-abrt/language/ks/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/ku.po b/po/ku.po +index 5b7bce1..9e6259b 100644 +--- a/po/ku.po ++++ b/po/ku.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Kurdish (http://www.transifex.com/projects/p/fedora-abrt/language/ku/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/ky.po b/po/ky.po +index 32b2a71..9633879 100644 +--- a/po/ky.po ++++ b/po/ky.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Kirgyz (http://www.transifex.com/projects/p/fedora-abrt/language/ky/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/la.po b/po/la.po +index cf8f549..57d3157 100644 +--- a/po/la.po ++++ b/po/la.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Latin (http://www.transifex.com/projects/p/fedora-abrt/language/la/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/lo.po b/po/lo.po +index 85f92ad..8c1683e 100644 +--- a/po/lo.po ++++ b/po/lo.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Lao (http://www.transifex.com/projects/p/fedora-abrt/language/lo/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/lt.po b/po/lt.po +index 318aa8a..0bcfa58 100644 +--- a/po/lt.po ++++ b/po/lt.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Lithuanian (http://www.transifex.com/projects/p/fedora-abrt/language/lt/)\n" +@@ -696,7 +696,7 @@ 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 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "Ištrinti failus šiame kataloge" + msgid "Preserve this directory" + msgstr "Palikti šį katalogą" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/lv.po b/po/lv.po +index 257af23..6da4946 100644 +--- a/po/lv.po ++++ b/po/lv.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Latvian (http://www.transifex.com/projects/p/fedora-abrt/language/lv/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "Izdzēst datnes šajā direktorijā" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/mai.po b/po/mai.po +index c84ded2..581a885 100644 +--- a/po/mai.po ++++ b/po/mai.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Maithili (http://www.transifex.com/projects/p/fedora-abrt/language/mai/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/mg.po b/po/mg.po +index 0049921..71cb06b 100644 +--- a/po/mg.po ++++ b/po/mg.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Malagasy (http://www.transifex.com/projects/p/fedora-abrt/language/mg/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/mk.po b/po/mk.po +index 664416c..994e13f 100644 +--- a/po/mk.po ++++ b/po/mk.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Macedonian (http://www.transifex.com/projects/p/fedora-abrt/language/mk/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/ml.po b/po/ml.po +index abecda0..d651941 100644 +--- a/po/ml.po ++++ b/po/ml.po +@@ -9,9 +9,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-20 11:40+0000\n" ++"Last-Translator: Ani Peter \n" + "Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora-abrt/language/ml/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -83,7 +83,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "ഒരു പ്രത്യേക പ്രശ്നത്തിന്റെ അറിയിപ്പുകള്‍ നിങ്ങള്‍ നിശബ്ദമാക്കുവാന്‍ പോകുന്നു. ഈ പ്രശ്നത്തിനു് ഇനി ഒരിക്കലും കുമിള അറിയിപ്പ് ലഭ്യമാകുകയില്ല. എന്നിരുന്നാലും, എബിആര്‍ടി ഇതു് കണ്ടുപിടിച്ച്, നിങ്ങള്‍ക്ക് എബിആര്‍ടി ജിയുഐയില്‍ നിന്നും രേഖപ്പെടുത്താം.\n\nനിങ്ങള്‍ക്ക് തുടരണമോ?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -196,19 +196,19 @@ msgstr "& [-v] [DIR]...\n\nപുതിയ പ്രശ്നങ്ങള്‍ + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "ഡയറക്ടറി കരസ്ഥമാക്കുന്നതിനുള്ള മുമ്പ് ചോദിയ്ക്കുക" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "സ്വയമായി uReport അയയ്ക്കുക" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "ചെറിയ രീതിയിലുള്ള റിപോര്‍ട്ടിങ്" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "നിശബ്ദമായ ചെറിയ റിപോര്‍ട്ടിങ്" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -217,7 +217,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "സ്റ്റാക്ക് ട്രെയിസ് ലഭ്യമാക്കുന്നതിന് കോര്‍ഡമ്പ് ഫയല്‍ ആവശ്യമാണു്. ഇതിനു് അധികമായ സമയവും സ്ഥലവും ആവശ്യമാണു്. കോര്‍ഡമ്പില്‍ നിന്നും സ്റ്റാക്ക് ട്രെയിസ് ലഭ്യമാക്കുന്നതിനുള്ള സേവനം എബിആര്‍ടി ലഭ്യമാക്കുന്നു, പക്ഷേ ഇതിനായി നിങ്ങള്‍ കോര്‍ഡമ്പ് അപ്‌ലോഡ് ചെയ്യണം. ഈ ഐച്ഛികം പ്രവര്‍ത്തന രഹിതമാക്കിയാല്‍, ഒരു ചോദ്യങ്ങളുമില്ലാതെ എബിആര്‍ടി കോര്‍ഡമ്പ് അപ്‌ലോ‍ഡ് ചെയ്യുന്നു." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -225,7 +225,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "പ്രശ്നമുള്ള ഡേറ്റാ എബിആര്‍ടി ഡയറക്ടറികളില്‍ സൂക്ഷിയ്ക്കുന്നു. എഴുതേണ്ട ഡയറക്ടറി എബിആര്‍ടിയ്ക്ക് ആവശ്യമുള്ളപ്പോള്‍, സിസ്റ്റത്തിലുള്ള സ്ഥാനത്ത് നിന്നും ഡയറക്ടറി ആസ്ഥാനത്തിലേക്ക് നീക്കുന്നു. ഈ ഐച്ഛികം പ്രവര്‍ത്തന രഹിതമാക്കുമ്പോള്‍, ചോദ്യങ്ങളില്ലാതെ എബിആര്‍ടി പ്രശ്നമുള്ള ഡയറക്ടറി നീക്കുന്നു." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -233,45 +233,45 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "ഒരു പ്രശ്നത്തെപ്പറ്റിയുള്ള ചെറിയതും അപരിചിതവുമായ വിവരണമാണു് uReport. ആയാസത്തിലുള്ള കണ്ടുപിടിത്തതിനായി എബിആര്‍ടി uReports ഉപയോഗിയ്ക്കുന്നു. സ്വതവേ, രേഖപ്പെടുത്തുമ്പോള്‍ തന്നെ uReport അയയ്ക്കുന്നു. ഇതു് പ്രവര്‍ത്തന രഹിതമാക്കുമ്പോള്‍, uReports സ്വയമായി അയയ്ക്കപ്പെടുന്നു." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "ഈ ഐച്ഛികം പ്രവര്‍ത്തന സജ്ജമെങ്കില്‍, പ്രശ്നം അറിയിക്കുന്നതിനുള്ള കുമിളയിലുള്ള റിപോര്‍ട്ട് ബട്ടണ്‍ ക്ലിക്ക ചെയ്ത് പ്രശ്നം രേഖപ്പെടുത്തുന്നതു്, uReport അയച്ച ശേഷം തടസ്സപ്പെടുന്നു. പൂര്‍ണ്ണമായ റിപോര്‍ട്ട് തയ്യാറാക്കുന്നതിനു് സ്വതവേയുള്ള പ്രശ്നങ്ങള്‍ക്കുള്ള ബ്രൌസര്‍ ഉപയോഗിയ്ക്കാം." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr "ഈ ഐച്ഛികം പ്രവര്‍ത്തന സജ്ജമെങ്കില്‍, രേഖപ്പെടുത്തിയ പ്രശ്നങ്ങള്‍ക്കുള്ള അറിയിപ്പ് എബിആര്‍ടി ഒരിക്കലും കാണിക്കില്ല. ലഘുവായി രേഖപ്പെടുത്തുന്നത് സജ്ജമെങ്കില്‍ മാത്രം ഇതു് പ്രാഭല്യത്തിലാകുന്നു." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "coredump അപ്‌ലോഡ് ചെയ്യുന്നതിന് മുമ്പ് ചോദിയ്ക്കുക" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "സെന്‍സിറ്റീവ് ഡേറ്റാ ലഭ്യമായെങ്കില്‍, ഈ ഐച്ഛികം പ്രവര്‍ത്തന സജ്ജമെങ്കില്‍, എബിആര്‍ടി എപ്പോഴും ബഗ് ടിക്കറ്റ് തയ്യാറാക്കുന്നു." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "സെന്‍സിറ്റീവ് വിവരങ്ങള്‍ക്ക് സ്വകാര്യ ടിക്കറ്റ് ആവശ്യപ്പെടുക" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "പൂര്‍ണ്ണമല്ലാത്ത പ്രശ്നങ്ങള്‍ അറിയിയ്ക്കുക" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "കമ്പ്യൂട്ടര്‍ അടച്ചുപൂട്ടുമ്പോള്‍ അല്ലെങ്കില്‍ ഉപയോക്താവ് പുറത്ത് കടക്കുമ്പോള്‍ പൂര്‍ത്തിയാകാത്ത പ്രശ്നങ്ങള്‍ ലഭ്യമാകുന്നു. ഉചിതമായ റിപോര്‍ട്ടുകള്‍ ലഭ്യമാക്കുന്നതിനു്, എബിആര്‍ടി ഇവ രേഖപ്പെടുത്തുവാന്‍ അനുവദിക്കുകയില്ല." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -484,72 +484,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "ഉപയോഗിയ്ക്കേണ്ട വിധം: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - വെര്‍ബോസ്\n -d - അപ്‌ലോഡ് ചെയ്ത ആര്‍ക്കൈവ് വെട്ടി നീക്കുക\n ABRT_SPOOL_DIR - അപ്‌ലോഡ് ചെയ്ത ഉചിതമായ ആര്‍ക്കൈവുകള്‍ തുറന്നിടുന്ന ഡയറക്ടറി\n UPLOAD_DIR - അപ്‌ലോഡ് ചെയ്ത ഡയറക്ടറികള്‍ സൂക്ഷിയ്ക്കുന്ന ഡയറക്ടറി\n FILENAME - അപ്‌ലോഡ് ചെയ്ത് ആര്‍ക്കൈവ് ഫയല്‍ നാമം.\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "ഡയറക്ടറിയല്ല: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (സ്ലാഷില്‍ ആരംഭിയ്ക്കുന്നു)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (കുത്തില്‍ ആരംഭിയ്ക്കുന്നു)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (.. അടങ്ങുന്നു)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (സ്പെയിസ് അടങ്ങുന്നു)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (ടാബ് അടങ്ങുന്നു)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "ഡയറക്ടറിയെ '{0}'-ലേക്ക് മാറ്റുവാന്‍ സാധ്യമല്ല" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "അപരിചിതമായ ഫയല്‍ രീതി: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "'{0}'-ല്‍ പ്രവര്‍ത്തനത്തിലുള്ള ഡയറക്ടറി തയ്യാറാക്കുവാന്‍ സാധ്യമല്ല" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}'-നെ '{1}'-ലേക്ക് നീക്കുവാന്‍ സാധ്യമല്ല" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}'-നെ '{1}'-ലേക്ക് നീക്കുവാന്‍ സാധ്യമല്ല" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "'{0}'-ല്‍ ഉറപ്പാക്കുന്നതില്‍ പിശക്" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "'{0}' തുറക്കുന്നു" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "'{0}' ഡയറക്ടറി തയ്യാറാക്കുവാന്‍ സാധ്യമല്ല" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "'{0}' തുറക്കുവാന്‍ സാധ്യമല്ല" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' വിജയകരമായി നടപ്പിലാക്കി" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -629,21 +629,21 @@ msgstr "& [-v] -d DIR\n\nപ്രശ്നമുള്ള ഡയറക്ടറ + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "'%s' കോര്‍ഡംപ് നിരീക്ഷിയ്ക്കുന്നു" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "ബിള്‍ഡ് ഐഡി ലഭ്യമല്ല: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "ഉപയോഗിയ്ക്കേണ്ട വിധം: %s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREFILE നല്‍കിയിട്ടില്ല" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -697,7 +697,7 @@ msgstr "oops സന്ദേശം ലഭ്യമാക്കുവാനായ + msgid "Oops text extracted successfully" + msgstr "Oops വാചകം വിജയകരമായി ലഭ്യമാക്കി" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -833,37 +833,37 @@ msgstr "ഈ ഡയറക്ടറിയിലുള്ള ഫയലുകള് + msgid "Preserve this directory" + msgstr "ഈ ഡയറക്ടറി സൂക്ഷിയ്ക്കുക" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "'%s' ആരംഭിയ്ക്കുവാന്‍ സാധ്യമല്ല, പിശക് സന്ദേശം: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "'%s' ഫയലിലുള്ള നംബറല്ല" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "ഉപയോഗിയ്ക്കേണ്ട വിധം: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "നിലവില്‍ പ്രവര്‍ത്തനത്തിലുള്ള ഡയറക്ടറി വെട്ടി നീക്കിയതിനാല്‍ ലഭ്യമല്ല." + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "ഈ പ്രശ്നത്തെപ്പറ്റി ഒരു ബഗ് നിലവില്‍ രേഖപ്പെടുത്തിയിട്ടുണ്ട്:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport അയച്ചു, ഇനി അയയ്ക്കുന്നില്ല" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport %d എന്ന കോഡുമായി പരാജയപ്പെട്ടു പുറത്തു് കടന്നു" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1057,7 +1057,7 @@ msgstr "stdout-ലേക്കു് തെരയുന്ന സ്ട്രി + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "regex കംപൈല്‍ ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1641,7 +1641,7 @@ msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "പ്രശ്നങ്ങള്‍ ലഭ്യമാക്കുക [DIR-കളില്‍]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1661,7 +1661,7 @@ msgstr "പുതിയ തകരാറുകളുടെ എണ്ണം പ് + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "അനവധി പ്രശ്നങ്ങള്‍ നടപ്പിലാക്കുക" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1727,42 +1727,42 @@ msgstr "എബിആര്‍റ്റി %u പ്രശ്നങ്ങള് + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [options] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "രേഖപ്പെടുത്തിയ ശേഷം PROBLEM_DIR നീക്കം ചെയ്യുക" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "'%s' വെട്ടി നീക്കുന്നു" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "പ്രവര്‍ത്തികള്‍: remove(rm), info(i), skip(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "പ്രവര്‍ത്തികള്‍: remove(rm), report(e), info(i), skip(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "'%s' രേഖപ്പെടുത്തുന്നു" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "അടുത്ത പ്രശ്നത്തിന് ENTER അമര്‍ത്തുക:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "--since ആര്‍ഗ്യുമെന്റില്ലാതെ, ലഭ്യമായ പ്രശ്നങ്ങളിലെല്ലാം ആവര്‍ത്തിയ്ക്കുന്നു." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "ടൈംസ്റ്റാബിനു് ശേഷം ലഭിച്ച പ്രശ്നങ്ങള്‍ മാത്രം തെരഞ്ഞെടുക്കുന്നു" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/mn.po b/po/mn.po +index 13ef42f..35e11cf 100644 +--- a/po/mn.po ++++ b/po/mn.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Mongolian (http://www.transifex.com/projects/p/fedora-abrt/language/mn/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/mr.po b/po/mr.po +index 201ba1b..be9fa83 100644 +--- a/po/mr.po ++++ b/po/mr.po +@@ -9,9 +9,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-16 05:25+0000\n" ++"Last-Translator: sandeeps \n" + "Language-Team: Marathi (http://www.transifex.com/projects/p/fedora-abrt/language/mr/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -83,7 +83,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "ठराविक अडचणींच्या सूचना तुम्ही बंद करणार आहात. या अडचणीकरिता तुम्हाला सूचना पटल पुन्हा आढळणार नाही, तरी, ABRT ला ते आढळेल आणि त्यास ABRT GUI मार्फत कळविणे शक्य होईल.\n\nतुम्हाला पुढे जायचे?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -256,7 +256,7 @@ msgstr "कोरडम्प अपलोड करण्यापूर्व + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr " हा पर्याय सुरू करून संवेदनशील डाटा आढळल्यास, ABRT नेहमी प्रतिबंधीत प्रवेशसह बग तिकिट निर्माण करेल." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -484,72 +484,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "वापर: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - मजकूर\n -d - अपलोड केलेले आर्काइव्ह नष्ट करा\n ABRT_SPOOL_DIR - डिरेक्ट्री जेथे वैध अपलोड केलेल्या आर्काइव्हज खुले केले जातात\n UPLOAD_DIR - अपलोड केलेले आर्काइव्ह जेथे साठविले जातात ती डिरेक्ट्री\n FILENAME - आर्काइव्ह फाइल नाव अपलोड केले\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "डिरेक्ट्री नाही: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "वगळत आहे: '{0}' (स्लॅशपासून सुरू होते)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "वगळत आहे: '{0}' (डॉटपासून सुरू होते)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "वगळत आहे: '{0}' (समाविष्टीत आहे ..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "वगळत आहे: '{0}' (स्पेस समाविष्टीत आहे)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "वगळत आहे: '{0}' (टॅब समाविष्टीत आहे)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "'{0}' करिता डिरेक्ट्री बदलणे अशक्य" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "अपरिचीत फाइल प्रकार: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "'{0}' मध्ये कार्यरत डिरेक्ट्री निर्माण करणे अशक्य" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' ला '{1}' करिता हलविणे अशक्य" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' चे '{1}' मध्ये प्रत करणे अशक्य" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "'{0}' वरील तापसणी त्रुटी" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "'{0}' खुले करत आहे" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "'{0}' डिरेक्ट्रीचे निर्माण अशक्य" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "'{0}' खुले करणे अशक्य" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' यशस्वीरित्या विश्लेषणीत केले" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -697,7 +697,7 @@ msgstr "ऊप्स संदेश: '{0}' प्राप्ति अशक + msgid "Oops text extracted successfully" + msgstr "ऊप्स मजकूर यशस्वीरित्या प्राप्त केले" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -833,37 +833,37 @@ msgstr "या डिरेक्ट्रिजीत फाइल्स् न + msgid "Preserve this directory" + msgstr "हि डिरेक्ट्री जपवून ठेवतो" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "'%s' सुरू करणे अशक्य, त्रुटी संदेश: '%s' होते" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "फाइल '%s' अंतर्गत संख्या नाही" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "वापर: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "आत्ताची कार्यरत डिरेक्ट्री नष्ट झाल्यामुळे, त्याची प्राप्ति अशक्य" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "या अडचणीविषयी आधीपासूनच बग फाइल केले गेले:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport आधीपासूनच पाठविले गेले, पुन्हा पाठवणार नाही" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "एक्जिट कोड %d सह reporter-ureport अपयशी" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1057,7 +1057,7 @@ msgstr "stdout करीता सर्च स्ट्रिंग्स्च + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "रेगेक्स कंपाइल करण्यास अपयशी" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1641,7 +1641,7 @@ msgstr "वापर: abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "अडचणींची सूची दाखवा [DIRs मध्ये]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1661,7 +1661,7 @@ msgstr "नुकतेच क्रॅशच्या प्रमाणची + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "बहु अडणी विश्लेषीत करा" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1727,42 +1727,42 @@ msgstr "ABRTला %u अडचणी आढळले. अधिक माहि + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [पर्याय] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "कळविल्यानंतर PROBLEM_DIR काढून टाका" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "'%s' नष्ट करणे" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "कृती: remove(rm), info(i), skip(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "कृती: remove(rm), report(e), info(i), skip(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "'%s' कळविणे" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "पुढील अडचणीकरिता ENTER दाबा:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "--since बाबविना, सर्व आढळलेल्या अडचणींची पुनराकृती करते." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "फक्त टाइमस्टॅम्पनंतर आढळलेल्या अडचणींनाच पसंत करते" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/ms.po b/po/ms.po +index 9dab4f2..e891e31 100644 +--- a/po/ms.po ++++ b/po/ms.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Malay (http://www.transifex.com/projects/p/fedora-abrt/language/ms/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/my.po b/po/my.po +index cfef994..f461082 100644 +--- a/po/my.po ++++ b/po/my.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Burmese (http://www.transifex.com/projects/p/fedora-abrt/language/my/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/nb.po b/po/nb.po +index e7bebad..8c080e3 100644 +--- a/po/nb.po ++++ b/po/nb.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/fedora-abrt/language/nb/)\n" +@@ -697,7 +697,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -833,34 +833,34 @@ msgstr "Slett filer i denne katalogen" + msgid "Preserve this directory" + msgstr "Reserver denne katalogen" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/nds.po b/po/nds.po +index 80aca3e..65ade14 100644 +--- a/po/nds.po ++++ b/po/nds.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Low German (http://www.transifex.com/projects/p/fedora-abrt/language/nds/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/ne.po b/po/ne.po +index 49176d8..ab4aa15 100644 +--- a/po/ne.po ++++ b/po/ne.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Nepali (http://www.transifex.com/projects/p/fedora-abrt/language/ne/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/nl.po b/po/nl.po +index a52e46a..1f32319 100644 +--- a/po/nl.po ++++ b/po/nl.po +@@ -10,9 +10,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-22 12:26+0000\n" ++"Last-Translator: Geert Warrink \n" + "Language-Team: Dutch (http://www.transifex.com/projects/p/fedora-abrt/language/nl/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -84,7 +84,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "Je gaat de notificaties van een bepaald probleem tot zwijgen brengen. Je zult nooit meer een notificatie bubbel voor dit probleem zien, ABRT zal het echter detecteren en je kunt het rapporteren vanuit de ABRT GUI.\n\nWil je verdergaan?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -257,7 +257,7 @@ msgstr "Vraag voordat een coredump geüpload wordt " + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr " Als deze optie aangezet is, zal ABRT altijd een bug ticket aanmaken met beperkte toegang als mogelijk gevoelige data ontdekt is." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -485,72 +485,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "Gebruik: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR BESTANDSNAAM\n\n -v - Breedsprakig\n -d - Verwijder het opgestuurde archief\n ABRT_SPOOL_DIR - Map waarin geldige opgestuurde archieven uitgepakt worden\n UPLOAD_DIR - Map waarin opgestuurde archieven opgeslagen worden\n FILENAME - Bestandsnaam van opgestuurde archief\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Geen map: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Overslaan: '{0}' (begint met een slash)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Overslaan: '{0}' (begint met een punt)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Overslaan: '{0}' (bevat ..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Overslaan: '{0}' (bevat een spatie)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Overslaan: '{0}' (bevat een tab)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Kan niet map niet veranderen naar '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Onbekend bestandstype: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "Kan geen werkmap aanmaken in '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "Kan '{0}' niet verplaatsen naar '{1}'" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "Kan '{0}' niet kopieren naar '{1}'" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "Verificatiefout op '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "Uitpakken van '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "Kan '{0}' map niet aanmaken" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "Kan '{0}' niet uitpakken" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' is met succes verwerkt" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -698,7 +698,7 @@ 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 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -834,37 +834,37 @@ msgstr "Verwijder bestanden in deze map" + msgid "Preserve this directory" + msgstr "Deze map behouden" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "Kan '%s' niet opstarten, foutboodschap was: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "Geen nummer in bestand '%s'" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Gebruik: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "Kan huidige werkmap niet verkrijgen omdat het waarschijnlijk verwijderd is" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "Er is over dit probleem al een bug opgeslagen:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport werd al verstuurd, wordt niet opnieuw verstuurd" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport faalde met exitcode %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1058,7 +1058,7 @@ msgstr "Print zoekstring(s) naar stdout en sluit af" + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "Compileren van regex mislukte" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1642,7 +1642,7 @@ msgstr "Gebruik: abrt-cli [--version] COMMANDO [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "Toon problemen [in MAPpen]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1662,7 +1662,7 @@ msgstr "Print de telling van de recente crashes" + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "Verwerken van meerdere problemen" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1728,42 +1728,42 @@ msgstr "ABRT heef %u probleem(problemen) ontdekt. Voor meer info voer je uit: ab + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [opties] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "Verwijder PROBLEM_DIR na het rapporteren" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "Verwijderen van '%s'" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Acties: remove(rm), info(i), skip(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Acties: remove(rm), report(e), info(i), skip(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "Rapporteren van '%s'" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "Duw voor het volgende probleem op ENTER:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "Zonder het --since argument, wordt over alle gedetecteerde problemen geitereerd." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "Selecteert alleen problemen die ontdekt zijn na tijdstempel" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/nn.po b/po/nn.po +index 1f778c4..90fc984 100644 +--- a/po/nn.po ++++ b/po/nn.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/fedora-abrt/language/nn/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/no.po b/po/no.po +index 2844b22..af12b43 100644 +--- a/po/no.po ++++ b/po/no.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Norwegian (http://www.transifex.com/projects/p/fedora-abrt/language/no/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/nso.po b/po/nso.po +index 7086285..89b6069 100644 +--- a/po/nso.po ++++ b/po/nso.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Northern Sotho (http://www.transifex.com/projects/p/fedora-abrt/language/nso/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/or.po b/po/or.po +index 08c3a0b..8d66300 100644 +--- a/po/or.po ++++ b/po/or.po +@@ -9,9 +9,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-20 15:02+0000\n" ++"Last-Translator: Manoj Kumar Giri \n" + "Language-Team: Oriya (http://www.transifex.com/projects/p/fedora-abrt/language/or/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -83,7 +83,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "ଆପଣ ଏକ ନିର୍ଦ୍ଦିଷ୍ଟ ସମସ୍ୟାର ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକୁ ନିରବ କରିବାକୁ ଯାଉଛନ୍ତି। ଆପଣ କଦାପି ବିଜ୍ଞପ୍ତି ବବଲକୁ ଏହି ସମସ୍ୟା ପାଇଁ ପୁଣିଥରେ ଦେଖିପାରିବେ ନାହିଁ, ତଥାପି, ABRT ଏହାକୁ ଚିହ୍ନଟ କରିବ ଏବଂ ଆପଣ ଏହାକୁ ABRT GUI ରୁ ଖବର କକରିବାରେ ସକ୍ଷମ ହେବେ।\n\nଆପଣ ଆଗକୁ ବଢ଼ିବାକୁ ଚାହୁଁଛନ୍ତି କି?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -196,19 +196,19 @@ msgstr "& [-v] [DIR]...\n\nABRT ଦ୍ଵାରା ନୂତନ ସମସ୍ଯ + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "ଡିରେକ୍ଟୋରୀ ଚୋରାଇବା ପୂର୍ବରୁ ପଚାରନ୍ତୁ" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "ସ୍ୱୟଂଚାଳିତ ଭାବରେ uReport ପଠାନ୍ତୁ" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "ଖବର କରିବାକୁ ଛୋଟ କରାଯାଇଛି" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "ନିରବରେ ଖବର କରିବାକୁ ଛୋଟ କରାଯାଇଛି" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -217,7 +217,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "କୋରଡମ୍ପ ଫାଇଲଟି ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି କରିବା ପାଇଁ ଆବଶ୍ୟକ ଯାହାକି ସମୟ ଏବଂ ସ୍ଥାନ ଆବଶ୍ୟକ କରିଥିବା ପ୍ରୟୋଗ। ABRT ଏକ ସର୍ଭିସ ପ୍ରଦାନ କରିଥାଏ ଯାହାକି କୋର ଡମ୍ପରୁ ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି କରିଥାଏ କିନ୍ତୁ ଆପଣଙ୍କୁ ଏହି ସର୍ଭିସରେ କୋର ଡମ୍ପକୁ ଧାରଣ କରିବାକୁ ହେବ। ABRT କୁ ନିଷ୍କ୍ରିୟ କରିଥିବା ଏହି ବିକଳ୍ପ ସହିତ ତାହା ନପଚାରି କୋର ଡମ୍ପକୁ ଧାରଣ କରିଥାଏ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -225,7 +225,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "ABRT ସମସ୍ୟା ତଥ୍ଯକୁ ଡିରେକ୍ଟୋରୀରେ ସମସ୍ୟା ତଥ୍ୟ ସଂରକ୍ଷଣ କରିଥାଏ। ଯେତେବେଳେ ABRT ଲିଖନଯୋଗ୍ଯ ଡିରେକ୍ଟୋରୀ ଆବଶ୍ୟକ କରିଥାଏ, ସେତେବେଳେ ଡିରେକ୍ଟୋରୀ ତନ୍ତ୍ର ଅବସ୍ଥାନରୁ ଆପଣଙ୍କର ମୂଳ ଡିରେକ୍ଟୋରୀକୁ ଘୁଞ୍ଚାଇବାରେ ସକ୍ଷମ ହୋଇଥାଏ।ଏହି ବିକଳ୍ପକୁ ନିଷ୍କ୍ରିୟ କରିବା ସହିତ ABRT ନପଚାରି ସମସ୍ୟା ଡିରେକ୍ଟୋରୀକୁ ଘୁଞ୍ଚାଇବ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -233,45 +233,45 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "uReport ଟି ସକ୍ଷିପ୍ତ ଅଟେ ଏବଂ ସମ୍ପୂର୍ଣ୍ଣ ଭାବରେ ସମସ୍ୟାର ଅଜ୍ଞାତ ବର୍ଣ୍ଣନା ଅଟେ। ABRT uReports କୁ ତୀବ୍ର ନକଲି ଚିହ୍ନଟ ପାଇଁ ବ୍ୟବହାର କରିଥାଏ। ପୂର୍ବନିର୍ଦ୍ଧାରିତ ସଂରଚନାରେ uReport କୁ ଆରମ୍ଭରେ ପଠାଯାଇଥାଏ। ଏହି ବିକଳ୍ପକୁ ସକ୍ରିୟ କରି uReports ଗୁଡ଼ିକ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ସଙ୍ଗେ ସଙ୍ଗେ ସମସ୍ୟା ଚିହ୍ନଟ ହେବା ପରେ ପଠାଯାଇଥାଏ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "ଏହି ବିକଳ୍ପକୁ ସକ୍ରିୟ କରିବା ସହିତ ଖବର କରିବା ପ୍ରକ୍ରିୟା ସମସ୍ୟା ବିଜ୍ଞପ୍ତି ବବଲରେ ଖବର କରନ୍ତୁ ବଟନକୁ କ୍ଲିକ କରି ଆରମ୍ଭ କରାଯାଇଥାଏ ଯାହାକି uReport ପଠାଇବା ପରେ ବାଧାପ୍ରାପ୍ତ ହୋଇଥାଏ।ଆପଣ ସର୍ବଦା ପୂର୍ବନିର୍ଦ୍ଧାରିତ ସମସ୍ୟା ବ୍ରାଉଜରକୁ ବିବରଣୀ ସମ୍ପୂର୍ଣ୍ଣ କରିବା ପାଇଁ ବ୍ୟବହାର କରିପାରିବେ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr "ଏହି ବିକଳ୍ପ ABRT କୁ ସକ୍ରିୟ କରିବା ଦ୍ୱାରା ତାହା କଦାପି ଖବର କରାଯାଇଥିବା ସମସ୍ୟାଗୁଡ଼ିକର ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକୁ ଦର୍ଶାଇବ ନାହିଁ। ସକ୍ଷିପ୍ତ ଖବରକାରୀ ସକ୍ରିୟ ହୋଇଥିଲେ ହିଁ କାର୍ଯ୍ଯକାରୀ ହୋଇଥାଏ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "coredump ଧାରଣ କରିବା ପୂର୍ବରୁ ପଚାରନ୍ତୁ" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "ଏହି ବିକଳ୍ପ ABRT କୁ ସକ୍ରିୟ କରିବା ସହିତ ସର୍ବଦା ସିମୀତ ଅଭିଗମ୍ୟତା ସହିତ ତୃଟି ଟିକଟ ସୃଷ୍ଟି କରିଥାଏ ଯଦି ସମ୍ଭବ ସମ୍ବେଦନଶୀଳ ତଥ୍ୟ ଚିହ୍ନଟ ହୋଇଥାଏ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "ସମ୍ବେଦନଶୀଳ ସୂଚନା ପାଇଁ ବ୍ୟକ୍ତିଗତ ଟିକଟ ଅନୁରୋଧ କରନ୍ତୁୁ" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "ଅସମ୍ପୂର୍ଣ୍ଣ ସମସ୍ୟାଗୁଡ଼ିକୁ ସୂଚାନ୍ତୁ" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "କମ୍ପୁଟର ବନ୍ଦ ହେବା ସମୟରେ ଅସମ୍ପୂର୍ଣ୍ଣ ସମସ୍ୟାଗୁଡ଼ିକୁ ଚିହ୍ନଟ କରାଯାଇଛି ଅଥବା ବ୍ୟବହାରକାରୀ ଲଗଆଉଟ ହେଉଛି। ମୂଲ୍ୟବାନ ସମସ୍ୟା ବିବରଣୀ ପ୍ରଦାନ କରିବା ପାଇଁ, ABRT ଆପଣଙ୍କୁ ଏହି ସମସ୍ୟାଗୁଡ଼ିକୁ ଦାଖଲ କରିବା ପାଇଁ ଅନୁମତି ଦେବ ନାହିଁ।" + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -484,72 +484,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "ବ୍ୟବହାର ବିଧି: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n UPLOAD_DIR - Directory where uploaded archives are stored\n FILENAME - Uploaded archive file name\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "ଗୋଟିଏ ଡିରେକ୍ଟୋରୀ ନୁହଁ: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}' (ସ୍ଲାଶ ସହିତ ଆରମ୍ଭ ହୋଇଥାଏ)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}' (ଡଟ୍‌ ସହିତ ଆରମ୍ଭ ହୋଇଥାଏ)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଧାରଣ କରିଥାଏ ..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଖାଲିସ୍ଥାନ ଧାରଣ କରିଥାଏ )" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଟ୍ୟାବ୍‌ ଧାରଣ କରିଥାଏ )" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "ଡିରୋକ୍ଟୋରୀକୁ '{0}' ଭାବରେ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "ଅଜଣା ଫାଇଲ ପ୍ରକାର: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "'{0}' ରେ କାର୍ଯ୍ୟକାରୀ ଡିରେକ୍ଟୋରୀ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' କୁ '{1}' କୁ ଘୁଞ୍ଚାଇପାରିବେ ନାହିଁ" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' କୁ '{1}' କୁ ନକଲ କରିପାରିବେ ନାହିଁ" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "'{0}' ରେ ଯାଞ୍ଚ ତୃଟି" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "'{0}' କୁ ଖୋଲୁଅଛି" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "'{0}' ଡିରେକ୍ଟୋରୀ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "'{0}' କୁ ଖୋଲିପାରିବେ ନାହିଁ" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' କୁ ସଫଳତାର ସହିତ କାର୍ଯ୍ୟକାରୀ ହୋଇଛି" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -629,21 +629,21 @@ msgstr "& [-v] -d DIR\n\nସମସ୍ୟା ଡିରେକ୍ଟୋରୀ DIR + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "କୋରଡମ୍ପ '%s' କୁ ବିଶ୍ଳେଷଣ କରୁଅଛି" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "ନିର୍ମାଣ id: %s ଅନୁପସ୍ଥିତ" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "ବ୍ଯବହାର ବିଧି: %s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREFILE ଉଲ୍ଲେଖ ହୋଇନାହିଁ" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -697,7 +697,7 @@ msgstr "oops ସନ୍ଦେଶକୁ ବାହାର କରିପାରିବ + msgid "Oops text extracted successfully" + msgstr "Oops ପାଠ୍ୟ ସଫଳତାର ସହିତ ବାହାର କରାଯାଇଛି" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -833,37 +833,37 @@ msgstr "ଏହି ଡିରେକ୍ଟୋରୀ ମଧ୍ଯରୁ ଫାଇଲ + msgid "Preserve this directory" + msgstr "ଏହି ଡିରେକ୍ଟୋରୀକୁ ସଂରକ୍ଷଣ କରନ୍ତୁ" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "'%s' କୁ ଆରମ୍ଭ କରିବାରେ ଅସମର୍ଥ, ତୃଟି ସନ୍ଦେଶଟି ହେଉଛି: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "ଫାଇଲ '%s' ରେ କୌଣସି ଫାଇଲ ନାହିଁ" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "ବ୍ଯବହାର ବିଧି: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "ପ୍ରଚଳିତ କାର୍ଯ୍ୟକାରୀ ଡିରେକ୍ଟୋରୀକୁ ପାଇବାରେ ଅସମର୍ଥ ଯେହେତୁ ଏହାକୁ ସମ୍ଭବତଃ ଅପସାରଣ କରାଯାଇଛି" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "ଏହି ସମସ୍ଯା ବିଷୟରେ ଏକ ତୃଟିକୁ ପୂର୍ବରୁ ଦାଖଲ କରାଯାଇଛି:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport କୁ ପୂର୍ବରୁ ପଠାଯାଇଛି, ଏହାକୁ ପୁଣିଥରେ ପଠାଉ ନାହିଁ" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport ପ୍ରସ୍ଥାନ ସଂକେତ %d ସହିତ ପ୍ରସ୍ଥାନ କରିଛି" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1057,7 +1057,7 @@ msgstr "stdout ରେ ସନ୍ଧାନ ବାକ୍ୟଖଣ୍ଡ(ଗୁଡ + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "regex କୁ ସଙ୍କଳନ କରିବାରେ ବିଫଳ" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1641,7 +1641,7 @@ msgstr "ବ୍ୟବହାର ବିଧି: abrt-cli [--version] COMMAND [DIR].. + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "ତାଲିକା ସମସ୍ୟା [DIRs ରେ]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1661,7 +1661,7 @@ msgstr "ନିକଟରେ ହୋଇଥିବା ନଷ୍ଟର ସଂଖ୍ୟ + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "ଏକାଧିକ ସମସ୍ୟାଗୁଡ଼ିକୁ କାର୍ଯ୍ୟକାରୀ କରନ୍ତୁ" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1727,42 +1727,42 @@ msgstr "ABRT %u ସମସ୍ୟା(ଗୁଡ଼ିକୁ) ଚିହ୍ନଟ କ + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& ବିବରଣୀ [options] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "ଖବର କରିସାରିବା ପରେ PROBLEM_DIR କୁ ବାହାର କରନ୍ତୁ" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "'%s' କୁ ଅପସାରଣ କରୁଅଛି" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "କାର୍ଯ୍ୟ: (rm), info(i), skip(s) କୁ କାଢ଼ନ୍ତୁ:" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "କାର୍ଯ୍ୟ: (rm),report(e), info(i), skip(s) କୁ କାଢ଼ନ୍ତୁ:" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "'%s' କୁ ଖବର କରା ସରିଛି" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "ପରବର୍ତ୍ତୀ ସମସ୍ୟା ପାଇଁ ENTER ଦବାନ୍ତୁ:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "--since ସ୍ୱତନ୍ତ୍ରଚର ବିନା, ସମସ୍ତ ଚିହ୍ନଟ ସମସ୍ୟାଗୁଡ଼ିକ ଉପରେ ବିଶ୍ଳେଷଣ କରନ୍ତୁ।" + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "କେବଳ timestamp ପରେ ଥିବା ସମସ୍ୟାଗୁଡ଼ିକୁ ବାଛନ୍ତୁ" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/pa.po b/po/pa.po +index b11efab..379cea0 100644 +--- a/po/pa.po ++++ b/po/pa.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/fedora-abrt/language/pa/)\n" +@@ -698,7 +698,7 @@ msgstr "oops ਸੁਨੇਹੇ ਨੂੰ ਨਿਖੇੜ ਨਹੀਂ ਸਕਦ + msgid "Oops text extracted successfully" + msgstr "Oops ਸਫਲਤਾਪੂਰਵਕ ਨਿਖੇੜਿਆ ਗਿਆ" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -834,34 +834,34 @@ msgstr "ਇਸ ਡਾਇਰੈਕਟਰੀਆਂ ਵਿਚਲੀਆਂ ਫਾਇ + msgid "Preserve this directory" + msgstr "ਇਹ ਡਾਇਰੈਕਟਰੀ ਨੂੰ ਬਰਕਰਾਰ ਰੱਖੋ" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/pl.po b/po/pl.po +index c2861a4..b7f3272 100644 +--- a/po/pl.po ++++ b/po/pl.po +@@ -9,9 +9,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-03 13:29+0000\n" ++"Last-Translator: Piotr Drąg \n" + "Language-Team: Polish (http://www.transifex.com/projects/p/fedora-abrt/language/pl/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -83,7 +83,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "Zostaną wyciszone powiadomienia o konkretnym problemie. Nie będą one już wyświetlane, ale program ABRT będzie nadal wykrywał ten problem, i będzie można go zgłosić z interfejsu programu.\n\nKontynuować?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -697,7 +697,7 @@ 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 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -833,34 +833,34 @@ msgstr "Usuwa pliki wewnątrz tego katalogu" + msgid "Preserve this directory" + msgstr "Zachowuje ten katalog" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "Nie można uruchomić \"%s\", komunikat błędu: \"%s\"" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "Nie jest liczbą w \"%s\"" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "Użycie: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "Nie można uzyskać bieżącego katalogu roboczego, ponieważ został prawdopodobnie usunięty" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "Ten błąd został już zgłoszony:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "Już wysłano uReport, kolejny nie zostanie wysłany" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "reporter-ureport się nie powiodło z kodem wyjścia %d" +@@ -1661,7 +1661,7 @@ msgstr "Wyświetla liczbę ostatnich awarii" + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "Przetwarza wiele problemów" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1740,29 +1740,29 @@ msgstr "Usuwanie \"%s\"" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Działania: usuń (rm), informacje (i), pomiń (s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Działania: usuń (rm), zgłoś (e), informacje (i), pomiń (s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "Zgłaszanie \"%s\"" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "Aby przejść do następnego problemu, proszę nacisnąć klawisz Enter:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "Bez parametru --since przejdzie przez wszystkie wykryte problemy." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "Wybiera tylko problemy wykryte po podanym czasie" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/pt.po b/po/pt.po +index 0470cd2..8c77cda 100644 +--- a/po/pt.po ++++ b/po/pt.po +@@ -16,7 +16,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora-abrt/language/pt/)\n" +@@ -704,7 +704,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -840,34 +840,34 @@ msgstr "Remover ficheiros dentro deste directório" + msgid "Preserve this directory" + msgstr "Preservar este directório" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/pt_BR.po b/po/pt_BR.po +index b380830..2670756 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -7,9 +7,12 @@ + # ataliba , 2012 + # Cleiton Lima , 2011,2013 + # cleitonlima , 2011 ++# Cleiton Lima , 2011,2013 + # Glaucia Freitas , 2012,2014 + # Jiří Moskovčák , 2011 + # jonataszv , 2014 ++# jonataszv , 2014 ++# Juranir dos Santos , 2013 + # Juranir dos Santos , 2013 + # Marcel, 2013 + # Marcos Lauande , 2012 +@@ -23,9 +26,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-27 01:39+0000\n" ++"Last-Translator: Glaucia Freitas \n" + "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/fedora-abrt/language/pt_BR/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -97,7 +100,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "Você irá sileinciar as notificações de um problema específico. Você não verá mais notificações para este problema novamente, no entanto, o ABRT irá detectar as notificações e você poderá reportá-las a partir do ABRT GUI.\n\nVocê deseja continuar?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -270,7 +273,7 @@ msgstr "Pergunte antes de fazer o upload do coredump" + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr " Com esta opção, o ABRT habilitado sempre cria um tiquete de erro com acesso restrito caso dados sensíveis forem possivelmente detectados." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -498,72 +501,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n UPLOAD_DIR - Directory where uploaded archives are stored\n FILENAME - Uploaded archive file name\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Não é um diretório: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Pulando: '{0}' (começa com a barra)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Pulando: '{0}' (começa com o ponto)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Pulando: '{0}' (contém ..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Pulando: '{0}' (contém espaço)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Pulando: '{0}' (contém aba)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Não foi possível modificar o diretóri para '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Tipo de arquivo desconhecido: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "Não foi possível criar o diretório em funcionamento no '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "Não foi possível mover '{0}' para '{1}'" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "Não foi possível copiar '{0}' para '{1}'" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "Erro de verificação no '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "Desempacotando '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "Não foi possível criar o diretório '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "Não foi possível desempacotar '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' processado com sucesso" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -711,7 +714,7 @@ msgstr "Não foi possível extrair a mensagem do oops: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Texto do oops extraído com sucesso" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -847,37 +850,37 @@ msgstr "Remova arquivos de dentro deste diretório" + msgid "Preserve this directory" + msgstr "Preservar este diretório" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "Não foi possível iniciar '%s', mensagem de erro era: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "Não existe um número no arquivo '%s'" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Uso: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "Não foi possível obter diretório atual em funcionamento pois pode ter sido removido" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "Já foi arquivado um erro sobre este problema:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport já foi enviado, não será enviado novamente" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "o reporter-ureport falhou com o código de saída %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1071,7 +1074,7 @@ msgstr "Imprima a(s) faixa(s) de busca no stdout e saia" + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "Falha ao compilar o regex" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1655,7 +1658,7 @@ msgstr "Uso: abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "Listar problemas [in DIRs]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1675,7 +1678,7 @@ msgstr "Mostrar a contagem das quebras recentes" + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "Processar problemas múltiplos" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1741,42 +1744,42 @@ msgstr "ABRT detectou %u problema(s). Para mais informações execute: abrt-cli + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& relatório [opções] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "Remover PROBLEM_DIR após relatar" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "Removendo '%s'" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Ações: remover (rm), info(i), skip(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Acões: remove(rm), report(e), info(i), skip(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "Reportando '%s'" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "Para o próximo problema, pressione ENTER:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "Sem o argumento --since, itera em todos os problemas detectados." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "Seleciona somente problemas detectados após o timestamp" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/ro.po b/po/ro.po +index badc1d1..4881bff 100644 +--- a/po/ro.po ++++ b/po/ro.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Romanian (http://www.transifex.com/projects/p/fedora-abrt/language/ro/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/ru.po b/po/ru.po +index 30d8367..e1073b6 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -16,9 +16,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-22 10:36+0000\n" ++"Last-Translator: Yulia \n" + "Language-Team: Russian (http://www.transifex.com/projects/p/fedora-abrt/language/ru/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -90,7 +90,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "Вы собираетесь отключить уведомления для определенной проблемы. Соответствующие всплывающие сообщения больше не будут появляться, но вы сможете создать отчет об ошибке в графическом режиме ABRT.\n\nПродолжить?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -154,7 +154,7 @@ msgstr "Отчет о неполадке уже отправлен" + + #: ../src/applet/applet.c:1018 + msgid "A New Problem has Occurred" +-msgstr "Произошла проблема" ++msgstr "Обнаружена проблема" + + #: ../src/applet/applet.c:1028 + #, c-format +@@ -203,7 +203,7 @@ msgstr "& [-v] [DIR]...\n\nМодуль оповещения о неполадк + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Спрашивать перед перехватом каталога" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +@@ -211,11 +211,11 @@ msgstr "Автоматически отправлять uReport" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "Сокращенный отчет" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "Сокращенный отчет без подтверждения" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -224,7 +224,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "Файл дампа памяти нужен для создания трассировки стека. На эту операцию требуется достаточно много времени и места. ABRT предоставляет службу создания трассировки стека из предварительно загруженного дампа памяти. Если этот параметр выключен, ABRT будет отправлять дамп без подтверждения." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -232,7 +232,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "ABRT хранит данные о сбоях в каталогах. Когда ABRT потребуется осуществить запись в каталог, он будет перемещен в вашу домашнюю папку. Если этот параметр выключен, ABRT переместит каталог с данными сбоя без подтверждения." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -240,45 +240,45 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "uReport содержит краткое и полностью анонимное описание проблемы. ABRT использует отчеты uReport для быстрого обнаружения дубликатов. В стандартной конфигурации uReport отправляется в начале процесса формирования отчетности. Если этот параметр включен, отчеты uReport отправляются автоматически сразу после обнаружения проблемы." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "Если этот параметр включен, процесс создания отчета, запущенный нажатием кнопки «Отчет» во всплывающем сообщении о сбое, будет прерван после отправления отчета uReport. Для создания полного отчета можно воспользоваться стандартным средством просмотра проблем." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr "Если этот параметр включен, ABRT не будет показывать уведомления о сообщенных проблемах. Действует, только если включен сокращенный формат отчетов." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "Спрашивать перед выгрузкой дампа памяти" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "Если этот параметр включен, ABRT будет создавать отчет об ошибке с ограниченным доступом, если обнаружена вероятность попадания в отчет конфиденциальных данных." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "Запросить доступ к закрытому билету с конфиденциальными данными" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Уведомлять о неполных данных по проблеме" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "Обнаружены неполные данные об ошибках вследствие выключения компьютера или выхода пользователя из системы. С целью обеспечения содержательности отчетов ABRT не отправит отчет об этих ошибках." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -491,72 +491,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "Формат: %s [-vd] ВРЕМЕННЫЙ_КАТАЛОГ КАТАЛОГ_ПОЛУЧАТЕЛЬ ФАЙЛ\n\n -v - подробный вывод\n -d - удалить архив после отправки\n ВРЕМЕННЫЙ_КАТАЛОГ - каталог, в который будут распакованы архивы\n КАТАЛОГ_ПОЛУЧАТЕЛЬ - каталог, в котором будут размещаться полученные архивы\n ФАЙЛ - имя файла отправляемого архива\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Не является каталогом: «{0}»." + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Пропускается: «{0}» (начинается с косой черты)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Пропускается: «{0}» (начинается с точки)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Пропускается: «{0}» (содержит ..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Пропускается: «{0}» (содержит пробел)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Пропускается: «{0}» (содержит знак табуляции)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Не удалось изменить каталог на «{0}»" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Неизвестный тип файла: «{0}»" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "Не удалось создать рабочий каталог в «{0}»" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "Не удалось переместить «{0}» в «{1}»" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "Не удалось скопировать «{0}» в «{1}»" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "Ошибка проверки «{0}»" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "Распаковка «{0}»" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "Не удалось создать каталог «{0}»" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "Не удалось распаковать «{0}»" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "«{0}» обработан успешно" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -636,21 +636,21 @@ msgstr "& [-v] -d DIR\n\nРасчет и сохранение UUID дампа п + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "Анализ дампа «%s»..." + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "Отсутствует идентификатор сборки: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "Формат: %s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREFILE не задан" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -704,7 +704,7 @@ msgstr "Не удалось извлечь сообщение ошибки яд + msgid "Oops text extracted successfully" + msgstr "Текст ошибки ядра извлечен успешно" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -746,7 +746,7 @@ 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" +@@ -840,37 +840,37 @@ msgstr "Удалить файлы из каталога" + msgid "Preserve this directory" + msgstr "Оставить этот каталог" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "Не удалось запустить «%s». Ошибка: «%s»" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "Файл «%s» не содержит чисел" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Формат: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "Не удалось определить рабочий каталог. Возможно, он был удален." + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "Для этой ошибки уже есть запрос:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport уже отправлен. Повторно отправляться не будет." + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "Ошибка reporter-ureport. Код выхода: %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1064,7 +1064,7 @@ msgstr "Вывести строку (строки) поиска в stdout и в + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "Не удалось скомпилировать регулярное выражение" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1648,7 +1648,7 @@ msgstr "Формат: abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "Показать ошибки [в DIR]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1668,7 +1668,7 @@ msgstr "Печать числа недавних сбоев" + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "Обработка нескольких проблем" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1734,42 +1734,42 @@ msgstr "ABRT обнаружила %u сбой (сбоев). Для получе + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [параметры] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "Удалить PROBLEM_DIR после отправки отчета" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "Удаление «%s»" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Действия: удалить (rm), информация (i), пропустить (s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Действия: удалить (rm), сообщить (e), информация (i), пропустить (s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "Отчет по «%s»..." + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "Для перехода к следующей проблеме нажмите ENTER:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "Без аргумента --since будет осуществляться циклический переход между обнаруженными проблемами" + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "Выбор сбоев, обнаруженных после заданного момента времени" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +@@ -1790,7 +1790,7 @@ msgstr "Отправляет дамп памяти на сервер для ге + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +-msgstr "Диагностика отказа системы" ++msgstr "Анализировать ядро ВМ" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" +diff --git a/po/ru_RU.po b/po/ru_RU.po +index afe31df..fed0f1c 100644 +--- a/po/ru_RU.po ++++ b/po/ru_RU.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/fedora-abrt/language/ru_RU/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/si.po b/po/si.po +index 189886f..1c851c8 100644 +--- a/po/si.po ++++ b/po/si.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Sinhala (http://www.transifex.com/projects/p/fedora-abrt/language/si/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/sk.po b/po/sk.po +index b8aca55..57868bc 100644 +--- a/po/sk.po ++++ b/po/sk.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Slovak (http://www.transifex.com/projects/p/fedora-abrt/language/sk/)\n" +@@ -700,7 +700,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -836,34 +836,34 @@ msgstr "Zmazať súbory vnútri daného adresáru" + msgid "Preserve this directory" + msgstr "Ponechať daný adresár" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/sl.po b/po/sl.po +index 889e004..9196781 100644 +--- a/po/sl.po ++++ b/po/sl.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Slovenian (http://www.transifex.com/projects/p/fedora-abrt/language/sl/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/sq.po b/po/sq.po +index 6a96bfd..41a6763 100644 +--- a/po/sq.po ++++ b/po/sq.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Albanian (http://www.transifex.com/projects/p/fedora-abrt/language/sq/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/sr.po b/po/sr.po +index 5c175a0..2795213 100644 +--- a/po/sr.po ++++ b/po/sr.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Serbian (http://www.transifex.com/projects/p/fedora-abrt/language/sr/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/sr@latin.po b/po/sr@latin.po +index d61d042..fc0e630 100644 +--- a/po/sr@latin.po ++++ b/po/sr@latin.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/fedora-abrt/language/sr@latin/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/sv.po b/po/sv.po +index 5cdd203..647082f 100644 +--- a/po/sv.po ++++ b/po/sv.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Swedish (http://www.transifex.com/projects/p/fedora-abrt/language/sv/)\n" +@@ -700,7 +700,7 @@ 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 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -836,34 +836,34 @@ msgstr "Radera filer inuti denna katalog" + msgid "Preserve this directory" + msgstr "Bevara denna katalog" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/ta.po b/po/ta.po +index c93dd52..d8539ba 100644 +--- a/po/ta.po ++++ b/po/ta.po +@@ -11,9 +11,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-27 05:21+0000\n" ++"Last-Translator: shkumar \n" + "Language-Team: Tamil (http://www.transifex.com/projects/p/fedora-abrt/language/ta/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -85,7 +85,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "ஒரு குறிப்பிட்ட சிக்கலுக்கு அறிவிப்புகள் வராதபடி தடுக்கப் போகிறீர்கள். இனி மீண்டும் இந்தச் சிக்கல் குறித்து அறிவிப்பு காண்பிக்கப்படாது, இருப்பினும் ABRT இதைக் கண்டறியும், ABRT இடைமுகத்திலிருந்து இந்தச் சிக்கலை நீங்கள் அறிக்கையிடவும் முடியும்.\n\nதொடர வேண்டுமா?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -258,7 +258,7 @@ msgstr "கோர்டம்ப்பைப் பதிவேற்றும + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr " இந்த விருப்பத்தைச் செயல்படுத்தினால், முக்கியமான தரவு இருப்பதாகக் கண்டறியப்பட்டால், ABRT பயன்பாடு எப்போதும் கட்டுப்படுத்தப்பட்ட அணுகலுடனான வழு டிக்கட்டை உருவாக்கும்." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -486,72 +486,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "பயன்பாடு: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - விவரமாக\n -d - பதிவேற்றிய காப்பகத்தை நீக்கு\n ABRT_SPOOL_DIR - பதிவேற்றப்பட்ட செல்லுபடியான காப்பகங்கள் பிரித்தெடுக்கப்படும் கோப்பகம்\n UPLOAD_DIR - பதிவேற்றப்பட்ட காப்பகங்கள் சேமிக்கப்படும் கோப்பகம்\n FILENAME - பதிவேற்றப்பட்ட காப்பகங்கக் கோப்புப் பெயர்\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "ஒரு கோப்பகமல்ல: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "இதைத் தவிர்க்கிறது: '{0}' (சாய்வுக் கோட்டில் தொடங்குகிறது)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "இதைத் தவிர்க்கிறது: '{0}' (புள்ளியில் தொடங்குகிறது)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "இதைத் தவிர்க்கிறது: '{0}' (.. ஐக் கொண்டுள்ளது)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "இதைத் தவிர்க்கிறது: '{0}' (இடைவெளியைக் கொண்டுள்ளது)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "இதைத் தவிர்க்கிறது: '{0}' (தத்தலைக் கொண்டுள்ளது)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "கோப்பகத்தை '{0}' க்கு மாற்றியமைக்க முடியாது" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "தெரியாத கோப்பு வகை: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "'{0}' இல் பணிக் கோப்பகத்தை உருவாக்க முடியவில்லை" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' ஐ '{1}' க்கு நகர்த்த முடியவில்லை" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' ஐ '{1}' இல் நகலெடுக்க முடியவில்லை" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "'{0}' இல் சரிபார்ப்புப் பிழை" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "'{0}' ஐப் பிரித்தெடுக்கிறது" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "'{0}' கோப்பகத்தை உருவாக்க முடியவில்லை" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "'{0}' ஐப் பிரித்தெடுக்க முடியவில்லை" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' வெற்றிகரமாக செயலாக்கப்பட்டது" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -699,7 +699,7 @@ msgstr "oops செய்தியை பிரித்தெடுக்க + msgid "Oops text extracted successfully" + msgstr "Oops உரை வெற்றிகரமாக பிரித்தெடுக்கப்பட்டது" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -835,37 +835,37 @@ msgstr "இந்த கோப்பகத்தில் உள்ள கோப + msgid "Preserve this directory" + msgstr "இந்த கோப்பகத்தை வைத்திரு" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "'%s' ஐத் தொடங்க முடியவில்லை, பிழைச் செய்தி பின்வருமாறு: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "'%s' கோப்பில் எண்ணாக இல்லை" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "பயன்பாடு: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "கண்டறியப்பட்டது போன்ற பணிக் கோப்பகத்தைப் பெற முடியவில்லை" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "இந்தச் சிக்கல் பற்றி ஏற்கனவே ஒரு வழு சமர்ப்பிக்கப்பட்டுள்ளது:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport ஏற்கனவே அனுப்பப்பட்டது, மீண்டும் அனுப்பவில்லை" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport ஆனது %d என்ற வெளியேற்றக் குறியீட்டை வழங்கி தோல்வியடைந்தது" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1059,7 +1059,7 @@ msgstr "தேடல் சரங்களை stdout இல் அச்சி + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "சுருங்குறித் தொடரை கம்பைல் செய்வதில் தோல்வியடைந்தது" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1643,7 +1643,7 @@ msgstr "பயன்பாடு: abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "[DIRகளில் உள்ள] சிக்கல்களைப் பட்டியலிடு" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1663,7 +1663,7 @@ msgstr "சமீபத்திய செயலிழப்புகளின + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "பல சிக்கல்களைச் செயலாக்கவும்" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1729,42 +1729,42 @@ msgstr "ABRT %u சிக்கல்களைக் கண்டறிந்த + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& அறிக்கையிடவும் [விருப்பங்கள்] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "அறிக்கையிட்ட பிறகு PROBLEM_DIR ஐ அகற்றவும்" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "'%s' ஐ அழிக்கிறது" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "செயல்கள்: நீக்குதல்(rm), தகவல்(i), தவிர்த்தல்(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "செயல்கள்: நீக்குதல்(rm), அறிக்கையிடுதல்(e), தகவல்(i), தவிர்த்தல்(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "'%s' ஐ அறிக்கையிடுகிறது" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "அடுத்த சிக்கலுக்கு ENTER ஐ அழுத்தவும்:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "--since மதிப்புரு இல்லாவிட்டால், கண்டறியப்பட்ட அனைத்து சிக்கல்களிலும் மீண்டும் மீண்டும் செயல்படுத்தப்படும்." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "நேரமுத்திரைக்குப் பிறகு கண்டறியப்பட்ட சிக்கல்களை மட்டும் தேர்ந்தெடுக்கவும்" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/te.po b/po/te.po +index 79fafdb..75c2549 100644 +--- a/po/te.po ++++ b/po/te.po +@@ -6,14 +6,15 @@ + # Jiří Moskovčák , 2011 + # Krishnababu Krothapalli , 2013-2014 + # Sudheesh Singanamalla , 2013 ++# Sudheesh Singanamalla , 2013 + # ప్రవీణ్ ఇళ్ళ , 2011 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-16 09:36+0000\n" ++"Last-Translator: Krishnababu Krothapalli \n" + "Language-Team: Telugu (http://www.transifex.com/projects/p/fedora-abrt/language/te/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -85,7 +86,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "మీరు ఫలానా సమస్యకు చెందిన ప్రకటనలను రాకుండా చేయబోతున్నారు. మీరు ఇకపై ఈ సమస్యకు సంబందించి ప్రకటనను చూడబోరు, ఏమైనప్పటికీ, ABRT దానిని గుర్తించగలదు మరియు మీరు దానిని ABRT GUI నుండి నివేదించగల్గుతారు.\n\nమీరు కొనసాగాలని అనుకుంటున్నారా?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -198,19 +199,19 @@ msgstr "& [-v] [DIR]...\n\nABRT చేత కొత్త సమస్యలు + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "సంచయాన్ని దొంగిలించుటకు ముందుగా అడుగుము" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "uReport స్వయంచాలకంగా పంపు" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "కుందించిన నివేదన" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "సైలెంట్ షార్టెన్డ్ రిపోర్టింగ్" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -219,7 +220,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "స్టాక్ ట్రేస్ పుట్టించుటకు కోర్‌డంప్ ఫైలు తప్పనిసరి ఇది సమయం మరియు జాగా ఖర్చుచేసే కార్యక్రమం. స్టాక్ ట్రేస్ నుండి కోర్‌డంప్‌ను పుట్టించే సేవను ABRT అందిస్తుంది అయితే మీరు కోర్‌డంప్‌ను దాని సేవకు ఎక్కించాలి. ఈ ఐచ్చికం ఆచేతించినచో ABRT కోర్‌డంప్‌ను అడగకుండానే అప్‌లోడ్ చేయును." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -227,7 +228,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "ABRT సమస్యాత్మక డేటాను సంచయాలనందు నిల్వవుంచును. ABRT కు వ్రాయదగ్గ సంచయం అవసరమైనప్పుడు, ఆ సంచయం వ్యవస్థ స్థానమునుండి మీ నివాస సంచయంకు కదల్చబడును. ఈ ఐచ్చికం అచేతించినచో ABRT సమస్యాత్మక సంచయాన్ని అడగకుండానే కదుల్చును." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -235,45 +236,45 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "uReport అనగా సమస్యయొక్క సంక్షిప్త మరియు పూర్తి ఎనానిమస్ వివరణ. ABRT అనునది uReport ను ఫాస్ట్ గ్లోబల్ డూప్లికేట్ డిటెక్షన్ కొరకు ఉపయోగించును. అప్రమేయ ఆకృతీకరణనందు uReport అనునది నివేదీకరణ కార్యక్రమం ప్రారంభంలోనే పంపును. ఈ ఐచ్చికం చేతనించితే uReportలు అనునవి, సమస్య గుర్తించిన తక్షణమే స్వయంచాలకంగా పంపబడును." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "ఈ ఐచ్చికం చేతనించివుంటే గనుక, సమస్యను ప్రకటించిన బుడగనందలి నివేదించు బటన్ నొక్కి ప్రారంభించబడిన నివేదీకరణ కార్యక్రమం అనునది uReport పంపిన తరువాత అడ్డగించబడును. పూర్తి నివేదన చేయుటకు మీరు అప్రమేయ సమస్యా విహారిణిని ఉపయోగించవచ్చు." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr "ఈ ఐచ్చికం చేతనించకపోతే, నివేదించిన సమస్యల గురించన ప్రకటనలను ABRT ఎప్పటికీ చూపదు. షార్టెన్డ్ నివేదీకరణ చేతనమైతేనే దీని ప్రభావంవుంటుంది." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "కోర్‌డంప్‌ను అప్‌లోడ్ చేయుటకు ముందుగా అడుగుము" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "ఈ ఐచ్చికం చేతనించివున్నప్పుడు, సెన్సిటివ్ అవ్వగల డేటా ఏదైనా గుర్తించబడితే ABRT ఎప్పుడూ బగ్ టికెట్‌ను పరిమిత ఏక్సెస్‌తో సృష్టించును." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "సున్నితమైన సమాచారం కొరకు వ్యక్తిగత టికెట్‌ను అభ్యర్ధించును" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "అసంపూర్ణ సమస్యలను ప్రకటించుము" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "కంప్యూటర్ మూసివేయ బడుతున్నప్పుడు లేదా వాడుకరి లాగ్ అవుట్ అవుతున్నప్పుడు అసంపూర్ణ సమస్యలను గుర్తించబడెను. సమస్య యొక్క విలువైన నివేదికలను అందించుటకు, ABRT మిమ్ములను ఈ సమస్యలను దాఖలుచేయడానికి అనుమతించదు." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -486,72 +487,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "వాడుక: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n UPLOAD_DIR - Directory where uploaded archives are stored\n FILENAME - Uploaded archive file name\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "సంచయం కాదు: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "దాటవేస్తోంది: '{0}' (స్లాష్‌తో ప్రారంభమగును)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "దాటవేస్తోంది: '{0}' (డాట్‌తో ప్రారంభమగును)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "దాటవేస్తోంది: '{0}' (.. కలిగివుంది)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "దాటవేస్తోంది: '{0}' (ఖాళీ కలిగివుంది)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "దాటవేస్తోంది: '{0}' (టాబ్ కలిగివుంది)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "సంచయంను '{0}' కు మార్చలేదు" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "తెలియని ఫైల్ రకం: '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "'{0}' నందు పనిచేయుచున్న సంచయం సృష్టించలేదు" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' ను '{1}' కు కదల్చలేదు" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "'{0}' ను '{1}' కు నకలుతీయలేదు" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "'{0}' పై నిర్ధారణ దోషం" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "'{0}' విడమర్చుతోంది" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "'{0}' సంచయం సృష్టించలేదు" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "'{0}' విడమర్చలేదు" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' విజయవంతంగా ప్రోసెసైంది" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -631,21 +632,21 @@ msgstr "& [-v] -d DIR\n\nసమస్యాత్మక డైరెక్టర + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "కోర్‌డంప్ '%s' విశ్లేషిస్తోంది" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "బుల్డ్ ఐడి దొరకలేదు: %s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "వాడుక: %s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "కోర్‌ఫైల్ తెలుపలేదు" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -699,7 +700,7 @@ msgstr "oops సందేశం బహిర్గతపరచలేదు: '{0} + msgid "Oops text extracted successfully" + msgstr "Oops పాఠం విజయవంతంగా బహిర్గతపరచెను" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -835,37 +836,37 @@ msgstr "ఈ డైరెక్టరీ నందలి ఫైళ్ళను + msgid "Preserve this directory" + msgstr "ఈ డైరెక్టరీను నిలిపివుంచుము" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "'%s' ప్రారంభించలేక పోయింది, దోష సందేశం: '%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "ఫైల్ '%s' నందు సంఖ్యకాదు" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "వాడుక: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "ప్రస్తుత వర్కింగ్ సంచయం గుర్తించలేక పోయింది బహుశా తొలగించబడి ఉండవచ్చు" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "ఈ సమస్య గురించి ఒక బగ్ ఇప్పటికే ఫైల్ అయింది:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport ఇప్పటికే పంపబడింది, దానిని మరలా పంపుటలేదు" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport అనేది ఎగ్జిట్ కోడ్ %d తో విఫలమైంది" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1059,7 +1060,7 @@ msgstr "stdout కు శోధన స్ట్రింగ్స్ ముద + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "regex కంపైల్ చేయుటకు విఫలమైంది" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1643,7 +1644,7 @@ msgstr "వా‍డుక: abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "సమస్యలను జాబితాచేయి [DIRల నందు]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1663,7 +1664,7 @@ msgstr "ఇటీవలి క్రాష్‌ల లెక్కను ము + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "పలు సమస్యలను ప్రోసెస్‌చేయి" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1729,42 +1730,42 @@ msgstr "ABRT %u సమస్య(లు) గుర్తించెను. మ + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [options] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "నివేదించిన తరువాత PROBLEM_DIR తీసివేయి" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "'%s' తొలగిస్తోంది" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "చర్యలు: remove(rm), info(i), skip(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "చర్యలు: remove(rm), report(e), info(i), skip(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "'%s' నివేదిస్తోంది" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "తరువాతి సమస్య కొరకు ENTER వత్తండి:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "--since ఎగ్రిమెంట్ లేకుండా, మొత్తం గుర్తించిన సమస్యలనందు ఆవృతంచెందును." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "టైమ్‌స్టాంప్ తరువాత గుర్తించిన సమస్యలను మాత్రమే ఎంపికచేయును" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/tg.po b/po/tg.po +index 3b589b1..a996695 100644 +--- a/po/tg.po ++++ b/po/tg.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Tajik (http://www.transifex.com/projects/p/fedora-abrt/language/tg/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/th.po b/po/th.po +index 26aa6bf..c59f613 100644 +--- a/po/th.po ++++ b/po/th.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Thai (http://www.transifex.com/projects/p/fedora-abrt/language/th/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/tl.po b/po/tl.po +index 068e621..0744c37 100644 +--- a/po/tl.po ++++ b/po/tl.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Tagalog (http://www.transifex.com/projects/p/fedora-abrt/language/tl/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/tr.po b/po/tr.po +index 880ac22..28839fb 100644 +--- a/po/tr.po ++++ b/po/tr.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Turkish (http://www.transifex.com/projects/p/fedora-abrt/language/tr/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/uk.po b/po/uk.po +index 9a32458..c0d8841 100644 +--- a/po/uk.po ++++ b/po/uk.po +@@ -9,9 +9,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-03 14:17+0000\n" ++"Last-Translator: Yuri Chornoivan \n" + "Language-Team: Ukrainian (http://www.transifex.com/projects/p/fedora-abrt/language/uk/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -83,7 +83,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "Ви маєте намір вимкнути сповіщення щодо певної проблеми. Ви більше не побачите панелі сповіщення щодо цієї проблеми. Втім, ABRT виявлятиме її і зможе створити звіт за допомогою свого графічного інтерфейсу.\n\nПродовжити виконання цієї дії?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -697,7 +697,7 @@ msgstr "Не вдалося видобути повідомлення щодо + msgid "Oops text extracted successfully" + msgstr "Текст повідомлення щодо помилки успішно видобуто" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -833,34 +833,34 @@ msgstr "Вилучити файли всередині цього каталог + msgid "Preserve this directory" + msgstr "Зберегти цей каталог" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "Не вдалося запустити «%s», повідомлення про помилку: «%s»" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "Нечислові дані у файлі «%s»" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "Користування: %s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "Не вдалося отримати дані щодо поточного робочого каталогу, оскільки його, ймовірно, вилучено" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "Щодо цієї проблеми вже створено повідомлення про ваду:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "uReport вже надіслано, повторне надсилання скасовано" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "reporter-ureport аварійно завершила роботу з кодом виходу %d" +@@ -1661,7 +1661,7 @@ msgstr "Вивести кількість нещодавніх аварійни + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "Обробка декількох проблем" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1740,29 +1740,29 @@ msgstr "Вилучаємо «%s»" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Дії: вилучити(rm), інформація(i), пропустити(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Дії: вилучити(rm), звітувати(e), інформація(i), пропустити(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "Звітуємо щодо «%s»" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "Для переходу до наступної проблеми натисніть ENTER:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "Без аргументу --since, циклічний перехід між усіма виявленими проблемами." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "Вибирає лише проблеми, виявлені після вказаної часової позначки" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/ur.po b/po/ur.po +index b110b0e..65f41c7 100644 +--- a/po/ur.po ++++ b/po/ur.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Urdu (http://www.transifex.com/projects/p/fedora-abrt/language/ur/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/uz.po b/po/uz.po +index 1c85750..113580b 100644 +--- a/po/uz.po ++++ b/po/uz.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Uzbek (http://www.transifex.com/projects/p/fedora-abrt/language/uz/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/vi.po b/po/vi.po +index 276fb22..329ca7b 100644 +--- a/po/vi.po ++++ b/po/vi.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Vietnamese (http://www.transifex.com/projects/p/fedora-abrt/language/vi/)\n" +@@ -696,7 +696,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -832,34 +832,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/wo.po b/po/wo.po +index b85963b..08d4139 100644 +--- a/po/wo.po ++++ b/po/wo.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Wolof (http://www.transifex.com/projects/p/fedora-abrt/language/wo/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/xh.po b/po/xh.po +index a3bcad1..e729003 100644 +--- a/po/xh.po ++++ b/po/xh.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Xhosa (http://www.transifex.com/projects/p/fedora-abrt/language/xh/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/zh_CN.po b/po/zh_CN.po +index 845b7da..38f2223 100644 +--- a/po/zh_CN.po ++++ b/po/zh_CN.po +@@ -6,7 +6,7 @@ + # alanzheng , 2011 + # Alick Zhao , 2011,2013 + # Jiří Moskovčák , 2011 +-# Mike Manilone , 2011 ++# Ma Kai , 2011 + # Tiansworld , 2012-2013 + # Tommy He , 2011-2012 + # Yangxin Guan , 2013 +@@ -18,9 +18,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-23 01:03+0000\n" ++"Last-Translator: Wei Liu \n" + "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora-abrt/language/zh_CN/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -92,7 +92,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "您要将某个具体问题的通知静音。您将再也无法看到这个问题的通知气泡,但 ABRT 将继续对其进行探测,同时您也可以使用 ABRT GUI 报告该问题。\n\n您要继续吗?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -205,19 +205,19 @@ msgstr "& [-v] [DIR]...\n\nABRT 探测到问题后,小程序会通知用户\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "占用目录前询问" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "自动发送 uReport" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "缩略报告" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "静默式缩略报告" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -226,7 +226,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "核心转储文件是生成费时费空间栈回溯的必要操作。ABRT 提供从核心转储生成栈回溯的服务,但您必须将核心转储上传到到该服务。当禁用此选项后 ABRT 将自动上传核心转储而不再询问。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -234,7 +234,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "ABRT 将问题数据保存在目录中。当 ABRT 需要可写入目录时,该目录从系统位置移动到您的主目录。当禁用此选项后 ABRT 移动问题目录时将不再询问。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -242,45 +242,45 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "uReport 是问题的简要且完全匿名的描述。ABRT 使用 uReport 进行快速的全局重复检查。在默认配置下 uReport 在报告过程的一开始发送。当启用该选项后 uReports 将在发现问题后立即自动发送。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "启用该选项后,将会在 uReport 发送后中断由问题气泡通知中报告按钮开始的报告进程。您依然可以使用默认问题浏览器完成报告。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr "启用该选项后 ABRT 不再提示汇报问题。仅在缩略报告启用的情况下生效。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "在上传核心转储前询问" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr "启用这个选项后,一旦检测到敏感数据,ABRT 将创建有优先访问权限的 bug ticket。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "为敏感信息请求专用 ticket" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "通知不完整的问题" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "不完整的问题通常在电脑关机或用户登出时发生。为提供有价值的问题报告,ABRT 将不允许您提交此类问题。" + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -493,72 +493,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "用法:%s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - 将有效上传归档解压缩到该目录\n UPLOAD_DIR - 保存已上传归档的目录\n FILENAME - 已上传归档文件吗\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "不是一个目录:'{0}'" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "跳过:'{0}'(以斜杠开始)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "跳过:'{0}'(以点开始)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "跳过:'{0}'(包含..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "跳过:'{0}'(包含空格)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "跳过:'{0}'(包含 tab)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "无法该为目录 '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "未知文件类型:'{0}'" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "无法在 '{0}' 在这创建工作目录" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "无法从 '{0}' 迁移到 '{1}'" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "无法从 '{0}' 迁复制 '{1}'" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "'{0}' 中的验证错误" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "正在解压缩 '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "无法创建 '{0}' 目录" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "无法解压缩 '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "成功处理 '{0}'" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -638,21 +638,21 @@ msgstr "& [-v] -d DIR\n\n在有问题的目录 DIR 中计算并保存核心转 + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "正在分析核心转储 '%s'" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "缺少构建 id:'%s'" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "用法:%s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "未指定 COREFILE" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -706,7 +706,7 @@ msgstr "无法提取异常信息: '{0}'" + msgid "Oops text extracted successfully" + msgstr "成功提取异常文字信息" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -842,37 +842,37 @@ msgstr "删除该目录中的文件" + msgid "Preserve this directory" + msgstr "保留该目录" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "无法启动 '%s',出错信息为:'%s'" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "不是文件 '%s' 中的数字" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "用法:%s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "无法获取当前工作目录因为可能已将其删除" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "已存在有关这个问题的 bug:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "已发送 uReport,请不要再次发送。" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport 失败并给出退出代码 %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1066,7 +1066,7 @@ msgstr "输出搜索字符串至标准输出并退出" + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "编译正则表达式失败" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1650,7 +1650,7 @@ msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "列出 [in DIRs] 的问题" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1670,7 +1670,7 @@ msgstr "显示最近的崩溃计数" + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "处理多个问题" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1736,42 +1736,42 @@ msgstr "ABRT 已检测到 '%u' 个问题。预了解详细信息请执行:abrt + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [options] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "报告后删除 PROBLEM_DIR" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "正在删除 '%s'" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "动作:remove(rm), info(i), skip(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "动作:remove(rm), report(e), info(i), skip(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "正在报告 '%s'" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "下一个问题请按 ENTER:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "没有 --since 参数,则重复所有探测到的问题。" + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "只选择时间戳之后探测到的问题" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/zh_HK.po b/po/zh_HK.po +index 6fcfd7b..7fd34db 100644 +--- a/po/zh_HK.po ++++ b/po/zh_HK.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/fedora-abrt/language/zh_HK/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +diff --git a/po/zh_TW.po b/po/zh_TW.po +index 940a598..082e3a0 100644 +--- a/po/zh_TW.po ++++ b/po/zh_TW.po +@@ -3,16 +3,16 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: +-# Chester Cheng , 2012 ++# Chester Cheng , 2012,2014 + # Jiří Moskovčák , 2011 + # Terry Chuang , 2014 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" +-"Last-Translator: Jakub Filak \n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" ++"PO-Revision-Date: 2014-10-22 01:31+0000\n" ++"Last-Translator: Chester Cheng \n" + "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-abrt/language/zh_TW/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -84,7 +84,7 @@ msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "" ++msgstr "您正要將特定問題的通知消音。您將不再看見此問題的浮出式氣泡通知;然而,ABRT 仍會偵測此問題,而您也可以從 ABRT 的圖形使用介面中回報它\n\n您想要繼續嗎?" + + #: ../src/applet/applet.c:748 ../src/applet/applet.c:750 + msgid "Warning" +@@ -197,19 +197,19 @@ msgstr "& [-v] [DIR]...\n\n新問題被 ABRT 偵測到時通知使用者的面 + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "在佔用目錄前詢問" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "自動傳送 uReport" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "簡短回報" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "靜默簡短回報" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -218,7 +218,7 @@ msgid "" + " trace from the coredump but you have to upload the coredump to this " + "service. With this option disabled ABRT will upload the coredump without " + "asking." +-msgstr "" ++msgstr "需要有核心傾印檔案才能生成堆疊追蹤資訊,而這個動作既費時又費空間。ABRT 提供以核心傾印生成堆疊追蹤資訊的服務,但您必須將核心傾印檔上傳到此服務中。停用此選項後,ABRT 不須詢問就會上傳核心傾印檔案。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -226,7 +226,7 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "" ++msgstr "ABRT 會將問題資料儲存在目錄中。每當 ABRT 需要可寫入的目錄,該目錄則會從系統位置移動到您的家目錄去。停用此選項後,ABRT 不須詢問便會移動問題目錄。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -234,45 +234,45 @@ msgid "" + "uses uReports for fast global duplicate detection. In default configuration" + " uReport is sent at beginning of reporting process. With this option enabled" + " uReports are sent automatically immediately after problem detection." +-msgstr "" ++msgstr "uReport 是簡短且完全匿名的問題描述。ABRT 使用 uReport 以快速偵測全域是否有重複問題。預設組態下,uReport 會在回報過程的開頭送出。啟用此選項後,在偵測到問題當下會立即送出 uReport。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button" + " in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "" ++msgstr "啟用此選向後,在問題通知氣泡中點按「回報」按鈕而展開的回報程序會在 uReport 送出後中斷。您仍可以用預設的問題瀏覽器回報完整報告。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "" ++msgstr " 啟用此選項後,ABRT 永遠不會顯示問題回報通知。僅在啟用簡短回報時生效。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "在上傳核心傾印前詢問意願" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "" ++msgstr " 若啟用此選項,當 ABRT 偵測到敏感資訊時總會以限制存取方式建立臭蟲回報。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "內含敏感訊息故申請隱私請票" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "通知不完整的問題" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "" ++msgstr "資料不完整的問題通常在電腦關機動作之時,或是使用者正在登出時被偵測到。為了提供有價值的問題回報,ABRT 不會允許您提交此類問題報告。" + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -485,72 +485,72 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "" ++msgstr "用法:%s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - 詳盡\n -d - 刪除上傳的封存檔\n ABRT_SPOOL_DIR - 有效之上傳過的封存檔解開後所放置的目錄\n UPLOAD_DIR - 上傳過的封存檔之儲存目錄\n FILENAME - 上傳過的封存檔名稱\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "不是目錄:「{0}」" + + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "略過:「{0}」(以 / 起頭)" + + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "略過:「{0}」(以 . 起頭)" + + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "略過:「{0}」(含有 ..)" + + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "略過:「{0}」(含有空白)" + + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "略過:「{0}」(含有跳格符)" + + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "無法切換目錄至「{0}」" + + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "未知檔案類型:「{0}」" + + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "無法在「{0}」中建立工作目錄" + + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "無法將「{0}」移動至「{1}」" + + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "無法將「{0}」複製至「{1}」" + + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "驗證「{0}」上的錯誤" + + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "正在解開「{0}」" + + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "無法建立「{0}」目錄" + + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "無法解開「{0}」" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "「{0}」處理成功" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -630,21 +630,21 @@ msgstr "& [-v] -d DIR\n\n在問題目錄 DIR 內計算並儲存的核心傾印 + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "正在分析核心傾印「%s」" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "遺失組建 id:%s" + + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "用法:%s [-v] [-o OUTFILE] -c COREFILE" + + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "未指定 COREFILE" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -698,7 +698,7 @@ msgstr "無法抽出 oops 訊息:「{0}」" + msgid "Oops text extracted successfully" + msgstr "Oops 內文已成功抽出" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -834,37 +834,37 @@ msgstr "刪除此目錄內的檔案" + msgid "Preserve this directory" + msgstr "保留這個目錄" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "無法啟動「%s」,錯誤訊息為:「%s」" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "不是「%s」檔案中的數字" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "用法:%s [-v]" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "無法取得目前的工作目錄,因為它可能已被刪除" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "已有此問題相關的臭蟲回報:" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport 已經送出,不再傳送" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport 作業失敗,離開碼為 %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -1058,7 +1058,7 @@ msgstr "將搜尋字串列印在 stdout 上並離開" + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "無法編譯 regex" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1642,7 +1642,7 @@ msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "列出 [DIRs 中] 的問題" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1662,7 +1662,7 @@ msgstr "列印最近程式崩潰的數目" + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "處理多項問題" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1728,42 +1728,42 @@ msgstr "ABRT 已偵測到 %u 項問題。若要取得更多資訊,請執行: + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [選項] DIR..." + + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "在回報後移除 PROBLEM_DIR" + + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "正在刪除「%s」" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "可用動作:移除 remove(rm)、資訊 info(i)、略過 skip(s):" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "可用動作:移除 remove(rm)、回報 report(e)、資訊 info(i)、略過 skip(s):" + + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "正在回報「%s」" + + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "下個問題請按 ENTER 鍵。" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "若不用 --since 引數,則會在所有偵測到的問題之間迭代。" + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "僅選取時間戳記之後的問題" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/zu.po b/po/zu.po +index 5ea2baa..d88b1cd 100644 +--- a/po/zu.po ++++ b/po/zu.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-03 13:47+0200\n" ++"POT-Creation-Date: 2014-10-13 17:42+0200\n" + "PO-Revision-Date: 2014-10-03 11:47+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Zulu (http://www.transifex.com/projects/p/fedora-abrt/language/zu/)\n" +@@ -695,7 +695,7 @@ msgstr "" + msgid "Oops text extracted successfully" + msgstr "" + +-#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:81 ++#: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +@@ -831,34 +831,34 @@ msgstr "" + msgid "Preserve this directory" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:39 ++#: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:50 ++#: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:66 ++#: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:86 ++#: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:117 ++#: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:127 ++#: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" + msgstr "" + +-#: ../src/plugins/abrt-action-ureport:145 ++#: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" + msgstr "" +-- +1.8.3.1 + diff --git a/SOURCES/0076-Revert-gdb-disable-loading-of-auto-loaded-files.patch b/SOURCES/0076-Revert-gdb-disable-loading-of-auto-loaded-files.patch new file mode 100644 index 0000000..9e39c0f --- /dev/null +++ b/SOURCES/0076-Revert-gdb-disable-loading-of-auto-loaded-files.patch @@ -0,0 +1,120 @@ +From f02866555da23e00ad3a76a8d540bd83804c439f Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 19 Nov 2014 07:19:29 +0100 +Subject: [ABRT PATCH 76/78] Revert "gdb: disable loading of auto-loaded files" + +This reverts commit 5a2f83cd86ce824167fa7ea8e5357c014034ed46. + +Turning auto-load off also turns the pretty printer off. + +Unfortunately, we must trust to providers of the auto-loaded scripts and +we must be fixing root causes and not treating symptoms. + +Related: #1128637 +--- + src/lib/hooklib.c | 40 +++++++++++++++++++--------------------- + 1 file changed, 19 insertions(+), 21 deletions(-) + +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index 21ad9e0..4a50727 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -252,12 +252,10 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + /* Let user know what's going on */ + log(_("Generating backtrace")); + +- char *args[23]; ++ char *args[21]; + args[0] = (char*)"gdb"; + args[1] = (char*)"-batch"; + args[2] = (char*)"-ex"; +- args[3] = (char*)"set auto-load off"; +- args[4] = (char*)"-ex"; + struct strbuf *set_debug_file_directory = strbuf_new(); + if(debuginfo_dirs == NULL) + { +@@ -280,7 +278,7 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + p = colon_or_nul; + } + } +- args[5] = strbuf_free_nobuf(set_debug_file_directory); ++ args[3] = strbuf_free_nobuf(set_debug_file_directory); + + /* "file BINARY_FILE" is needed, without it gdb cannot properly + * unwind the stack. Currently the unwind information is located +@@ -302,27 +300,27 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + * TODO: check mtimes on COREFILE and BINARY_FILE and not supply + * BINARY_FILE if it is newer (to at least avoid gdb complaining). + */ +- args[6] = (char*)"-ex"; +- args[7] = xasprintf("file %s", executable); ++ args[4] = (char*)"-ex"; ++ args[5] = xasprintf("file %s", executable); + free(executable); + +- args[8] = (char*)"-ex"; +- args[9] = xasprintf("core-file %s/"FILENAME_COREDUMP, dump_dir_name); ++ args[6] = (char*)"-ex"; ++ args[7] = xasprintf("core-file %s/"FILENAME_COREDUMP, dump_dir_name); + ++ args[8] = (char*)"-ex"; ++ /*args[9] = ... see below */ + args[10] = (char*)"-ex"; +- /*args[11] = ... see below */ +- args[12] = (char*)"-ex"; +- args[13] = (char*)"info sharedlib"; ++ args[11] = (char*)"info sharedlib"; + /* glibc's abort() stores its message in __abort_msg variable */ ++ args[12] = (char*)"-ex"; ++ args[13] = (char*)"print (char*)__abort_msg"; + args[14] = (char*)"-ex"; +- args[15] = (char*)"print (char*)__abort_msg"; ++ args[15] = (char*)"print (char*)__glib_assert_msg"; + args[16] = (char*)"-ex"; +- args[17] = (char*)"print (char*)__glib_assert_msg"; ++ args[17] = (char*)"info all-registers"; + args[18] = (char*)"-ex"; +- args[19] = (char*)"info all-registers"; +- args[20] = (char*)"-ex"; +- args[21] = (char*)"disassemble"; +- args[22] = NULL; ++ args[19] = (char*)"disassemble"; ++ args[20] = NULL; + + /* Get the backtrace, but try to cap its size */ + /* Limit bt depth. With no limit, gdb sometimes OOMs the machine */ +@@ -332,9 +330,9 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + char *bt = NULL; + while (1) + { +- args[11] = xasprintf("%s backtrace %u%s", thread_apply_all, bt_depth, full); ++ args[9] = xasprintf("%s backtrace %u%s", thread_apply_all, bt_depth, full); + bt = exec_vp(args, /*redirect_stderr:*/ 1, timeout_sec, NULL); +- free(args[11]); ++ free(args[9]); + if ((bt && strnlen(bt, 256*1024) < 256*1024) || bt_depth <= 32) + { + break; +@@ -359,7 +357,7 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + * End of assembler dump. + * (IOW: "empty" dump) + */ +- args[21] = (char*)"disassemble $pc-20, $pc+64"; ++ args[19] = (char*)"disassemble $pc-20, $pc+64"; + + if (bt_depth <= 64 && thread_apply_all[0] != '\0') + { +@@ -375,9 +373,9 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + } + } + ++ free(args[3]); + free(args[5]); + free(args[7]); +- free(args[9]); + return bt; + } + +-- +1.8.3.1 + diff --git a/SOURCES/0077-gdb-make-gdb-aware-of-the-abrt-s-debuginfo-dir.patch b/SOURCES/0077-gdb-make-gdb-aware-of-the-abrt-s-debuginfo-dir.patch new file mode 100644 index 0000000..1a4759c --- /dev/null +++ b/SOURCES/0077-gdb-make-gdb-aware-of-the-abrt-s-debuginfo-dir.patch @@ -0,0 +1,176 @@ +From 56e7f58908997b6cfd52d44bca208ef50d1bdf61 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 13 Nov 2014 12:08:07 +0100 +Subject: [ABRT PATCH 77/78] gdb: make gdb aware of the abrt's debuginfo dir + +A debuginfo package might ship an auto-loaded gdb script. If abrt +unpacks that package into the abrt's debuginfo cache dir and points gdb +to that directory, gdb refuses to auto-loaded that gdb scripts and +produces a plenty of warning messages that abrt writes to 'backtrace' +file. + +The previous solution of this issue was to turn auto-load off completely +but it turned the pretty printer off too. + +The correct solution is to add the abrt's debuginfo cache directory to +auto-load safe-path and auto-load scripts-dir settings. + +Thanks Jan Kratochvil + +Requires: rhbz#1163339 +Resolves: rhbz#1128637 + +Signed-off-by: Jakub Filak +--- + src/lib/hooklib.c | 83 ++++++++++++++++++++++++++++++++++++------------------- + 1 file changed, 55 insertions(+), 28 deletions(-) + +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index 4a50727..1d45cdd 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -252,11 +252,12 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + /* Let user know what's going on */ + log(_("Generating backtrace")); + +- char *args[21]; +- args[0] = (char*)"gdb"; +- args[1] = (char*)"-batch"; +- args[2] = (char*)"-ex"; ++ unsigned i = 0; ++ char *args[25]; ++ args[i++] = (char*)"gdb"; ++ args[i++] = (char*)"-batch"; + struct strbuf *set_debug_file_directory = strbuf_new(); ++ unsigned auto_load_base_index = 0; + if(debuginfo_dirs == NULL) + { + // set non-existent debug file directory to prevent resolving +@@ -266,6 +267,8 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + else + { + strbuf_append_str(set_debug_file_directory, "set debug-file-directory /usr/lib/debug"); ++ ++ struct strbuf *debug_directories = strbuf_new(); + const char *p = debuginfo_dirs; + while (1) + { +@@ -274,11 +277,25 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + if (*p == '\0') + break; + const char *colon_or_nul = strchrnul(p, ':'); +- strbuf_append_strf(set_debug_file_directory, ":%.*s/usr/lib/debug", (int)(colon_or_nul - p), p); ++ strbuf_append_strf(debug_directories, "%s%.*s/usr/lib/debug", (debug_directories->len == 0 ? "" : ":"), ++ (int)(colon_or_nul - p), p); + p = colon_or_nul; + } ++ ++ strbuf_append_strf(set_debug_file_directory, ":%s", debug_directories->buf); ++ ++ args[i++] = (char*)"-iex"; ++ auto_load_base_index = i; ++ args[i++] = xasprintf("add-auto-load-safe-path %s", debug_directories->buf); ++ args[i++] = (char*)"-iex"; ++ args[i++] = xasprintf("add-auto-load-scripts-directory %s", debug_directories->buf); ++ ++ strbuf_free(debug_directories); + } +- args[3] = strbuf_free_nobuf(set_debug_file_directory); ++ ++ args[i++] = (char*)"-ex"; ++ const unsigned debug_dir_cmd_index = i++; ++ args[debug_dir_cmd_index] = strbuf_free_nobuf(set_debug_file_directory); + + /* "file BINARY_FILE" is needed, without it gdb cannot properly + * unwind the stack. Currently the unwind information is located +@@ -300,27 +317,31 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + * TODO: check mtimes on COREFILE and BINARY_FILE and not supply + * BINARY_FILE if it is newer (to at least avoid gdb complaining). + */ +- args[4] = (char*)"-ex"; +- args[5] = xasprintf("file %s", executable); ++ args[i++] = (char*)"-ex"; ++ const unsigned file_cmd_index = i++; ++ args[file_cmd_index] = xasprintf("file %s", executable); + free(executable); + +- args[6] = (char*)"-ex"; +- args[7] = xasprintf("core-file %s/"FILENAME_COREDUMP, dump_dir_name); ++ args[i++] = (char*)"-ex"; ++ const unsigned core_cmd_index = i++; ++ args[core_cmd_index] = xasprintf("core-file %s/"FILENAME_COREDUMP, dump_dir_name); + +- args[8] = (char*)"-ex"; ++ args[i++] = (char*)"-ex"; ++ const unsigned bt_cmd_index = i++; + /*args[9] = ... see below */ +- args[10] = (char*)"-ex"; +- args[11] = (char*)"info sharedlib"; ++ args[i++] = (char*)"-ex"; ++ args[i++] = (char*)"info sharedlib"; + /* glibc's abort() stores its message in __abort_msg variable */ +- args[12] = (char*)"-ex"; +- args[13] = (char*)"print (char*)__abort_msg"; +- args[14] = (char*)"-ex"; +- args[15] = (char*)"print (char*)__glib_assert_msg"; +- args[16] = (char*)"-ex"; +- args[17] = (char*)"info all-registers"; +- args[18] = (char*)"-ex"; +- args[19] = (char*)"disassemble"; +- args[20] = NULL; ++ args[i++] = (char*)"-ex"; ++ args[i++] = (char*)"print (char*)__abort_msg"; ++ args[i++] = (char*)"-ex"; ++ args[i++] = (char*)"print (char*)__glib_assert_msg"; ++ args[i++] = (char*)"-ex"; ++ args[i++] = (char*)"info all-registers"; ++ args[i++] = (char*)"-ex"; ++ const unsigned dis_cmd_index = i++; ++ args[dis_cmd_index] = (char*)"disassemble"; ++ args[i++] = NULL; + + /* Get the backtrace, but try to cap its size */ + /* Limit bt depth. With no limit, gdb sometimes OOMs the machine */ +@@ -330,9 +351,9 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + char *bt = NULL; + while (1) + { +- args[9] = xasprintf("%s backtrace %u%s", thread_apply_all, bt_depth, full); ++ args[bt_cmd_index] = xasprintf("%s backtrace %u%s", thread_apply_all, bt_depth, full); + bt = exec_vp(args, /*redirect_stderr:*/ 1, timeout_sec, NULL); +- free(args[9]); ++ free(args[bt_cmd_index]); + if ((bt && strnlen(bt, 256*1024) < 256*1024) || bt_depth <= 32) + { + break; +@@ -357,7 +378,7 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + * End of assembler dump. + * (IOW: "empty" dump) + */ +- args[19] = (char*)"disassemble $pc-20, $pc+64"; ++ args[dis_cmd_index] = (char*)"disassemble $pc-20, $pc+64"; + + if (bt_depth <= 64 && thread_apply_all[0] != '\0') + { +@@ -373,9 +394,15 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + } + } + +- free(args[3]); +- free(args[5]); +- free(args[7]); ++ if (auto_load_base_index > 0) ++ { ++ free(args[auto_load_base_index]); ++ free(args[auto_load_base_index + 2]); ++ } ++ ++ free(args[debug_dir_cmd_index]); ++ free(args[file_cmd_index]); ++ free(args[core_cmd_index]); + return bt; + } + +-- +1.8.3.1 + diff --git a/SOURCES/0079-cli-mark-the-suggestion-text-for-translation.patch b/SOURCES/0079-cli-mark-the-suggestion-text-for-translation.patch new file mode 100644 index 0000000..0b54f56 --- /dev/null +++ b/SOURCES/0079-cli-mark-the-suggestion-text-for-translation.patch @@ -0,0 +1,28 @@ +From 187530c4df6971927d1e099584be5b418ab2725b Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 12 Dec 2014 14:19:49 +0100 +Subject: [ABRT PATCH 79/82] cli: mark the suggestion text for translation + +Related: #1087880 + +Signed-off-by: Jakub Filak +--- + src/cli/list.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/cli/list.c b/src/cli/list.c +index b6b4790..ccb5f3b 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -124,7 +124,7 @@ static void print_crash(problem_data_t *problem_data, int detailed, int text_siz + + 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); ++ 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; + } +-- +1.8.3.1 + diff --git a/SOURCES/0080-auto-reporting-add-options-to-specify-auth-type.patch b/SOURCES/0080-auto-reporting-add-options-to-specify-auth-type.patch new file mode 100644 index 0000000..f83f806 --- /dev/null +++ b/SOURCES/0080-auto-reporting-add-options-to-specify-auth-type.patch @@ -0,0 +1,438 @@ +From 2b16db2fea5552225437ac7d622706b597b7a71d Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 19 Dec 2014 00:41:16 +0100 +Subject: [ABRT PATCH 80/82] auto-reporting: add options to specify auth type + +See abrt-auto-reporting man page for more details about this commit. + +Related: #1174833 + +Signed-off-by: Jakub Filak +--- + doc/abrt-auto-reporting.txt | 41 ++++++- + src/daemon/abrt-auto-reporting.c | 258 ++++++++++++++++++++++++++++++++++++--- + 2 files changed, 280 insertions(+), 19 deletions(-) + +diff --git a/doc/abrt-auto-reporting.txt b/doc/abrt-auto-reporting.txt +index 1cc534e..2a27945 100644 +--- a/doc/abrt-auto-reporting.txt ++++ b/doc/abrt-auto-reporting.txt +@@ -3,11 +3,14 @@ abrt-auto-reporting(1) + + NAME + ---- +-abrt-auto-reporting - Get or modify a value of the auto reporting option ++abrt-auto-reporting - Get or modify the auto reporting option values + + SYNOPSIS + -------- +-'abrt-auto-reporting' [-v] [ enabled | yes | 1 | disabled | no | 0 ] ++'abrt-auto-reporting' [-v] [ enabled | yes | 1 | on | disabled | no | 0 | off ] ++ [ [--anonymous] | ++ [--username USERNAME [--password PASSWORD] ] | ++ [--certificate SOURCE] ] + + DESCRIPTION + ----------- +@@ -23,6 +26,9 @@ process and will be persistent. + ABRT uploads an uReport which was generated for a detected problem + immediately after the detection phase. + ++Reads and saves the authentication configuration options in ++/etc/libreport/plugins/ureport.conf and /etc/libreport/plugins/rhtsupport.conf ++ + uReport description + ~~~~~~~~~~~~~~~~~~~ + ABRT supports uReports for four types of crashes: crashes of C/C++ programs +@@ -51,6 +57,14 @@ for kernel oopses:: + these are list of loaded kernel modules, list of taint flags, and full text + of the kernel oops. + ++The authenticated uReports also contains *hostname* and *machineid* to enable a ++server side filtering at https://access.redhat.com/. ++ ++The authenticated uReports have the benefit of rich server replies which may ++include a solution for the submitted crash. The authentication is done using ++either Red Hat Subscription Certificates or Red Hat Customer Portal ++credentials. ++ + 'Warning': + The full text of a kernel oops might contain information like the + identification of the host hardware type. You should disable the autoreporting +@@ -62,9 +76,30 @@ OPTIONS + -v, --verbose:: + Be more verbose. Can be given multiple times. + ++-a, --anonymous:: ++ Turns the authentication off by clearing both 'SSLClientAuth' and 'HTTPAuth' ++ configuration options in /etc/libreport/plugins/ureport.conf ++ ++-u, --username USERNAME:: ++ Turns HTTP Authentication on by setting 'HTTPAuth' configuration option to ++ *rhts-credentials* in /etc/libreport/plugins/ureport.conf and storing ++ USERNAME and PASSWORD in /etc/libreport/plugins/rhtsupport.conf ++ Also turns the SSL Client Authentication off, because these methods cannot ++ be used together. ++ ++-p, --password PASSWORD:: ++ Password for HTTP Authentication. If not provided, a prompt asking for it ++ will be issued. ++ ++-c, --certificate SOURCE:: ++ Turns SSL Client Authentication on by setting 'SSLClientAuth' configuration ++ option to SOURCE in /etc/libreport/plugins/ureport.conf. ++ Also turns the HTTP Authentication off, because these methods cannot ++ be used together. ++ + SEE ALSO + -------- +-abrt.conf(5) ++abrt.conf(5), ureport.conf(5), rhtsupport.conf(5) + + AUTHORS + ------- +diff --git a/src/daemon/abrt-auto-reporting.c b/src/daemon/abrt-auto-reporting.c +index 0909bed..f50c4c2 100644 +--- a/src/daemon/abrt-auto-reporting.c ++++ b/src/daemon/abrt-auto-reporting.c +@@ -17,6 +17,7 @@ + */ + + #include "libabrt.h" ++#include "client.h" + + #include + +@@ -26,13 +27,24 @@ + #define STATE_MANUAL "disabled" + #define STATE_AUTO "enabled" + +-const char *const REPORTING_STATES[6][2] = { ++#define RHTS_NAME "rhtsupport.conf" ++#define RHTS_USERNAME_OPTION "Login" ++#define RHTS_PASSWORD_OPTION "Password" ++ ++#define UREPORT_NAME "ureport.conf" ++#define UREPORT_HTTP_AUTH_OPTION "HTTPAuth" ++#define UREPORT_CLIENT_AUTH_OPTION "SSLClientAuth" ++#define UREPORT_RTHS_CREDENTIALS_AUTH "rhts-credentials" ++ ++const char *const REPORTING_STATES[8][2] = { + {STATE_MANUAL, "no" }, + {STATE_AUTO, "yes"}, + {"no", "no" }, + {"yes", "yes"}, + {"0", "no" }, + {"1", "yes"}, ++ {"off", "no" }, ++ {"on", "yes"}, + }; + + static int +@@ -52,6 +64,77 @@ set_abrt_reporting(map_string_t *conf, const char *opt_value) + return 1; + } + ++static int ++set_ureport_http_auth(map_string_t *conf, const char *opt_value) ++{ ++ const char *const cur_value = get_map_string_item_or_NULL(conf, UREPORT_HTTP_AUTH_OPTION); ++ ++ if (cur_value == NULL || strcmp(cur_value, opt_value) != 0) ++ { ++ replace_map_string_item(conf, xstrdup(UREPORT_HTTP_AUTH_OPTION), xstrdup(opt_value)); ++ remove_map_string_item(conf, UREPORT_CLIENT_AUTH_OPTION); ++ ++ return save_plugin_conf_file(UREPORT_NAME, conf); ++ } ++ ++ /* No changes needed -> success */ ++ return 1; ++} ++ ++static int ++set_ureport_client_auth(map_string_t *conf, const char *opt_value) ++{ ++ const char *const cur_value = get_map_string_item_or_NULL(conf, UREPORT_CLIENT_AUTH_OPTION); ++ ++ if (cur_value == NULL || strcmp(cur_value, opt_value) != 0) ++ { ++ replace_map_string_item(conf, xstrdup(UREPORT_CLIENT_AUTH_OPTION), xstrdup(opt_value)); ++ remove_map_string_item(conf, UREPORT_HTTP_AUTH_OPTION); ++ ++ return save_plugin_conf_file(UREPORT_NAME, conf); ++ } ++ ++ /* No changes needed -> success */ ++ return 1; ++} ++ ++static int ++clear_ureport_auth(map_string_t *conf) ++{ ++ const char *const http_cur_value = get_map_string_item_or_NULL(conf, UREPORT_HTTP_AUTH_OPTION); ++ const char *const ssl_cur_value = get_map_string_item_or_NULL(conf, UREPORT_CLIENT_AUTH_OPTION); ++ ++ if (http_cur_value != NULL || ssl_cur_value != NULL) ++ { ++ remove_map_string_item(conf, UREPORT_HTTP_AUTH_OPTION); ++ remove_map_string_item(conf, UREPORT_CLIENT_AUTH_OPTION); ++ ++ return save_plugin_conf_file(UREPORT_NAME, conf); ++ } ++ ++ /* No changes needed -> success */ ++ return 1; ++} ++ ++static int ++set_rhts_credentials(map_string_t *conf, const char *username, const char *password) ++{ ++ const char *const username_cur_value = get_map_string_item_or_NULL(conf, RHTS_USERNAME_OPTION); ++ const char *const password_cur_value = get_map_string_item_or_NULL(conf, RHTS_PASSWORD_OPTION); ++ ++ if ( (username_cur_value == NULL || strcmp(username_cur_value, username) != 0) ++ || (password_cur_value == NULL || strcmp(password_cur_value, password) != 0)) ++ { ++ replace_map_string_item(conf, xstrdup(RHTS_USERNAME_OPTION), xstrdup(username)); ++ replace_map_string_item(conf, xstrdup(RHTS_PASSWORD_OPTION), xstrdup(password)); ++ ++ return save_plugin_conf_file(RHTS_NAME, conf); ++ } ++ ++ /* No changes needed -> success */ ++ return 1; ++} ++ + static const char * + get_abrt_reporting(map_string_t *conf) + { +@@ -60,6 +143,18 @@ get_abrt_reporting(map_string_t *conf) + return REPORTING_STATES[index][0]; + } + ++static const char * ++get_ureport_http_auth(map_string_t *conf) ++{ ++ return get_map_string_item_or_NULL(conf, UREPORT_HTTP_AUTH_OPTION); ++} ++ ++static const char * ++get_ureport_client_auth(map_string_t *conf) ++{ ++ return get_map_string_item_or_NULL(conf, UREPORT_CLIENT_AUTH_OPTION); ++} ++ + int main(int argc, char *argv[]) + { + setlocale(LC_ALL, ""); +@@ -78,7 +173,8 @@ int main(int argc, char *argv[]) + + abrt_init(argv); + const char *program_usage_string = _( +- "& [ "STATE_MANUAL" | "STATE_AUTO" | yes | no | 1 | 0 ]\n" ++ "& [ "STATE_MANUAL" | "STATE_AUTO" | yes | no | 1 | 0 ] \\\n" ++ " [[--anonymous] | [--username USERNAME [--password PASSWORD]] | [--certificate SOURCE]]\n" + "\n" + "Get or modify a value of the auto-reporting option. The changes will take\n" + "effect immediately and will be persistent.\n" +@@ -94,36 +190,72 @@ int main(int argc, char *argv[]) + "contains identification of the operating system, versions of the RPM packages\n" + "involved in the crash, and whether the program ran under a root user.\n" + "\n" +- "See abrt-auto-reporting(1) for more details.\n" ++ "See abrt-auto-reporting(1), reporter-ureport(1) and reporter-rhtsupport(1)\n" ++ "for more details.\n" + ); + ++ enum { ++ OPT_v = 1 << 0, ++ OPT_a = 1 << 1, ++ OPT_u = 1 << 2, ++ OPT_p = 1 << 3, ++ OPT_c = 1 << 4, ++ }; ++ ++ bool anonymous = false; ++ const char *username = NULL; ++ const char *password = NULL; ++ const char *certificate = NULL; ++ + /* Keep enum above and order of options below in sync! */ + struct options program_options[] = { + OPT__VERBOSE(&g_verbose), ++ OPT_BOOL ( 'a', "anonymous", &anonymous, _("Turns the authentication off")), ++ OPT_STRING( 'u', "username", &username, "USERNAME", _("Red Hat Support user name")), ++ OPT_STRING( 'p', "password", &password, "PASSWORD", _("Red Hat Support password, if not given, a prompt for it will be issued")), ++ OPT_STRING( 'c', "certificate", &certificate, "SOURCE", _("uReport SSL certificate paths or certificate type")), + OPT_END() + }; + +- const unsigned optind = parse_opts(argc, argv, program_options, program_usage_string); ++ const unsigned opts = parse_opts(argc, argv, program_options, program_usage_string); + + argv += optind; + argc -= optind; + +- if (argc > 2) ++ if ((opts & OPT_p) && !(opts & OPT_u)) + { +- error_msg(_("Invalid number of arguments")); ++ error_msg(_("You also need to specify --username for --password")); + show_usage_and_die(program_usage_string, program_options); + } + +- int exit_code = EXIT_FAILURE; ++ if ((opts & OPT_u) && (opts & OPT_c)) ++ { ++ error_msg(_("You can use either --username or --certificate")); ++ show_usage_and_die(program_usage_string, program_options); ++ } + +- map_string_t *conf = new_map_string(); +- if (!load_abrt_conf_file(CONF_NAME, conf)) +- goto finito; ++ if ((opts & OPT_u) && (opts & OPT_a)) ++ { ++ error_msg(_("You can use either --username or --anonymous")); ++ show_usage_and_die(program_usage_string, program_options); ++ } ++ ++ if ((opts & OPT_a) && (opts & OPT_c)) ++ { ++ error_msg(_("You can use either --anonymous or --certificate")); ++ show_usage_and_die(program_usage_string, program_options); ++ } ++ ++ if (argc > 1) ++ { ++ error_msg(_("Invalid number of arguments")); ++ show_usage_and_die(program_usage_string, program_options); ++ } + +- if (argc == 2) ++ const char *opt_value = NULL; ++ if (argc == 1) + { +- const char *const new_value = argv[1]; +- const char *opt_value = NULL; ++ const char *const new_value = argv[0]; + for (int i = 0; i < sizeof(REPORTING_STATES)/sizeof(REPORTING_STATES[0]); ++i) + { + if (strcasecmp(new_value, REPORTING_STATES[i][0]) == 0) +@@ -138,15 +270,109 @@ int main(int argc, char *argv[]) + error_msg(_("Unknown option value: '%s'\n"), new_value); + show_usage_and_die(program_usage_string, program_options); + } ++ } ++ ++ int exit_code = EXIT_FAILURE; ++ ++ map_string_t *conf = new_map_string(); ++ map_string_t *rhts_conf = new_map_string(); ++ map_string_t *rhts_conf_bck = NULL; ++ map_string_t *ureport_conf = new_map_string(); ++ map_string_t *ureport_conf_bck = NULL; ++ ++ if (!load_abrt_conf_file(CONF_NAME, conf)) ++ goto finito; + +- exit_code = set_abrt_reporting(conf, opt_value) ? EXIT_SUCCESS : EXIT_FAILURE; ++ if (!load_plugin_conf_file(RHTS_NAME, rhts_conf, false)) + goto finito; ++ ++ if (!load_plugin_conf_file(UREPORT_NAME, ureport_conf, false)) ++ goto finito; ++ ++ if ((opts & OPT_a)) ++ { ++ ureport_conf_bck = clone_map_string(ureport_conf); ++ ++ if (!clear_ureport_auth(ureport_conf)) ++ goto finito; ++ } ++ ++ if ((opts & OPT_u)) ++ { ++ char *tmp_password = NULL; ++ if (!(opts & OPT_p)) ++ { ++ password = tmp_password = ask_password(_("Password:")); ++ if (tmp_password == NULL) ++ { ++ error_msg(_("Cannot continue without password\n")); ++ goto finito; ++ } ++ } ++ ++ ureport_conf_bck = clone_map_string(ureport_conf); ++ ++ if (!set_ureport_http_auth(ureport_conf, UREPORT_RTHS_CREDENTIALS_AUTH)) ++ goto finito; ++ ++ rhts_conf_bck = clone_map_string(rhts_conf); ++ ++ if (!set_rhts_credentials(rhts_conf, username, password)) ++ { ++ save_plugin_conf_file(UREPORT_NAME, ureport_conf_bck); ++ goto finito; ++ } ++ ++ free(tmp_password); ++ } ++ ++ if ((opts & OPT_c)) ++ { ++ ureport_conf_bck = clone_map_string(ureport_conf); ++ ++ if (!set_ureport_client_auth(ureport_conf, certificate)) ++ goto finito; ++ } ++ ++ if (argc == 0) ++ { ++ printf("%s", get_abrt_reporting(conf)); ++ exit_code = EXIT_SUCCESS; ++ ++ if (g_verbose >= 1) ++ { ++ const char *tmp = get_ureport_http_auth(ureport_conf); ++ if (tmp != NULL) ++ /* Print only the part before ':' of a string like "username:password" */ ++ printf(" %s (%*s)", _("HTTP Authenticated auto reporting"), (int)(strchrnul(tmp, ':') - tmp), tmp); ++ else if ((tmp = get_ureport_client_auth(ureport_conf)) != NULL) ++ printf(" %s (%s)", _("SSL Client Authenticated auto reporting"), tmp); ++ else ++ printf(" %s", _("anonymous auto reporting")); ++ } ++ ++ putchar('\n'); ++ ++ goto finito; ++ } ++ ++ exit_code = set_abrt_reporting(conf, opt_value) ? EXIT_SUCCESS : EXIT_FAILURE; ++ ++ if (exit_code == EXIT_FAILURE) ++ { ++ if (ureport_conf_bck != NULL) ++ save_plugin_conf_file(UREPORT_NAME, ureport_conf_bck); ++ ++ if (rhts_conf_bck != NULL) ++ save_plugin_conf_file(RHTS_NAME, rhts_conf_bck); + } + +- printf("%s\n", get_abrt_reporting(conf)); +- exit_code = EXIT_SUCCESS; + + finito: ++ free_map_string(ureport_conf); ++ free_map_string(ureport_conf_bck); ++ free_map_string(rhts_conf); ++ free_map_string(rhts_conf_bck); + free_map_string(conf); + return exit_code; + } +-- +1.8.3.1 + diff --git a/SOURCES/0082-translations-pull-the-newest-PO-files.patch b/SOURCES/0082-translations-pull-the-newest-PO-files.patch new file mode 100644 index 0000000..5f267ab --- /dev/null +++ b/SOURCES/0082-translations-pull-the-newest-PO-files.patch @@ -0,0 +1,22128 @@ +From b9114e42cbfc33c4259f6eb240167c224c9ab52f Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 5 Jan 2015 02:58:58 -0500 +Subject: [ABRT PATCH 82/86] translations: pull the newest PO files + +Signed-off-by: Jakub Filak +--- + configure.ac | 2 +- + po/ach.po | 84 +++++++++++++++++++++++++++++------------------------- + po/af.po | 84 +++++++++++++++++++++++++++++------------------------- + po/aln.po | 84 +++++++++++++++++++++++++++++------------------------- + po/am.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ar.po | 84 +++++++++++++++++++++++++++++------------------------- + po/as.po | 86 +++++++++++++++++++++++++++++-------------------------- + po/ast.po | 84 +++++++++++++++++++++++++++++------------------------- + po/az.po | 84 +++++++++++++++++++++++++++++------------------------- + po/bal.po | 84 +++++++++++++++++++++++++++++------------------------- + po/be.po | 84 +++++++++++++++++++++++++++++------------------------- + po/bg.po | 84 +++++++++++++++++++++++++++++------------------------- + po/bn.po | 84 +++++++++++++++++++++++++++++------------------------- + po/bn_IN.po | 84 +++++++++++++++++++++++++++++------------------------- + po/bo.po | 84 +++++++++++++++++++++++++++++------------------------- + po/br.po | 84 +++++++++++++++++++++++++++++------------------------- + po/brx.po | 84 +++++++++++++++++++++++++++++------------------------- + po/bs.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ca.po | 84 +++++++++++++++++++++++++++++------------------------- + po/cs.po | 84 +++++++++++++++++++++++++++++------------------------- + po/cy.po | 84 +++++++++++++++++++++++++++++------------------------- + po/da.po | 84 +++++++++++++++++++++++++++++------------------------- + po/de.po | 86 +++++++++++++++++++++++++++++-------------------------- + po/de_CH.po | 84 +++++++++++++++++++++++++++++------------------------- + po/dz.po | 84 +++++++++++++++++++++++++++++------------------------- + po/el.po | 84 +++++++++++++++++++++++++++++------------------------- + po/en_GB.po | 84 +++++++++++++++++++++++++++++------------------------- + po/en_US.po | 84 +++++++++++++++++++++++++++++------------------------- + po/eo.po | 84 +++++++++++++++++++++++++++++------------------------- + po/es.po | 86 +++++++++++++++++++++++++++++-------------------------- + po/et.po | 84 +++++++++++++++++++++++++++++------------------------- + po/eu.po | 84 +++++++++++++++++++++++++++++------------------------- + po/fa.po | 84 +++++++++++++++++++++++++++++------------------------- + po/fi.po | 84 +++++++++++++++++++++++++++++------------------------- + po/fr.po | 90 +++++++++++++++++++++++++++++++--------------------------- + po/ga.po | 84 +++++++++++++++++++++++++++++------------------------- + po/gl.po | 84 +++++++++++++++++++++++++++++------------------------- + po/gu.po | 87 ++++++++++++++++++++++++++++++-------------------------- + po/he.po | 84 +++++++++++++++++++++++++++++------------------------- + po/hi.po | 84 +++++++++++++++++++++++++++++------------------------- + po/hr.po | 84 +++++++++++++++++++++++++++++------------------------- + po/hu.po | 84 +++++++++++++++++++++++++++++------------------------- + po/hy.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ia.po | 84 +++++++++++++++++++++++++++++------------------------- + po/id.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ilo.po | 84 +++++++++++++++++++++++++++++------------------------- + po/is.po | 84 +++++++++++++++++++++++++++++------------------------- + po/it.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ja.po | 86 +++++++++++++++++++++++++++++-------------------------- + po/ka.po | 84 +++++++++++++++++++++++++++++------------------------- + po/kk.po | 84 +++++++++++++++++++++++++++++------------------------- + po/km.po | 84 +++++++++++++++++++++++++++++------------------------- + po/kn.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ko.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ks.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ku.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ky.po | 84 +++++++++++++++++++++++++++++------------------------- + po/la.po | 84 +++++++++++++++++++++++++++++------------------------- + po/lo.po | 84 +++++++++++++++++++++++++++++------------------------- + po/lt.po | 84 +++++++++++++++++++++++++++++------------------------- + po/lv.po | 84 +++++++++++++++++++++++++++++------------------------- + po/mai.po | 84 +++++++++++++++++++++++++++++------------------------- + po/mg.po | 84 +++++++++++++++++++++++++++++------------------------- + po/mk.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ml.po | 84 +++++++++++++++++++++++++++++------------------------- + po/mn.po | 84 +++++++++++++++++++++++++++++------------------------- + po/mr.po | 86 +++++++++++++++++++++++++++++-------------------------- + po/ms.po | 84 +++++++++++++++++++++++++++++------------------------- + po/my.po | 84 +++++++++++++++++++++++++++++------------------------- + po/nb.po | 84 +++++++++++++++++++++++++++++------------------------- + po/nds.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ne.po | 84 +++++++++++++++++++++++++++++------------------------- + po/nl.po | 84 +++++++++++++++++++++++++++++------------------------- + po/nn.po | 84 +++++++++++++++++++++++++++++------------------------- + po/no.po | 84 +++++++++++++++++++++++++++++------------------------- + po/nso.po | 84 +++++++++++++++++++++++++++++------------------------- + po/or.po | 84 +++++++++++++++++++++++++++++------------------------- + po/pa.po | 84 +++++++++++++++++++++++++++++------------------------- + po/pl.po | 84 +++++++++++++++++++++++++++++------------------------- + po/pt.po | 84 +++++++++++++++++++++++++++++------------------------- + po/pt_BR.po | 86 +++++++++++++++++++++++++++++-------------------------- + po/ro.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ru.po | 86 +++++++++++++++++++++++++++++-------------------------- + po/ru_RU.po | 84 +++++++++++++++++++++++++++++------------------------- + po/si.po | 84 +++++++++++++++++++++++++++++------------------------- + po/sk.po | 84 +++++++++++++++++++++++++++++------------------------- + po/sl.po | 84 +++++++++++++++++++++++++++++------------------------- + po/sq.po | 84 +++++++++++++++++++++++++++++------------------------- + po/sr.po | 84 +++++++++++++++++++++++++++++------------------------- + po/sr@latin.po | 84 +++++++++++++++++++++++++++++------------------------- + po/sv.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ta.po | 85 +++++++++++++++++++++++++++++------------------------- + po/te.po | 84 +++++++++++++++++++++++++++++------------------------- + po/tg.po | 84 +++++++++++++++++++++++++++++------------------------- + po/th.po | 84 +++++++++++++++++++++++++++++------------------------- + po/tl.po | 84 +++++++++++++++++++++++++++++------------------------- + po/tr.po | 84 +++++++++++++++++++++++++++++------------------------- + po/uk.po | 84 +++++++++++++++++++++++++++++------------------------- + po/ur.po | 84 +++++++++++++++++++++++++++++------------------------- + po/uz.po | 84 +++++++++++++++++++++++++++++------------------------- + po/vi.po | 84 +++++++++++++++++++++++++++++------------------------- + po/wo.po | 84 +++++++++++++++++++++++++++++------------------------- + po/xh.po | 84 +++++++++++++++++++++++++++++------------------------- + po/zh_CN.po | 84 +++++++++++++++++++++++++++++------------------------- + po/zh_HK.po | 84 +++++++++++++++++++++++++++++------------------------- + po/zh_TW.po | 86 +++++++++++++++++++++++++++++-------------------------- + po/zu.po | 84 +++++++++++++++++++++++++++++------------------------- + 107 files changed, 4785 insertions(+), 4147 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 72c7759..9ff616d 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -238,7 +238,7 @@ ABRT_PARSE_WITH([bodhi])) + + if test -z "$NO_BODHI" + then +-PKG_CHECK_MODULES([JSON_C], [json]) ++PKG_CHECK_MODULES([JSON_C], [json-c]) + PKG_CHECK_MODULES([LIBREPORT_WEB], [libreport-web]) + AM_CONDITIONAL(BUILD_BODHI, true) + else +diff --git a/po/ach.po b/po/ach.po +index 06df762..07b6880 100644 +--- a/po/ach.po ++++ b/po/ach.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Acoli (http://www.transifex.com/projects/p/fedora-abrt/language/ach/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/af.po b/po/af.po +index 7c851dd..ef5ad7e 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Afrikaans (http://www.transifex.com/projects/p/fedora-abrt/language/af/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/aln.po b/po/aln.po +index a43707f..8ce9f00 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Albanian Gheg (http://www.transifex.com/projects/p/fedora-abrt/language/aln/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/am.po b/po/am.po +index 81af44a..8c80963 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Amharic (http://www.transifex.com/projects/p/fedora-abrt/language/am/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/ar.po b/po/ar.po +index 5d0d98c..62bf51c 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Arabic (http://www.transifex.com/projects/p/fedora-abrt/language/ar/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "تحذير" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "بريمج منطقة التنبيه لتنبيه المستخدم عن المشاكل المٌكتشفة عن طريق ABRT" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "أحمد محمد عربي " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "إخفاء" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "تقرير" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/as.po b/po/as.po +index c4dabc1..018b243 100644 +--- a/po/as.po ++++ b/po/as.po +@@ -11,9 +11,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-08 11:49+0000\n" +-"Last-Translator: Nilamdyuti Goswami \n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" ++"Last-Translator: Jakub Filak \n" + "Language-Team: Assamese (http://www.transifex.com/projects/p/fedora-abrt/language/as/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -55,141 +55,141 @@ msgstr "DBus ৰ সহায়ত NetworkManager ৰ সৈতে সংযোগ + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager ৰ সহায়ত নেটৱাৰ্কৰ অৱস্থা নিৰ্ধাৰণ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s' ৰ অধিকাৰী হব নোৱাৰি" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "'%s' লিখিবলে ডাইৰেকটৰি খোলিব নোৱাৰি" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "এটা সমস্যাৰ সন্ধান পোৱা গৈছে" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s সৰঞ্জামত এটা সমস্যাই দেখা দিছে" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s আৰু বিশ্লেষণ তথ্য জমা দিয়া হৈছে" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "অধিসূচনা বন্ধ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "আপুনি এটা বিশেষ সমস্যাৰ অধিসূচনাসমূহ মৌন কৰিব লৈছে। আপুনি এই সমস্যাৰ বাবে এটা অধিসূচনা চিহ্ন আৰু কেতিয়াও দেখি নাপাব, যি কি নহওক, ABRT এ ইয়াক চিনাক্ত কৰিব আৰু আপুনি ইয়াক ABRT GUI ৰ পৰা সংবাদন কৰিব পাৰিব।\n\nআপুনি আগবাঢ়িব খোজে নে?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "সতৰ্কবাৰ্তা" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "অধিসূচনা স্থান যি ব্যৱহাৰকাৰীসমূহক ABRT দ্বাৰা চিনাক্ত কৰা বিষয়সমূহৰ বিষয়ে জ্ঞাত কৰে" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "নীলমদ্যুতি গোস্বামী (ngoswami@redhat.com)" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "প্ৰস্থান কৰক (_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "লুকাওক" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "বিষয়ে (_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "সমস্যা দেখা দিছে" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "চিৰকালৰ বাবে উপেক্ষা কৰক" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "খোলক" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "সমস্যাক ইতিমধ্যে সংবাদন কৰা হৈছে" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "এটা জ্ঞাত সমস্যা দেখা দিছে" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "সংবাদ" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "এটা সমস্যা দেখা দিছে" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "এটা সমস্যা সংবাদন কৰা হৈছে" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "এটা নতুন সমস্যা দেখা দিছে" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "অধিসূচনা দেখুৱাব নোৱাৰি: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio চেনেলৰ পৰা পঢ়িব নোৱাৰি: '%s'" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio চেনেলত এনক'ডিং সংহতি কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio চেনেলৰ বাবে অপ্ৰতিৰোধি অৱস্থা আৰম্ভ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s' ৰ অধিকাৰী হব নোৱাৰি" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "'%s' লিখিবলে ডাইৰেকটৰি খোলিব নোৱাৰি" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "অধিবেশন ব্যৱস্থাপকলৈ সংযোগ খোলিবলৈ ব্যৰ্থ: '%s', অধিসূচনা পৰৱৰ্তী লগিনত উপস্থিত হব পাৰে" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1669,6 +1669,12 @@ msgstr "একাধিক সমস্যাসমূহ প্ৰক্ৰি + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক তথ্যৰ বাবে 'abrt-cli COMMAND --help' চাওক" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/ast.po b/po/ast.po +index 41d24bc..8795e5a 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Asturian (http://www.transifex.com/projects/p/fedora-abrt/language/ast/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Avisu" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Informe" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/az.po b/po/az.po +index 414fa12..ddbcf0e 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/fedora-abrt/language/az/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/bal.po b/po/bal.po +index ec724f3..3190aa0 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Balochi (http://www.transifex.com/projects/p/fedora-abrt/language/bal/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/be.po b/po/be.po +index 8255262..08d57ab 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Belarusian (http://www.transifex.com/projects/p/fedora-abrt/language/be/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/bg.po b/po/bg.po +index cdfbd0f..336633e 100644 +--- a/po/bg.po ++++ b/po/bg.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Bulgarian (http://www.transifex.com/projects/p/fedora-abrt/language/bg/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Не мога да взема собствеността на '%s'" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Бе открит проблем" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Бе открит проблем в пакета %s" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Внимание" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Област на известяващия аплет, информиращ за проблемите, забелязани от ABRT" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Валентин Ласков, 2011" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Скрий" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Открит е проблем" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Съобщи" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Възникна проблем" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Не мога да взема собствеността на '%s'" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Вижте 'abrt-cli COMMAND --help' за повече информация" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/bn.po b/po/bn.po +index 0f3d8f6..161b1b1 100644 +--- a/po/bn.po ++++ b/po/bn.po +@@ -13,8 +13,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Bengali (http://www.transifex.com/projects/p/fedora-abrt/language/bn/)\n" + "MIME-Version: 1.0\n" +@@ -57,141 +57,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "একটি সমস্যা সনাক্ত হয়েছে" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s প্যাকেজের মধ্যে একটি বিপর্যয় সনাক্ত করা হয়েছে" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "সতর্কবার্তা" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT দ্বারা সনাক্ত করা সমস্যা সম্বন্ধে ব্যবহারকারীদেরকে সূচিত করার উদ্দেশ্যে, বিজ্ঞপ্তিস্থলে ব্যবহারযোগ্য অ্যাপ্লেট" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "রুণা ভট্টাচার্য্য" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "আড়াল করুন" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "রিপোর্ট" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "একটি সমস্যা দেখা দিয়েছে" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1671,6 +1671,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/bn_IN.po b/po/bn_IN.po +index 2eba3f3..b2919f3 100644 +--- a/po/bn_IN.po ++++ b/po/bn_IN.po +@@ -12,8 +12,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-17 10:24+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-16 04:54+0000\n" + "Last-Translator: Saibal Ray\n" + "Language-Team: Bengali (India) (http://www.transifex.com/projects/p/fedora-abrt/language/bn_IN/)\n" + "MIME-Version: 1.0\n" +@@ -56,141 +56,141 @@ msgstr "DBus-র মাধ্যমে NetworkManager-র সাথে সংয + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager-র মাধ্যমে নেটওয়ার্ক নির্ধারণ করা সম্ভব নয়: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s'-র মালিকানা গ্রহণ করা সম্ভব নয়" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "'%s' লেখার জন্য ডিরেক্টরি খোলা যায় না" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "একটি সমস্যা সনাক্ত হয়েছে" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s প্যাকেজের মধ্যে একটি বিপর্যয় সনাক্ত করা হয়েছে" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s এবং ডায়গনস্টিক ডেটা জমা দেওয়া হয়েছে" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "সূচনাবার্তা বন্ধ করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "অাপনি একটি নির্দিষ্ট সমস্যার বিজ্ঞপ্তি নীরব করতে চলেছেন। অাপনি অার এই সমস্যার জন্য বিজ্ঞপ্তি দেখতে পাবেন না, তবে, ABRT এটি সনাক্ত করবে এবং অাপনি তা ABRT GUI থেকে রিপোর্ট করতে পারবেন।\n\nঅাপনি কি জারি রাখতে চান?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "সতর্কবার্তা" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT দ্বারা সনাক্ত করা সমস্যা সম্বন্ধে ব্যবহারকারীদেরকে সূচিত করার উদ্দেশ্যে, বিজ্ঞপ্তিস্থলে ব্যবহারযোগ্য অ্যাপ্লেট" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "রুণা ভট্টাচার্য্য" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "প্রস্থান করুন (_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "আড়াল করুন" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "সম্বন্ধে (_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "সমস্যা সনাক্ত হয়েছে" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "সবসময়ের জন্য উপেক্ষা করুন" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "খুলুন" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "সমস্যার কথা ইতিমধ্যেই জানানো হয়েছে" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "একটি জ্ঞাত সমস্যা দেখা দিয়েছে" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "রিপোর্ট" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "একটি সমস্যা দেখা দিয়েছে" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "একটি সমস্যার কথা জানানো হয়েছে" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "একটি নতুন সমস্যা দেখা দিয়েছে" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "সূচনাবার্তা প্রদর্শন করতে ব্যর্থ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio চ্যানেল থেকে পড়তে ব্যর্থ: '%s'" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio চ্যানেলের জন্য এনকোডিং নির্ধারণ করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio চ্যানেলের জন্য nonblocking মোড সক্রিয় করতে ব্যর্থ: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s'-র মালিকানা গ্রহণ করা সম্ভব নয়" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "'%s' লেখার জন্য ডিরেক্টরি খোলা যায় না" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "সেশন পরিচালকর সংযোগ খুলতে ব্যর্থ: '%s', পরবর্তী লগ-ইনে বিজ্ঞপ্তি অাবার উপস্থিত হতে পারে" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1670,6 +1670,12 @@ msgstr "একাধিক সমস্যাগুলি প্রক্রি + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "%sRed Hat গ্রাহক পোর্টালে একটি কেস তৈরি করতে 'abrt-cli report %s' চালনা করুন\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/bo.po b/po/bo.po +index 26e4695..d6e6ee9 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Tibetan (http://www.transifex.com/projects/p/fedora-abrt/language/bo/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/br.po b/po/br.po +index b56bc41..feb6c39 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Breton (http://www.transifex.com/projects/p/fedora-abrt/language/br/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/brx.po b/po/brx.po +index b84aa02..4c47ba8 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Bodo (http://www.transifex.com/projects/p/fedora-abrt/language/brx/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/bs.po b/po/bs.po +index 139cbee..7eeb745 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Bosnian (http://www.transifex.com/projects/p/fedora-abrt/language/bs/)\n" + "MIME-Version: 1.0\n" +@@ -53,141 +53,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Upozorenje" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Arnes Arnautović " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Sakrij" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Izvještaj" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Dogodio se je problem" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1667,6 +1667,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/ca.po b/po/ca.po +index a97e958..808a91b 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Catalan (http://www.transifex.com/projects/p/fedora-abrt/language/ca/)\n" + "MIME-Version: 1.0\n" +@@ -53,141 +53,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Avís" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Robert Antoni Buj Gelonch " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Oculta" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Informa" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "S'ha Produït un Problema" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1667,6 +1667,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/cs.po b/po/cs.po +index 30e7e49..9f19cf4 100644 +--- a/po/cs.po ++++ b/po/cs.po +@@ -12,8 +12,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Czech (http://www.transifex.com/projects/p/fedora-abrt/language/cs/)\n" + "MIME-Version: 1.0\n" +@@ -56,141 +56,141 @@ msgstr "Nemohu se připojit k NetworkManager přes DBus: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Nemohu určit stav sítě pomocí NetworkManager: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Nelze převzít vlastnictví '%s'" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Nemohu otevřít adresář pro zápis '%s'" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Byl zjištěn problém" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, 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:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nemohu zavřít oznámení: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Upozornění" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Jiří Moskovčák \nRadek Vokál \nNikola Pajkovsky \nPetr Písař " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Skrýt" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Detekován problém" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Otevřít" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Nahlásit" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Vyskytl se problém" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Problém byl nahlášen" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Vyskytl se nový problém" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nemohu zobrazit oznámení: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, 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:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Nelze převzít vlastnictví '%s'" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Nemohu otevřít adresář pro zápis '%s'" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1670,6 +1670,12 @@ 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:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [volby] [DIR]..." +diff --git a/po/cy.po b/po/cy.po +index f1f6821..e053817 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Welsh (http://www.transifex.com/projects/p/fedora-abrt/language/cy/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/da.po b/po/da.po +index 08c1592..0eb0ed3 100644 +--- a/po/da.po ++++ b/po/da.po +@@ -8,8 +8,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Danish (http://www.transifex.com/projects/p/fedora-abrt/language/da/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Kan ikke tage ejerskab over \"%s\"" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Et problem er blevet opdaget" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, 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:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Advarsel" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Kris Thomsen\n\nDansk-gruppen \nMere info: http://www.dansk-gruppen.dk" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Skjul" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Problem opdaget" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Rapportér" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Et problem er opstået" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Kan ikke tage ejerskab over \"%s\"" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Se \"abrt-cli COMMAND --help\" for mere information" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/de.po b/po/de.po +index f4f2f52..983b421 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -17,9 +17,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-21 00:19+0000\n" +-"Last-Translator: hpeters \n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" ++"Last-Translator: Jakub Filak \n" + "Language-Team: German (http://www.transifex.com/projects/p/fedora-abrt/language/de/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -61,141 +61,141 @@ msgstr "Keine Verbindung mit NetworkManager über DBus: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Netzwerkstatus kann über NetworkManager nicht bestimmt werden: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Eigentumsrechte von »%s« können nicht geändert werden." ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Verzeichnis kann nicht mit Schreibrechten geöffnet werden - »%s«" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Es wurde ein Absturz entdeckt" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "In Paket %s wurde ein Absturz entdeckt" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s und die Diagnostikdaten wurden übertragen" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Benachrichtigung kann nicht geschlossen werden: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "Sie sind im Begriff, Benachrichtigungen für ein bestimmtes Problem zu unterdrücken. Sie werden in Zukunft keine Benachrichtigungen für dieses Problem erhalten, ABRT wird es jedoch weiterhin aufzeichnen und Sie haben die Möglichkeit, das Problem über die ABRT-Oberfläche zu berichten.\n\nMöchten Sie fortfahren?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Warnung" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Mario Blättermann\nFabian Affolter\nRoman Spirgi" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "_Quit" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Ausblenden" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_About" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Fehler festgestellt" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Für immer ignorieren" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Öffnen" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "Dieser Fehler wurde bereits gemeldet" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Melden" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Ein Fehler ist aufgetreten" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Ein Fehler wurde gemeldet" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Ein neues Problem ist aufgetreten" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Benachrichtigung kann nicht angezeigt werden: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, 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:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Eigentumsrechte von »%s« können nicht geändert werden." +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Verzeichnis kann nicht mit Schreibrechten geöffnet werden - »%s«" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, 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:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1675,6 +1675,12 @@ msgstr "Mehrere Fehler verarbeiten" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Siehe 'abrt-cli COMMAND --help' für weitere Informationen" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [Optionen] [DIR]..." +diff --git a/po/de_CH.po b/po/de_CH.po +index 87122de..49832e2 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/fedora-abrt/language/de_CH/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/dz.po b/po/dz.po +index 3f04ead..a6cbe89 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Dzongkha (http://www.transifex.com/projects/p/fedora-abrt/language/dz/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/el.po b/po/el.po +index abdadbd..88baffc 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Greek (http://www.transifex.com/projects/p/fedora-abrt/language/el/)\n" + "MIME-Version: 1.0\n" +@@ -55,141 +55,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Προειδοποίηση" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Μικρο εφαρμογή η οποία ειδοποιηεί το χρήστη για κατάρευση εντοπίστηκε από το ABRT" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "πόντοι -επιβράβευσης-μεταφραστή" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Απόκρυψη" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Ανοιγμα" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Αναφορά" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Ένα πρόβλημα προέκυψε" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1669,6 +1669,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/en_GB.po b/po/en_GB.po +index 44d548e..eaecf3a 100644 +--- a/po/en_GB.po ++++ b/po/en_GB.po +@@ -11,8 +11,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/fedora-abrt/language/en_GB/)\n" + "MIME-Version: 1.0\n" +@@ -55,141 +55,141 @@ msgstr "Can't connect to NetworkManager over DBus: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Can't determine network status via NetworkManager: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Can't take ownership of '%s'" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Can't open directory for writing '%s'" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "A problem has been detected" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, 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:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Can't close notification: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Warning" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Bruce Cowan " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Hide" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Problem detected" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Open" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Report" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "A Problem has Occurred" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "A New Problem has Occurred" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Can't show notification: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Can't set encoding on gio channel: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Can't take ownership of '%s'" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Can't open directory for writing '%s'" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1669,6 +1669,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "See 'abrt-cli COMMAND --help' for more information" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/en_US.po b/po/en_US.po +index 91f2bb7..02a343c 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: English (United States) (http://www.transifex.com/projects/p/fedora-abrt/language/en_US/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/eo.po b/po/eo.po +index 0f0f8a3..37fc63e 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Esperanto (http://www.transifex.com/projects/p/fedora-abrt/language/eo/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/es.po b/po/es.po +index 0da7cc4..83b355f 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -23,9 +23,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-10 18:53+0000\n" +-"Last-Translator: Gerardo Rosales \n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" ++"Last-Translator: Jakub Filak \n" + "Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/language/es/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -67,141 +67,141 @@ msgstr "No puedo conectar a NetworkManager sobre DBus: %s" + 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:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "No puedo hacerme dueño de '%s'" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "No puedo abrir directorio para escribir '%s'" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Se ha detectado un problema" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, 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:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s y los datos de diagnóstico han sido enviados" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "No puedo cerrar notificación: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "Vas a silenciar las notificaciones de un problema en particular. Nunca más verás una notificación para este problema, sin embargo, ABRT seguirá detectándolos y serás capaz de reportarlo desde la interfaz de ABRT.\n\n¿Deseas continuar?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Aviso" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "traductores: Claudio Rodrigo Pereyra Diaz , Domingo Becker , Héctor Daniel Cabrera , Dennis Tobar ." + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "_Salir" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Ocultar" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_Acerca de" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Problema detectado" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Ignorar siempre" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Abierto" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "El problema fue reportado anteriormente" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Informar" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Ocurrió un problema" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Un problema ha sido reportado." + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Ha ocurrido un problema nuevo" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "No puedo mostrar notificación: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, 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:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "No puedo hacerme dueño de '%s'" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "No puedo abrir directorio para escribir '%s'" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, 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:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1681,6 +1681,12 @@ msgstr "Procesando varios problemas" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Para obtener mayor información, ver 'abrt-cli COMMAND --help' " + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/et.po b/po/et.po +index 47eae14..2be66a4 100644 +--- a/po/et.po ++++ b/po/et.po +@@ -8,8 +8,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Estonian (http://www.transifex.com/projects/p/fedora-abrt/language/et/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s' omandamine nurjus" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Probleem on tuvastatud" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Pakis %s on tuvastatud probleem" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Hoiatus" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "mihkel " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Peida" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Tuvastati probleem" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Teavita" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Tekkis probleem" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s' omandamine nurjus" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Vaata 'abrt-cli KÄSK --help' info saamiseks" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [valikud] [KATALOOG]..." +diff --git a/po/eu.po b/po/eu.po +index 5ef1e34..e4aa132 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Basque (http://www.transifex.com/projects/p/fedora-abrt/language/eu/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Abisua" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Asier Iturralde Sarasola " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Ezkutatu" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Arazo bat gertatu da" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/fa.po b/po/fa.po +index 1aa72df..e4c2e95 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Persian (http://www.transifex.com/projects/p/fedora-abrt/language/fa/)\n" + "MIME-Version: 1.0\n" +@@ -54,141 +54,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "اخطار" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "برنامه ناحیه اخطار که کاربران را درباره جریانات یافت شده توسط ای‌بی‌ار‌تی یافت شده اند" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "مترجمین" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "پنهان" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "گزارش" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "مشکلی رخ داده است" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1668,6 +1668,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/fi.po b/po/fi.po +index 3ba352b..d48b131 100644 +--- a/po/fi.po ++++ b/po/fi.po +@@ -10,8 +10,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Finnish (http://www.transifex.com/projects/p/fedora-abrt/language/fi/)\n" + "MIME-Version: 1.0\n" +@@ -54,141 +54,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Kohteen ”%s” omistajuutta ei voida ottaa" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Havaittiin ongelma" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Paketissa %s on huomattu kaatuminen" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Varoitus" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Ville-Pekka Vainio, 2009-2011." + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Piilota" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Ongelma havaittu" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Avaa" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Ilmoita" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Tapahtui ongelma" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Ongelma raportoitiin" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Tapahtui uusi ongelma" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Kohteen ”%s” omistajuutta ei voida ottaa" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1668,6 +1668,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Katso lisätietoja komennolla \"abrt-cli KOMENTO --help\"" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [valinnat] [HAK]..." +diff --git a/po/fr.po b/po/fr.po +index 8eef733..202b471 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -4,10 +4,10 @@ + # + # Translators: + # dominique bribanick , 2011,2013 +-# Gé Baylard , 2013 ++# Gé Baylard , 2013 + # erikap, 2013 + # Fil_Rouge , 2011 +-# Gé Baylard , 2014 ++# Gé Baylard , 2014 + # Jérôme Fenal , 2014 + # Jiří Moskovčák , 2011 + # Sam Friedmann , 2014 +@@ -17,9 +17,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-22 02:06+0000\n" +-"Last-Translator: Sam Friedmann \n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" ++"Last-Translator: Jakub Filak \n" + "Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/language/fr/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -61,141 +61,141 @@ msgstr "Impossible de se connecter à NetworkManager via DBus : %s" + 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:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Impossible de s'approprier « %s »" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Impossible d'ouvrir le répertoire pour écrire « %s »" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Un incident a été détecté" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, 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:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s et les données du diagnostique ont été soumis" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Impossible de fermer la notification : %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "Vous allez mettre en sourdine les notifications d'un problème en particulier. Vous ne verrez jamais plus de bulle concernant ce problème. Cependant, ABRT le détectera et vous pourrez le rapporter à partir de l'interface utilisateur ABRT.\n\nSouhaitez-vous continuer ?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Avertissement" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + 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:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "_Quitter" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Masquer" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "À _propos" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Incident détecté" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Toujours ignorer" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Ouvrir" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "L'incident a déjà été rapporté" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Rapporter" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Un incident s'est produit" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Un incident a été rapporté" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Un nouvel incident s'est produit" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Impossible d'afficher la notification : %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, 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:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Impossible de s'approprier « %s »" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Impossible d'ouvrir le répertoire pour écrire « %s »" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, 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:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1675,6 +1675,12 @@ msgstr "Traiter de multiples problèmes" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Voir « abrt-cli COMMAND --help » pour obtenir davantage d'informations" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/ga.po b/po/ga.po +index 32b3b9a..1ff0194 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Irish (http://www.transifex.com/projects/p/fedora-abrt/language/ga/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/gl.po b/po/gl.po +index 388e776..eff902e 100644 +--- a/po/gl.po ++++ b/po/gl.po +@@ -8,8 +8,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Galician (http://www.transifex.com/projects/p/fedora-abrt/language/gl/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "Non é posíbel conectar con NetworkManager por DBus: %s" + 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:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Non é posíbel asumir a propiedade sobre «%s»" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Non é posíbel abrir o directorio para escribir «%s»" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Detectouse un problema" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Detectouse un problema no paquete %s" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Non é posíbel fechar a notificación: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Advertencia" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Xosé" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Agochar" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Detectouse un problema" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Abrir" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Informe" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Produciuse un problema" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Informouse sobre un problema" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Produciuse un problema novo" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, 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:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, 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:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Non é posíbel asumir a propiedade sobre «%s»" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Non é posíbel abrir o directorio para escribir «%s»" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/gu.po b/po/gu.po +index 2c0d9f7..02fa599 100644 +--- a/po/gu.po ++++ b/po/gu.po +@@ -3,6 +3,7 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: ++# Ankit Patel , 2014 + # Jiří Moskovčák , 2011 + # Keralkumar Patel , 2014 + # sweta , 2013 +@@ -11,9 +12,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-20 08:40+0000\n" +-"Last-Translator: sweta \n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-23 07:05+0000\n" ++"Last-Translator: Ankit Patel \n" + "Language-Team: Gujarati (http://www.transifex.com/projects/p/fedora-abrt/language/gu/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -55,141 +56,141 @@ msgstr "DBus પર NetworkManager સાથે જોડાઇ શકાતુ + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager મારફતે નેટવર્ક પરિસ્થિતિને નક્કી કરી શકાતુ નથી: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s' ની માલિકી લઇ શકાતી નથી" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "'%s' ને લખવા માટે ડિરેક્ટરીને ખોલી શકાતી નથી" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "સમસ્યાને શોધી દેવામાં આવી છે" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s પેકેજમાં સમસ્યાને શોધી દેવામાં આવી છે" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s અને તપાસ માહિતી જમા થઇ ગઇ" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "સૂચનાને બંધ કરી શકાતી નથી: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "તમે ખાસ સમસ્યાઓની સૂચનાઓને મૂંગી કરી રહ્યા છો. તમે ફરી આ સમસ્યા માટે સૂચના બબલને કદી જોશો નહિં, છતાંપણ, ABRT તેને શોધશે અને તમે ABRT GUI માંથી તેનો અહેવાલ કરવા માટે સક્ષમ હશો.\n\nશું તમે ચાલુ રાખવા માંગો છો?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "ચેતવણી" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "સૂચના વિસ્તાર એપલેટ કે જે ABRT દ્દારા શોધેલ મુદ્દાઓ વિશે વપરાશકર્તાને સૂચિત કરે છે" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "શ્ર્વેતા કોઠારી " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "બહાર નીકળો (_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "છુપાડો" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "વિશે (_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "સમસ્યા મળી" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "હંમેશ માટે અવગણો" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "ખોલો" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "સમસ્યાનો પહેલાથી જ અહેવાલ અપાઇ ગયો છે" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "જાણીતી સમસ્યા ઉદ્ભવી" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "અહેવાલ" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "સમસ્યા ઉદ્ભવી" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "સમસ્યાનો અહેવાલ કરી દેવામાં આવ્યો છે" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "નવી સમસ્યા ઉદ્ભવી" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "સૂચનાને બતાવી શકાતુ નથી: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ચેનલમાંથી વાંચી શકાતુ નથી: '%s'" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ચેનલ પર એનકોડીંગ સુયોજિત કરી શકાતુ નથી: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ચેનલ માટે બ્લોક ન થાય તેવી સ્થિતિને ચાલુ કરી શકાતી નથી: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s' ની માલિકી લઇ શકાતી નથી" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "'%s' ને લખવા માટે ડિરેક્ટરીને ખોલી શકાતી નથી" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "સત્ર સંચાલકમાં જોડાણને ખોલવા માટે નિષ્ફળતા: '%s', સૂચના એ આગળનાં પર્વેશે ફરી દેખાઇ શકે છે" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1669,6 +1670,12 @@ msgstr "ઘણી સમસ્યાઓની પ્રક્રિયા" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "વધારે જાણકારી માટે 'abrt-cli COMMAND --help' જુઓ" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "%sRed Hat Customer Portal માં કેસ બનાવવા માટે 'abrt-cli report %s' ચલાવો\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/he.po b/po/he.po +index 29247a9..0bbed83 100644 +--- a/po/he.po ++++ b/po/he.po +@@ -10,8 +10,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Hebrew (http://www.transifex.com/projects/p/fedora-abrt/language/he/)\n" + "MIME-Version: 1.0\n" +@@ -54,141 +54,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "אזהרה" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "יישומון לאזור ההתרעות שמתריע למשתמש על בעיות שזוהו ע\"י ABRT" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "אלעד אלפסה \nאסף ספיר " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "הסתר" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "דווח" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "התרחשה תקלה" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1668,6 +1668,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/hi.po b/po/hi.po +index 0a12010..cc43638 100644 +--- a/po/hi.po ++++ b/po/hi.po +@@ -18,8 +18,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-17 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-17 14:04+0000\n" + "Last-Translator: Rajesh Ranjan \n" + "Language-Team: Hindi (http://www.transifex.com/projects/p/fedora-abrt/language/hi/)\n" + "MIME-Version: 1.0\n" +@@ -62,141 +62,141 @@ msgstr "NetworkManager से DBus पर कनेक्ट नहीं कर + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager के द्वारा संजाल स्थिति निर्धारित नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s' का स्वामित्व नहीं ले सकता है" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "लिखने के लिए निर्देशिका नहीं खोल सकते हैं '% s' " ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "एक समस्या पाई गई" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s संकुल में एक समस्या पाई गई" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s और निदानकारी आँकड़ा सौंपे गए हैं" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "अधिसूचना बंद नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "आप खास समस्या की अधिसूचना को मूक करने जा रहे हैं. आप इस समस्या के लिए फिर से अधिसूचना बबल नहीं देखेंगे, हालाँकि, ABRT इसे पता करेगा और आप इसे ABRT GUI से रिपोर्ट कर पाएँगे.\n\nक्या आप जारी रखना चाहते हैं?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "चेतावनी" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "अधिसूचना क्षेत्र एप्लेट जो ABRT के द्वारा पता किए मुद्दों के बारे में उपयोक्ता को सूचित करता है" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "राजेश रंजन (rranjan@redhat.com, rajeshkajha@yahoo.com)" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "बाहर (_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "छिपाएँ" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "परिचय (_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "समस्या पाई गई" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "सदा के लिये अनदेखा करें" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "खोलें" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "समस्या को पहले ही रिपोर्ट किया गया है" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "एक ज्ञात समस्या आ गई है" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "रिपोर्ट" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "एक त्रुटि हुई" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "एक समस्या की सूचना दी गई है" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "एक नई समस्या आ गई है" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "अधिसूचना नहीं दिखा सकता है: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio चैनल से पढ़ा नहीं जा सकता: '% s'" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "जिओ चैनल पर एन्कोडिंग सेट नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "जिओ चैनल के लिए गैर ब्लॉकिंग पर चालू नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s' का स्वामित्व नहीं ले सकता है" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "लिखने के लिए निर्देशिका नहीं खोल सकते हैं '% s' " +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "सत्र प्रबंधक में कनेक्शन खोलने में विफल: '%s', अगले लॉगिन में अधिसूचना फिर प्रकट हो सकता है" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1676,6 +1676,12 @@ msgstr "एकाधिक समस्या की प्रक्रिया + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "'abrt-cli COMMAND --help' को अधिक सूचना के लिए देखें" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "Red Hat ग्राहक पोर्टल के लिए 'abrt-cli रिपोर्ट %s' %sचलाएँ\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/hr.po b/po/hr.po +index 1d11c7b..f73253f 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Croatian (http://www.transifex.com/projects/p/fedora-abrt/language/hr/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/hu.po b/po/hu.po +index ae85e0a..0750a5e 100644 +--- a/po/hu.po ++++ b/po/hu.po +@@ -12,8 +12,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora-abrt/language/hu/)\n" + "MIME-Version: 1.0\n" +@@ -56,141 +56,141 @@ msgstr "DBus szolgáltatáson keresztül elérhetetlen a NetworkManager: %s" + 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:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s' tulajdona nem átvehető" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Mappa nem megnyitható írásra: '%s'" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Problémát találtunk" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s csomagban egy hiba tapasztalható" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Jelzés nem bezárható: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Figyelmeztetés" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Zoltan Hoppar " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "_Kilépés" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Elrejt" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_Rólunk" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Probléma felfedezve" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Mindig figyelmen kivül hagyja" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Megnyitás" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "A probléma már bejelentésre került." + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Jelentés" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Hiba történt" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "A probléma már bejelentésre került." + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Új probléma merült fel" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Jelzés nem megjeleníthető: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, 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:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s' tulajdona nem átvehető" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Mappa nem megnyitható írásra: '%s'" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, 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:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1670,6 +1670,12 @@ msgstr "" + 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:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [opciók] [DIR]..." +diff --git a/po/hy.po b/po/hy.po +index f288453..a48c9fa 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Armenian (http://www.transifex.com/projects/p/fedora-abrt/language/hy/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/ia.po b/po/ia.po +index 8ffd8ca..b89f748 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Interlingua (http://www.transifex.com/projects/p/fedora-abrt/language/ia/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Celar" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Reportar" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/id.po b/po/id.po +index c26fc46..4b3c3f3 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Indonesian (http://www.transifex.com/projects/p/fedora-abrt/language/id/)\n" + "MIME-Version: 1.0\n" +@@ -56,141 +56,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Masalah terdeteksi" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Peringatan" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "penghargaan pada penterjemah" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Sembunyi" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Laporan" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Masalah telah terjadi" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1670,6 +1670,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/ilo.po b/po/ilo.po +index d5f75c0..add264b 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Iloko (http://www.transifex.com/projects/p/fedora-abrt/language/ilo/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/is.po b/po/is.po +index ada7a5d..243537e 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Icelandic (http://www.transifex.com/projects/p/fedora-abrt/language/is/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/it.po b/po/it.po +index 31c6729..d9eece6 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -18,8 +18,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-22 02:49+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-24 01:54+0000\n" + "Last-Translator: fvalen \n" + "Language-Team: Italian (http://www.transifex.com/projects/p/fedora-abrt/language/it/)\n" + "MIME-Version: 1.0\n" +@@ -62,141 +62,141 @@ msgstr "Impossibile collegarsi a NetworkManager attraverso DBus: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Impossibile determinare lo stato della rete tramite NetworkManager: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Impossibile ottenere la proprietà di '%s'" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Impossibile aprire la directory per la scrittura: '%s'" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "È stato rilevato un errore" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "È stato rilevato un errore nel pacchetto %s" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s e i dati diagnostici sono stati inviati" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Impossibile chiudere la notifica: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "Stai per disattivare le notifiche di un problema specifico. Così facendo non sarai in grado di visualizzare l'avviso relativo a questo problema, tuttavia ABRT continuerà con il rilevamento e ti permetterà di eseguire il riporto dalla GUI di ABRT.\n\nDesideri continuare?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Attenzione" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Silvio Pierro , 2013." + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "_Esci" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Nascondi" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_Informazioni" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Problema rilevato" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Ignora sempre" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Apri" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "Il problema è stato già riportato" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Notifica" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Si è verificato un problema" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "È stato riportato un problema" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Si è verificato un nuovo problema" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Impossibile mostrare la notifica: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Impossibile impostare la codifica sul canale gio: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Impossibile ottenere la proprietà di '%s'" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Impossibile aprire la directory per la scrittura: '%s'" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, 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:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1676,6 +1676,12 @@ msgstr "Elabora problemi multipli" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Consultare 'abrt-cli COMMAND --help' per maggiori informazioni" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "%sEsegui 'abrt-cli report %s' per creare un caso nel Portale clienti di Red Hat\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [opzioni] [DIR]..." +diff --git a/po/ja.po b/po/ja.po +index 47ac4f0..926478e 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -16,9 +16,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-21 05:22+0000\n" +-"Last-Translator: Kenzo Moriguchi \n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-16 09:16+0000\n" ++"Last-Translator: noriko \n" + "Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-abrt/language/ja/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -60,141 +60,141 @@ msgstr "DBus で NetworkManager に接続できません: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager でネットワークの状態を判断できません: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s' の所有権を取得できません" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "'%s' を書き込むためのディレクトリを開くことができません" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "問題が検出されました" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s パッケージ内で問題が検出されました" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s および診断データが送信されました" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "通知を閉じることができません: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "特定の問題の通知を無音にします。この問題では通知ポップアップが表示されませんが、ABRT はこれを検出し、ABRT GUI からこれを報告することができます。\n\n続けますか?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "警告" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT によって検出された問題をユーザーに通知するための通知エリアアプレット" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Casey Jones \nHajime Taira \nNoriko Mizumoto " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "終了 (_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "非表示" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "ABRT について (_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "問題を発見しました" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "永久に無視" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "開く" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "この問題はすでに報告済みです" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "既知の問題が発生しました" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "報告する" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "問題が発生しました" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "問題が報告されました" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "新しい問題が発生しました" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "通知を表示できません: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio チャネルからの読み込みができません: '%s'" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio チャネルでエンコーディングを設定できません: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio チャネルのノンブロッキングモードを有効にできません: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s' の所有権を取得できません" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "'%s' を書き込むためのディレクトリを開くことができません" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "セッションマネージャに対する接続を開くのに失敗しました: 「%s」、次回のログイン時に通知が再表示される場合があります。" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1674,6 +1674,12 @@ msgstr "複数の問題を処理する" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "詳細については abrt-cli COMMAND --help を参照してください" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "Red Hat カスタマーポータルにケースを作成するため %s'abrt-cli report を実行する%s'\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [オプション] [DIR]..." +diff --git a/po/ka.po b/po/ka.po +index 878158c..f00d6ff 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Georgian (http://www.transifex.com/projects/p/fedora-abrt/language/ka/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "თარჯიმნები" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "დამალვა" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "ანგარიში" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/kk.po b/po/kk.po +index 5ef671d..2ed069d 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Kazakh (http://www.transifex.com/projects/p/fedora-abrt/language/kk/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/km.po b/po/km.po +index 68adc69..2e204a1 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Khmer (http://www.transifex.com/projects/p/fedora-abrt/language/km/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/kn.po b/po/kn.po +index 2ed8a8b..6b1cc01 100644 +--- a/po/kn.po ++++ b/po/kn.po +@@ -12,8 +12,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-17 09:44+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-15 08:15+0000\n" + "Last-Translator: shanky \n" + "Language-Team: Kannada (http://www.transifex.com/projects/p/fedora-abrt/language/kn/)\n" + "MIME-Version: 1.0\n" +@@ -56,141 +56,141 @@ msgstr "DBus ಮುಖಾಂತರ NetworkManager ಗೆ ಸಂಪರ್ಕಸ + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager ಮುಖಾಂತರ ಜಾಲಬಂಧ ಸ್ಥಿತಿಯನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s' ನ ಮಾಲಿಕತ್ವವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "ಕೋಶವನ್ನು '%s' ಬರೆಯುವ ಸಲುವಾಗಿ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ " ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "ಒಂದು ತೊಂದರೆಯು ಕಂಡುಬಂದಿದೆ" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s ಎಂಬ ಪ್ಯಾಕೇಜಿನಲ್ಲಿ ಒಂದು ತೊಂದರೆಯು ಕಂಡುಬಂದಿದೆ" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s ಮತ್ತು ದೋಷಪತ್ತೆಯ ಮಾಹಿತಿಯನ್ನು ಸಲ್ಲಿಸಲಾಗಿದೆ" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "ಸೂಚನೆಯನ್ನು ಮುಚ್ಚಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "ನೀವು ಒಂದು ನಿರ್ದಿಷ್ಟ ತೊಂದರೆಯ ಸೂಚನೆಗಳನ್ನು ಮೂಕಗೊಳಿಸಲಿದ್ದೀರಿ. ಈ ತೊಂದರೆಗಾಗಿ ನಿಮಗೆ ಮುಂದೆ ಯಾವುದೆ ಸೂಚನೆಯು ಕಾಣಿಸಿಕೊಳ್ಳುವುದಿಲ್ಲ, ಹಾಗಿದ್ದರೂ ಸಹ ABRTಯು ಅದನ್ನು ಪತ್ತೆ ಮಾಡುತ್ತದೆ ಮತ್ತು ಅದನ್ನು ನೀವು ABRT GUI ಇಂದ ವರದಿ ಮಾಡಲು ಸಾಧ್ಯವಿರುತ್ತದೆ.\n\nನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುವಿರಾ?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "ಎಚ್ಚರಿಕೆ" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT ಇಂದ ಪತ್ತೆ ಮಾಡಲಾದ ತೊಂದರೆಗಳನ್ನು ಬಳಕೆದಾರರಿಗೆ ಸೂಚಿಸುವ ಸೂಚನಾ ಸ್ಥಳದ ಆಪ್ಲೆಟ್" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "ಶಂಕರ್ ಪ್ರಸಾದ್ " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "ನಿರ್ಗಮಿಸು (_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "ಅಡಗಿಸು" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "ಇದರ ಬಗ್ಗೆ (_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "ತೊಂದರೆಯು ಕಂಡುಬಂದಿದೆ" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "ಯಾವಾಗಲೂ ಕಡೆಗಣಿಸು" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "ತೆರೆ" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "ತೊಂದರೆಯನ್ನು ಈಗಾಗಲೆ ವರದಿ ಮಾಡಲಾಗಿದೆ" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "ಒಂದು ಗೊತ್ತಿರುವ ತೊಂದರೆಯು ಎದುರಾಗಿದೆ" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "ವರದಿ" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "ದೋಷವೊಂದು ಸಂಭವಿಸಿದೆ" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "ಒಂದು ತೊಂದರೆಯನ್ನು ವರದಿ ಮಾಡಲಾಗಿದೆ" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "ಒಂದು ಹೊಸ ತೊಂದರೆಯು ಕಂಡುಬಂದಿದೆ" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "ಸೂಚನೆಯನ್ನು ತೋರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ಮಾರ್ಗದಿಂದ ಓದಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: '%s'" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ಚಾನಲ್‌ನಲ್ಲಿ ಎನ್ಕೋಡಿಂಗ್ ಅನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ಚಾನಲ್‌ಗಾಗಿ ಬ್ಲಾಕಿಂಗ್ ಸ್ಥಿತಿಯಲ್ಲದ ಕ್ರಮವನ್ನು ಆನ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s' ನ ಮಾಲಿಕತ್ವವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "ಕೋಶವನ್ನು '%s' ಬರೆಯುವ ಸಲುವಾಗಿ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ " +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "ಅಧಿವೇಶನದ ವ್ಯವಸ್ಥಾಪಕಕ್ಕೆ ಸಂಪರ್ಕವನ್ನು ತೆರೆಯಲು ವಿಫಲಗೊಂಡಿದೆ: '%s', ಸೂಚನೆಯು ಮುಂದಿನ ಲಾಗಿನ್‌ನಲ್ಲಿ ಮರಳಿ ಕಾಣಿಸಿಕೊಳ್ಳುತ್ತದೆ" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1670,6 +1670,12 @@ msgstr "ಅನೇಕ ತೊಂದರೆಗಳನ್ನು ಸಂಸ್ಕರಿ + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ 'abrt-cli COMMAND --help' ಅನ್ನು ನೋಡಿ" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "%sRed Hat ಕಸ್ಟಮರ್‌ ಪೋರ್ಟಲ್‌ನಲ್ಲಿ ಒಂದು ಪ್ರಕರಣವನ್ನು ತೆರೆಯಲು 'abrt-cli report %s' ಅನ್ನು ಚಲಾಯಿಸಿ\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/ko.po b/po/ko.po +index 716104f..b8769f9 100644 +--- a/po/ko.po ++++ b/po/ko.po +@@ -12,8 +12,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-22 06:29+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-16 07:58+0000\n" + "Last-Translator: eukim \n" + "Language-Team: Korean (http://www.transifex.com/projects/p/fedora-abrt/language/ko/)\n" + "MIME-Version: 1.0\n" +@@ -56,141 +56,141 @@ msgstr "DBus를 통해 NetworkManager에 연결할 수 없음: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager를 통해 네트워크 상태를 지정할 수 없음: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s'의 소유 권한을 갖을 수 없음 " ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "'%s'을 작성하기 위해 디렉토리를 열 수 없습니다 " ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "문제가 감지되었습니다 " + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s 패키지에서 문제가 감지되었습니다 " + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s 및 진단 데이터가 전송되었습니다 " + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "통지를 종료할 수 없음: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "특정 문제에 대한 알림을 무음으로 합니다. 이 문제에 대한 알림 팝업이 표시되지 않지만, ABRT가 이를 감지하여 ABRT GUI에 보고할 수 있습니다.\n\n계속 진행하시겠습니까?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "경고" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT가 감지한 문제를 사용자에게 통지하기 위한 통지 영역 애플릿" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "김은주\n오현석" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "종료 (_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "숨기기" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "ABRT에 대해 (_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "문제가 감지되었습니다" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "영원히 무시" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "열기 " + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "이미 문제가 보고되었습니다 " + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "이미 알려진 문제가 발생했습니다 " + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "보고 " + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "한 가지 문제가 발생했습니다 " + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "문제가 보고되었습니다 " + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "새로운 문제가 발생했습니다 " + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "통지를 표시할 수 없음: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio 채널에서 읽을 수 없음: '%s'" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio 채널에서 인코딩을 설정할 수 없음: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio 채널의 비 차단 모드를 활성화할 수 없습니다: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s'의 소유 권한을 갖을 수 없음 " +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "'%s'을 작성하기 위해 디렉토리를 열 수 없습니다 " +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "세션 관리자로의 연결을 오픈하는데 실패했습니다: '%s', 다음에 로그인할 때 알림이 다시 나타날 수 있습니다 " + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1670,6 +1670,12 @@ msgstr "여러 문제 처리 " + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "보다 자세한 내용은 'abrt-cli COMMAND --help'에서 참조하십시오 " + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "%s 'abrt-cli report %s'를 실행하여 Red Hat 고객 포털에 기술 문의를 작성합니다 \n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/ks.po b/po/ks.po +index 939d388..fe93986 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Kashmiri (http://www.transifex.com/projects/p/fedora-abrt/language/ks/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/ku.po b/po/ku.po +index 9e6259b..4c9eb74 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Kurdish (http://www.transifex.com/projects/p/fedora-abrt/language/ku/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/ky.po b/po/ky.po +index 9633879..77b08c4 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Kirgyz (http://www.transifex.com/projects/p/fedora-abrt/language/ky/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/la.po b/po/la.po +index 57d3157..0e2368f 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Latin (http://www.transifex.com/projects/p/fedora-abrt/language/la/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/lo.po b/po/lo.po +index 8c1683e..11b30a1 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Lao (http://www.transifex.com/projects/p/fedora-abrt/language/lo/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/lt.po b/po/lt.po +index 0bcfa58..93af54e 100644 +--- a/po/lt.po ++++ b/po/lt.po +@@ -8,8 +8,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Lithuanian (http://www.transifex.com/projects/p/fedora-abrt/language/lt/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "Nepavyksta prisijungti prie NetworkManager per DBus: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Nepavyksta nustatyti tinklo būsenos per NetworkManager: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Nepavyko tapti „%s“ savininku" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Nepavyksta atverti katalogo rašymui „%s“" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Aptikta problema" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Aptikta problema %s pakete" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nepavyksta užverti pranešimo: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Įspėjimas" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "išvertė:\nAurimas Černius " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "_Išeiti" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Slėpti" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_Apie" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Aptikta problema" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Visada nepaisyti" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Atverti" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "Apie šią problemą jau pranešta" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Pranešti" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Kilo problema" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Apie šią problemą jau pranešta" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Kilo nauja problema" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nepavyksta parodyti pranešimo: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Nepavyksta nustatyti gio kanalo koduotės: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Nepavyko tapti „%s“ savininku" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Nepavyksta atverti katalogo rašymui „%s“" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, 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:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Daugiau informacijos gausite įvykdę „abrt-cli KOMANDAS --help“" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [parinktys] [KAT]..." +diff --git a/po/lv.po b/po/lv.po +index 6da4946..cb47df7 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Latvian (http://www.transifex.com/projects/p/fedora-abrt/language/lv/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nevar aizvērt paziņojumu: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Brīdinājums" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Paslēpt" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Atvērt" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Ziņot" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/mai.po b/po/mai.po +index 581a885..5511cc6 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Maithili (http://www.transifex.com/projects/p/fedora-abrt/language/mai/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/mg.po b/po/mg.po +index 71cb06b..2859390 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Malagasy (http://www.transifex.com/projects/p/fedora-abrt/language/mg/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/mk.po b/po/mk.po +index 994e13f..14d4a81 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Macedonian (http://www.transifex.com/projects/p/fedora-abrt/language/mk/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/ml.po b/po/ml.po +index d651941..7e22223 100644 +--- a/po/ml.po ++++ b/po/ml.po +@@ -9,8 +9,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-20 11:40+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-23 07:06+0000\n" + "Last-Translator: Ani Peter \n" + "Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora-abrt/language/ml/)\n" + "MIME-Version: 1.0\n" +@@ -53,141 +53,141 @@ msgstr "DBus-ല്‍ NetworkManager-ലേക്കു് കണക്ടു + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager മുഖേന നെറ്റ്‌വര്‍ക്ക് അവസ്ഥ കണ്ടുപിടിയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s'-ന്റെ അവകാശം സ്വീകരിയ്ക്കുവാന്‍ സാധ്യമല്ല" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "'%s'സൂക്ഷിയ്ക്കുന്നതിനായി ഡയറക്ടറി തുറക്കുവാന്‍ സാധ്യമല്ല" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "ഒരു പ്രശ്നം കണ്ടുപിടിച്ചിരിയ്ക്കുന്നു" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s പാക്കേജില്‍ ഒരു പ്രശ്നം കണ്ടുപിടിച്ചിരിയ്ക്കുന്നു" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s, ഡയഗ്നസ്റ്റിക്ക് ഡേറ്റാ രേഖപ്പെടുത്തിയിരിയ്ക്കുന്നു" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "അറിയിപ്പു് അടയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "ഒരു പ്രത്യേക പ്രശ്നത്തിന്റെ അറിയിപ്പുകള്‍ നിങ്ങള്‍ നിശബ്ദമാക്കുവാന്‍ പോകുന്നു. ഈ പ്രശ്നത്തിനു് ഇനി ഒരിക്കലും കുമിള അറിയിപ്പ് ലഭ്യമാകുകയില്ല. എന്നിരുന്നാലും, എബിആര്‍ടി ഇതു് കണ്ടുപിടിച്ച്, നിങ്ങള്‍ക്ക് എബിആര്‍ടി ജിയുഐയില്‍ നിന്നും രേഖപ്പെടുത്താം.\n\nനിങ്ങള്‍ക്ക് തുടരണമോ?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "മുന്നറിയിപ്പു്" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT കണ്ടുപിടിക്കുന്ന പ്രശ്നങ്ങളെപ്പറ്റി ഉപയോക്താവിനെ അറിയിക്കുന്നതിനായുള്ള ആപ്ലെറ്റ്" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Ani Peter | അനി പീറ്റര്‍ " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "പു_റത്തു് കടക്കുക " + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "അദൃശ്യമാക്കുക" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "സം_ബന്ധിച്ചു് " + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "പ്രശ്നം കണ്ടുപിടിച്ചിരിയ്ക്കുന്നു" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "എന്നേക്കുമായി ഉപേക്ഷിയ്ക്കുക" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "തുറക്കുക" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "പ്രശ്നം നിലവില്‍ രേഖപ്പെടുത്തിയിരിയ്ക്കുന്നു" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "പരിചിതമായൊരു പ്രശ്നമുണ്ടായിരിയ്ക്കുന്നു" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "റിപോര്‍ട്ട്" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "ഒരു പ്രശ്നം ഉണ്ടായിരിയ്ക്കുന്നു" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "ഒരു പ്രശ്നം രേഖപ്പെടുത്തിയിരിയ്ക്കുന്നു" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "പുതിയൊരു പ്രശ്നമുണ്ടായിരിയ്ക്കുന്നു" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "അറിയിപ്പു് കാണിയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ചാനലില്‍ നിന്നും ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല : '%s'" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ചാനലില്‍ എന്‍കോഡിങ് സജ്ജമാക്കുവാന്‍ സാധ്യമല്ല : '%s'" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ചാനലിനു് nonblocking മോഡ് ഓണ്‍ ചെയ്യുവാാന്‍ സാധ്യമല്ല: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s'-ന്റെ അവകാശം സ്വീകരിയ്ക്കുവാന്‍ സാധ്യമല്ല" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "'%s'സൂക്ഷിയ്ക്കുന്നതിനായി ഡയറക്ടറി തുറക്കുവാന്‍ സാധ്യമല്ല" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "സെഷന്‍ മാനേജറിലേക്കുള്ള കണക്ഷന്‍ തുറക്കുന്നതില്‍ പരാജയപ്പെട്ടു: '%s', അടുത്ത തവണ പ്രവേശിയ്ക്കുമ്പോള്‍ അറിയിപ്പു് വീണ്ടും ലഭ്യമാകുന്നു" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1667,6 +1667,12 @@ msgstr "അനവധി പ്രശ്നങ്ങള്‍ നടപ്പി + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി 'abrt-cli COMMAND --help' കാണുക." + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "Red Hat കസ്റ്റമര്‍ പോര്‍ട്ടലില്‍ കേസ് തയ്യാറാക്കുന്നതിനു് %sRun 'abrt-cli report %s'\n\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/mn.po b/po/mn.po +index 35e11cf..1f55a61 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Mongolian (http://www.transifex.com/projects/p/fedora-abrt/language/mn/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/mr.po b/po/mr.po +index be9fa83..702f1ea 100644 +--- a/po/mr.po ++++ b/po/mr.po +@@ -9,8 +9,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-16 05:25+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-15 02:31+0000\n" + "Last-Translator: sandeeps \n" + "Language-Team: Marathi (http://www.transifex.com/projects/p/fedora-abrt/language/mr/)\n" + "MIME-Version: 1.0\n" +@@ -53,141 +53,141 @@ msgstr "डिबस: %s वरील नेटवर्कमॅनेजरश + msgid "Can't determine network status via NetworkManager: %s" + msgstr "नेटवर्कमॅनेजर: %s तर्फे नेटवर्क स्थिती ओळखणे अशक्य" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s' ची मालकी प्राप्त करणे अशक्य" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "'%s' लिहण्याकरीता डिरेक्ट्रि उघडणे अशक्य" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "अडचण आढळली" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s संकुलमध्ये अडचण आढळली" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s आणि विश्लेषीत माहिती सादर केली आहे" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "सूचना: %s बंद करणे अशक्य" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "ठराविक अडचणींच्या सूचना तुम्ही बंद करणार आहात. या अडचणीकरिता तुम्हाला सूचना पटल पुन्हा आढळणार नाही, तरी, ABRT ला ते आढळेल आणि त्यास ABRT GUI मार्फत कळविणे शक्य होईल.\n\nतुम्हाला पुढे जायचे?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "सावधानता" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "सूचना क्षेत्र ॲप्लेट जे वापरकर्त्याला ABRT द्वारे आढळलेल्या अडचणींविषयी अवगत करते" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "संदिप शेडमाके , 2010, 2011." + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "बाहेर पडा (_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "लपवा" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "विषयी (_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "अडचण आढळली" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "नेहमीकरिता दुर्लक्ष करा" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "उघडा" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "अडचण आधीच कळवले गेले आहे" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "परिचीत अडचण आढळली" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "रिपोर्ट" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "अडचण निर्माण झाली" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "अडचण कळवली" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "नवीन अडचण आढळली" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "सूचना: %s दाखवणे अशक्य" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio वाहिनी: '%s' पासून वाचणे अशक्य" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio वाहिनी: %s वरील एंकोडिंग सेट करणे अशक्य" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio वाहिनी: %s करीता नॉनब्लॉकिंग मोड सुरू करणे अशक्य" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s' ची मालकी प्राप्त करणे अशक्य" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "'%s' लिहण्याकरीता डिरेक्ट्रि उघडणे अशक्य" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "सत्र व्यवस्थापक: '%s' सह जोडणी उघडण्यास अपयशी, पुढील प्रवेशवेळी सूचना पुन्हा आढळेल" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1049,7 +1049,7 @@ msgstr "प्रॉब्लेम डिरेक्ट्री जग वा + + #: ../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:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" +@@ -1667,6 +1667,12 @@ msgstr "बहु अडणी विश्लेषीत करा" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "अधिक माहितीकरीता 'abrt-cli COMMAND --help' पहा" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "Red Hat Customer Portal अंतर्गत घटना निर्माण करण्यासाठी %sरन 'abrt-cli report %s'\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/ms.po b/po/ms.po +index e891e31..9d267f4 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Malay (http://www.transifex.com/projects/p/fedora-abrt/language/ms/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/my.po b/po/my.po +index f461082..1491484 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Burmese (http://www.transifex.com/projects/p/fedora-abrt/language/my/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/nb.po b/po/nb.po +index 8c080e3..e98d3d6 100644 +--- a/po/nb.po ++++ b/po/nb.po +@@ -9,8 +9,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/fedora-abrt/language/nb/)\n" + "MIME-Version: 1.0\n" +@@ -53,141 +53,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Kan ikke ta eierskap av «%s»" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Et problem ble funnet" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Et problem ble funnet i pakken %s" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Advarsel" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Kjartan Maraas " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Skjul" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Problem funnet" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Rapporter" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Et problem har oppstått" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Kan ikke ta eierskap av «%s»" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1667,6 +1667,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/nds.po b/po/nds.po +index 65ade14..ef5b072 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Low German (http://www.transifex.com/projects/p/fedora-abrt/language/nds/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Verbargen" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Berichten" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/ne.po b/po/ne.po +index ab4aa15..228a615 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Nepali (http://www.transifex.com/projects/p/fedora-abrt/language/ne/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/nl.po b/po/nl.po +index 1f32319..824d3ec 100644 +--- a/po/nl.po ++++ b/po/nl.po +@@ -10,8 +10,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-22 12:26+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 19:35+0000\n" + "Last-Translator: Geert Warrink \n" + "Language-Team: Dutch (http://www.transifex.com/projects/p/fedora-abrt/language/nl/)\n" + "MIME-Version: 1.0\n" +@@ -54,141 +54,141 @@ msgstr "Kan niet verbinden met NetworkManager via DBus: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Kan de netwerkstatus via NetworkManager niet bepalen: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Kan '%s' niet claimen" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Kan map niet openen voor het schrijven van '%s'" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Er is een probleem ontdekt" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, 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:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s en de diagnosedata is ingediend" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Kan notificatie niet sluiten: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "Je gaat de notificaties van een bepaald probleem tot zwijgen brengen. Je zult nooit meer een notificatie bubbel voor dit probleem zien, ABRT zal het echter detecteren en je kunt het rapporteren vanuit de ABRT GUI.\n\nWil je verdergaan?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Waarschuwing" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Geert Warrink \nRichard van der Luit " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "_Verlaten" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Verbergen" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_Over" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Er is een probleem ontdekt" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Altijd negeren" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Open" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "Het probleem is al gerapporteerd" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Rapport" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Er is een probleem opgetreden" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Er is een probleem gerapporteerd" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Er Is Een Nieuw Probleem Opgetreden" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Kan notificatie niet tonen: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Kan codering op gio kanaal niet instellenl: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Kan '%s' niet claimen" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Kan map niet openen voor het schrijven van '%s'" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, 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:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1668,6 +1668,12 @@ msgstr "Verwerken van meerdere problemen" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Zie 'abrt-cli COMMANDO --help' voor meer informatie" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "%sVoer 'abrt-cli report %s' uit voor het aanmaken van een case in Red Hat Customer Portal\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/nn.po b/po/nn.po +index 90fc984..9c094d0 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/fedora-abrt/language/nn/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/no.po b/po/no.po +index af12b43..70862b7 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Norwegian (http://www.transifex.com/projects/p/fedora-abrt/language/no/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/nso.po b/po/nso.po +index 89b6069..d20ae06 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Northern Sotho (http://www.transifex.com/projects/p/fedora-abrt/language/nso/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/or.po b/po/or.po +index 8d66300..48fa9ee 100644 +--- a/po/or.po ++++ b/po/or.po +@@ -9,8 +9,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-20 15:02+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-17 12:13+0000\n" + "Last-Translator: Manoj Kumar Giri \n" + "Language-Team: Oriya (http://www.transifex.com/projects/p/fedora-abrt/language/or/)\n" + "MIME-Version: 1.0\n" +@@ -53,141 +53,141 @@ msgstr "NetworkManager ସହିତ DBus ଉପରେ ସଂଯୋଗ କରି + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager ସହାୟତାରେ ନେଟୱର୍କ ସ୍ଥିତି ନିର୍ଦ୍ଧାରଣ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s' ର ମାଲିକତ୍ତ୍ୱ ନେଇ ପାରିବେ ନାହିଁ" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "'%s' କୁ ଲେଖିବା ପାଇଁ ଡିରେକ୍ଟୋରୀ ଖୋଲି ପାରିବେ ନାହିଁ" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "ଏକ ସମସ୍ଯା ଦେଖା ଦେଇଛି" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "ପ୍ୟାକେଜ %s ରେ ଏକ ସମସ୍ଯା ଦେଖା ଦେଇଛି" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s ଏବଂ ବିଶ୍ଳେଷଣାତ୍ମକ ତଥ୍ୟ ଦାଖଲ ହୋଇଛି" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "ବିଜ୍ଞପ୍ତିକୁ ବନ୍ଦ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "ଆପଣ ଏକ ନିର୍ଦ୍ଦିଷ୍ଟ ସମସ୍ୟାର ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକୁ ନିରବ କରିବାକୁ ଯାଉଛନ୍ତି। ଆପଣ କଦାପି ବିଜ୍ଞପ୍ତି ବବଲକୁ ଏହି ସମସ୍ୟା ପାଇଁ ପୁଣିଥରେ ଦେଖିପାରିବେ ନାହିଁ, ତଥାପି, ABRT ଏହାକୁ ଚିହ୍ନଟ କରିବ ଏବଂ ଆପଣ ଏହାକୁ ABRT GUI ରୁ ଖବର କକରିବାରେ ସକ୍ଷମ ହେବେ।\n\nଆପଣ ଆଗକୁ ବଢ଼ିବାକୁ ଚାହୁଁଛନ୍ତି କି?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "ଚେତାବନୀ" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT ଦ୍ୱାରା ଚିହ୍ନାହୋଇଥିବା ସମସ୍ୟାଗୁଡ଼ିକ ବିଷୟରେ ଚାଳକଙ୍କୁ ସୂଚାଇବା ପାଇଁ ବିଜ୍ଞପ୍ତି କ୍ଷେତ୍ର ଆପଲେଟ" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "ମନୋଜ କୁମାର ଗିରି " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "ବିଦାୟ ନିଅନ୍ତୁ (_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "ଲୁଚାନ୍ତୁ" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "ବିବରଣୀ (_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "ଏକ ସମସ୍ଯା ଦେଖା ଦେଇଛି" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "ସବୁଦିନ ପାଇଁ ଏଡ଼ାଇ ଦିଅନ୍ତୁ" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "ଖୋଲନ୍ତୁ" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "ସମସ୍ୟାକୁ ପୂର୍ବରୁ ଖବର କରାଯାଇଛି" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "ଗୋଟିଏ ପରିଚିତ ସମସ୍ୟା ଦେଖାଦେଇଛି" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "ରିପୋର୍ଟ" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "ଗୋଟିଏ ସମସ୍ୟା ଦେଖାଦେଇଛି" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "ଏକ ସମସ୍ଯା ଖବର କରାଯାଇଛି" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "ଗୋଟିଏ ନୂତନ ସମସ୍ୟା ଦେଖାଦେଇଛି" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "ବିଜ୍ଞପ୍ତି ଦର୍ଶାଇପାରିବେ ନାହିଁ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio ଚ୍ୟାନେଲରୁ ପଢ଼ିପାରିବେ ନାହିଁ: '%s'" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ଚ୍ୟାନେଲରେ ସାଙ୍କେତିକରଣକୁ ସେଟ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ଚ୍ୟାନେଲ ପାଇଁ ଅଟକ ରଖିପାରୁନଥିବା ଧାରାକୁ ଅନ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s' ର ମାଲିକତ୍ତ୍ୱ ନେଇ ପାରିବେ ନାହିଁ" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "'%s' କୁ ଲେଖିବା ପାଇଁ ଡିରେକ୍ଟୋରୀ ଖୋଲି ପାରିବେ ନାହିଁ" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "ଅଧିବେଶନ ପରିଚାଳକଙ୍କ ସହିତ ସଂଯୋଗ ଖୋଲିବାରେ ବିଫଳ: '%s', ବିଜ୍ଞପ୍ତି ହୁଏତଃ ପରବର୍ତ୍ତୀ ଲଗଇନରେ ପୁଣି ଦୃଶ୍ୟମାନ ହେବ" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1667,6 +1667,12 @@ msgstr "ଏକାଧିକ ସମସ୍ୟାଗୁଡ଼ିକୁ କାର୍ + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ଅଧିକ ସୂଚନା ପାଇଁ 'abrt-cli COMMAND --help' କୁ ଦେଖନ୍ତୁ" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "Red Hat ଗ୍ରାହକ ପୃଷ୍ଠାରେ ଏକ ସ୍ଥିତିକୁ ଦର୍ଶାଇବା ପାଇଁ %sRun 'abrt-cli report %s'\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/pa.po b/po/pa.po +index 379cea0..fcd7e72 100644 +--- a/po/pa.po ++++ b/po/pa.po +@@ -10,8 +10,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/fedora-abrt/language/pa/)\n" + "MIME-Version: 1.0\n" +@@ -54,141 +54,141 @@ msgstr "ਨੈੱਟਵਰਕਮੈਨੇਜਰ ਨਾਲ DBus ਤੇ ਕੁਨ + msgid "Can't determine network status via NetworkManager: %s" + msgstr "ਨੈੱਟਵਰਕ-ਮੈਨੇਜਰ ਰਾਹੀਂ ਨੈੱਟਵਰਕ ਹਾਲਤ ਪਤਾ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s' ਦਾ ਮਾਲਕ ਨਹੀਂ ਬਣ ਸਕਦਾ" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "'%s' ਨੂੰ ਲਿਖਣ ਲਈ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਖੋਲ ਸਕਿਆ" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "ਇੱਕ ਸਮੱਸਿਆ ਖੋਜੀ ਗਈ ਹੈ" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s ਪੈਕੇਜ ਵਿੱਚ ਇੱਕ ਸਮੱਸਿਆ ਆਈ ਹੈ" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s ਅਤੇ ਡਾਇਗਨੌਸਟਿਕ ਡਾਟਾ ਜਮ੍ਹਾਂ ਕਰ ਦਿੱਤਾ ਗਿਆ ਹੈ" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "ਸੂਚਨਾ ਬੰਦ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "ਚੇਤਾਵਨੀ" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ਸੂਚਨਾ ਖੇਤਰ ਐਪਲਿਟ ਜੋ ਯੂਜ਼ਰ ਨੂੰ ABRT ਦੁਆਰਾ ਲੱਭੇ ਮੁੱਦਿਆਂ ਬਾਰੇ ਦੱਸਦਾ ਹੈ" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Jaswinder Singh Phulewala " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "ਛੱਡ ਦਿਓ (_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "ਓਹਲੇ" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "ਸੰਬੰਧਿਤ (_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "ਸਮੱਸਿਆ ਖੋਜੀ ਗਈ ਹੈ" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "ਹਮੇਸ਼ਾ ਲਈ ਅਣਦੇਖਿਆ ਕਰੋ" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "ਖੋਲ" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "ਸਮੱਸਿਆ ਪਹਿਲਾਂ ਹੀ ਸੂਚਿਤ ਕੀਤੀ ਜਾ ਚੁੱਕੀ ਹੈ" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "ਇੱਕ ਗਲਤੀ ਆਈ ਹੈ " + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "ਰਿਪੋਰਟ" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "ਇੱਕ ਸਮੱਸਿਆ ਆਈ ਹੈ" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "ਇੱਕ ਮੁਸ਼ਕਿਲ ਦੀ ਇਤਲਾਹ ਕੀਤੀ ਗਈ ਹੈ" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "ਇੱਕ ਨਵੀਂ ਸਮੱਸਿਆ ਆਈ ਹੈ" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "ਸੂਚਨਾ ਨਹੀਂ ਵੇਖਾ ਸਕਿਆ: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "'%s' ਤੋਂ ਪੜ੍ਹਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio ਚੈਨਲ ਤੇ ਇੰਕੋਡਿੰਗ ਸੈੱਟ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio ਚੈਨਲ ਲਈ ਨਾਨ-ਬਲਾਕਿੰਗ ਮੋਡ ਨਹੀਂ ਚਾਲੂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s' ਦਾ ਮਾਲਕ ਨਹੀਂ ਬਣ ਸਕਦਾ" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "'%s' ਨੂੰ ਲਿਖਣ ਲਈ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਖੋਲ ਸਕਿਆ" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "ਸੈਸ਼ਨ ਪ੍ਰਬੰਧਕ ਲਈ ਸੰਪਰਕ ਖੋਲ੍ਹਣ ਵਿੱਚ ਅਸਫਲ: '%s' ਸੂਚਨਾ ਅਗਲੇ ਲਾਗਇਨ ਤੇ ਮੁੜ ਪਰਗਟ ਹੋ ਸਕਦੀ ਹੈ" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1668,6 +1668,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ 'abrt-cli COMMAND --help' ਵੇਖੋ" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/pl.po b/po/pl.po +index b7f3272..177cd0f 100644 +--- a/po/pl.po ++++ b/po/pl.po +@@ -9,8 +9,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 13:29+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 14:01+0000\n" + "Last-Translator: Piotr Drąg \n" + "Language-Team: Polish (http://www.transifex.com/projects/p/fedora-abrt/language/pl/)\n" + "MIME-Version: 1.0\n" +@@ -53,141 +53,141 @@ msgstr "Nie można połączyć z menedżerem sieci przez magistralę D-Bus: %s" + 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:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Nie można zmienić właściciela \"%s\"" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Nie można otworzyć katalogu do zapisania \"%s\"" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Wykryto problem" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Wykryto problem w pakiecie %s" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s i dane diagnostyczne zostały wysłane" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nie można zamknąć powiadomienia: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "Zostaną wyciszone powiadomienia o konkretnym problemie. Nie będą one już wyświetlane, ale program ABRT będzie nadal wykrywał ten problem, i będzie można go zgłosić z interfejsu programu.\n\nKontynuować?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Ostrzeżenie" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Piotr Drąg , 2009\nTomasz Chrzczonowicz , 2009" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "Za_kończ" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Ukryj" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_O programie" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Wykryto problem" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Zawsze ignoruj" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Otwórz" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "Problem został już zgłoszony" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Zgłoś" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Wystąpił problem" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Zgłoszono problem" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Wystąpił nowy problem" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, 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:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, 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:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Nie można zmienić właściciela \"%s\"" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Nie można otworzyć katalogu do zapisania \"%s\"" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, 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:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1667,6 +1667,12 @@ msgstr "Przetwarza wiele problemów" + 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:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "%sWykonanie polecenia \"abrt-cli report %s\" utworzy zgłoszenie w Red Hat Customer Portal\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [opcje] [KATALOG]..." +diff --git a/po/pt.po b/po/pt.po +index 8c77cda..245b7c6 100644 +--- a/po/pt.po ++++ b/po/pt.po +@@ -16,8 +16,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora-abrt/language/pt/)\n" + "MIME-Version: 1.0\n" +@@ -60,141 +60,141 @@ msgstr "Não é possível conetar ao Gestor de Rede sob 'DBus': %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Não é possível determinar o estado da rede através do Gestor de Rede: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Não é possível tomar posse de '%s'" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Não é possível abrir a diretoria para gravar '%s'" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Foi detetado um problema" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Foi detetado um problema no pacote %s" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s e os dados de diagnóstico foram submetidos" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Não é possível fechar a notificação: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Aviso" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Rui Gouveia / Manuela Silva " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "_Sair" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Ocultar" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_Sobre o ..." + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Detetado um problema" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Ignorar para sempre" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Abrir" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "O problema já foi comunicado" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "Ocorreu um Problema Conhecido" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Comunicar" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Ocorreu um Problema" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Foi Comunicado um Problema" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Ocorreu um Novo Problema" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, 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:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Não é possível ler do canal 'gio': '%s'" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Não é posssível definir a codificação no canal 'gio': %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Não é possível ligar o modo 'não bloquear' para o canal 'gio': %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Não é possível tomar posse de '%s'" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Não é possível abrir a diretoria para gravar '%s'" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + 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:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1674,6 +1674,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informação" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& lista [opções] [DIR]..." +diff --git a/po/pt_BR.po b/po/pt_BR.po +index 2670756..2440d98 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -26,9 +26,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-27 01:39+0000\n" +-"Last-Translator: Glaucia Freitas \n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" ++"Last-Translator: Jakub Filak \n" + "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/fedora-abrt/language/pt_BR/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -70,141 +70,141 @@ msgstr "Não é possível conectar ao NetworkManager via DBus: %s" + 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:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Não foi possível obter propriedade de '%s'" ++ ++#: ../src/applet/applet.c:350 ++#, 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:417 + msgid "A problem has been detected" + msgstr "Foi detectado um problema" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Foi detectado um problema no pacote %s" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s e os dados do diagnóstico foram submetidos" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Não é possível fechar a notificação: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "Você irá sileinciar as notificações de um problema específico. Você não verá mais notificações para este problema novamente, no entanto, o ABRT irá detectar as notificações e você poderá reportá-las a partir do ABRT GUI.\n\nVocê deseja continuar?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Aviso" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Ricardo Gyorfy \nGlaucia Cintra\nTaylon Silmer \nTeseu " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "_Sair" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Esconder" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_Sobre" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Problema detectado" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Sempre ignorar" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Abrir" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "O Problema já foi Reportado" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Relatar" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Ocorreu um Problema" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Um problema foi relatado" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Um novo problema ocorreu" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, 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:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, 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:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Não foi possível obter propriedade de '%s'" +- +-#: ../src/applet/applet.c:1193 +-#, 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:1476 ++#: ../src/applet/applet.c:1494 + #, 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:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1684,6 +1684,12 @@ msgstr "Processar problemas múltiplos" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informações." + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& lista [options] [DIR]..." +diff --git a/po/ro.po b/po/ro.po +index 4881bff..294cfbb 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Romanian (http://www.transifex.com/projects/p/fedora-abrt/language/ro/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/ru.po b/po/ru.po +index e1073b6..1be08af 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -16,9 +16,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-22 10:36+0000\n" +-"Last-Translator: Yulia \n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" ++"Last-Translator: Jakub Filak \n" + "Language-Team: Russian (http://www.transifex.com/projects/p/fedora-abrt/language/ru/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -60,141 +60,141 @@ msgstr "Не удалось подключиться к NetworkManager чере + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager не смог определить статус сети: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Не удается стать владельцем «%s»" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Не удалось открыть каталог для записи «%s»" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Обнаружена неполадка" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Обнаружена неполадка в пакете %s" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s и данные диагностики отправлены" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Не удалось закрыть уведомление: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "Вы собираетесь отключить уведомления для определенной проблемы. Соответствующие всплывающие сообщения больше не будут появляться, но вы сможете создать отчет об ошибке в графическом режиме ABRT.\n\nПродолжить?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Предупреждение" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Значок в области уведомления сообщает об обнаруженных сбоях" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Yulia \nMisha Shnurapet \nYuri Khabarov " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "В_ыход" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Скрыть" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_О программе" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Проблема обнаружена" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Игнорировать всегда" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Открыть" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "Отчёт о неполадке уже отправлен" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "Произошла известная проблема" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Сообщить" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Произошёл сбой" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Отчет о неполадке уже отправлен" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Обнаружена проблема" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Не удалось показать уведомление: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Не удалось выполнить чтение из канала gio: «%s»" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Не удалось изменить шифрование в канале gio: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Не удалось включить неблокирующий режим для канала gio: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Не удается стать владельцем «%s»" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Не удалось открыть каталог для записи «%s»" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "Не удалось открыть соединение с менеджером сеанса: «%s», уведомление может появиться при следующем входе" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1674,6 +1674,12 @@ msgstr "Обработка нескольких проблем" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Для получения дополнительной информации выполните «abrt-cli COMMAND --help»" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [параметры] [DIR]..." +diff --git a/po/ru_RU.po b/po/ru_RU.po +index fed0f1c..4606c98 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/fedora-abrt/language/ru_RU/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/si.po b/po/si.po +index 1c851c8..98c8ca5 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Sinhala (http://www.transifex.com/projects/p/fedora-abrt/language/si/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/sk.po b/po/sk.po +index 57868bc..e7a3e6d 100644 +--- a/po/sk.po ++++ b/po/sk.po +@@ -12,8 +12,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Slovak (http://www.transifex.com/projects/p/fedora-abrt/language/sk/)\n" + "MIME-Version: 1.0\n" +@@ -56,141 +56,141 @@ msgstr "Nedá sa pripojiť k správcovi siete NetworkManager cez zbernicu DBus: + 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:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Nedá sa prevziať vlastníctvo '%s'" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Nedá sa otvoriť adresár na zapísanie „%s“" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Bol zistený problém" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, 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:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Nedá sa zavrieť oznámenie: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Upozornenie" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "PrekladateliaMichal Hriň jmoskovc Dušan Kazik " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "_Ukončiť" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Skryť" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_O programe" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Zistený problém" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Ignorovať navždy" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Otvoriť" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Nahlásiť" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Nastal Problém" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Problém bol nahlásený" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Vyskytol sa nový problém" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Nedá sa zobraziť oznámenie: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, 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:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Nedá sa prevziať vlastníctvo '%s'" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Nedá sa otvoriť adresár na zapísanie „%s“" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, 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:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1670,6 +1670,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Pre viac informácií viď 'abrt-cli PRÍKAZ --help'" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/sl.po b/po/sl.po +index 9196781..b5e39b2 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Slovenian (http://www.transifex.com/projects/p/fedora-abrt/language/sl/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/sq.po b/po/sq.po +index 41a6763..dcd84f2 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Albanian (http://www.transifex.com/projects/p/fedora-abrt/language/sq/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/sr.po b/po/sr.po +index 2795213..b79ea5f 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Serbian (http://www.transifex.com/projects/p/fedora-abrt/language/sr/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Упозорење" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Програмчић из обавештајне зоне који обавештава кориснике о проблемима нађеним помоћу ABRT-а" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "заслуге-преводиоца" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Сакри" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Пријава" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/sr@latin.po b/po/sr@latin.po +index fc0e630..039bf5e 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/fedora-abrt/language/sr@latin/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Upozorеnjе" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "zaslugе-prеvodioca" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Sakri" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Prijava" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/sv.po b/po/sv.po +index 647082f..a3cb63e 100644 +--- a/po/sv.po ++++ b/po/sv.po +@@ -12,8 +12,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Swedish (http://www.transifex.com/projects/p/fedora-abrt/language/sv/)\n" + "MIME-Version: 1.0\n" +@@ -56,141 +56,141 @@ msgstr "Kan inte ansluta till NetworkManager via DBus: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Kan inte bestämma nätverksstatus via NetworkManager: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Kan inte ta över ägandet av ”%s”" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Kan inte öppna katalog för att skriva '%s'" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Ett problem har upptäckts" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, 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:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Kan inte stänga notifikation: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Varning" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + 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:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Magnus Larsson \nGöran Uddeborg " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "_Avsluta" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Dölj" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_Om" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Problem upptäckt" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Ignorera alltid" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Öppna" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "Problemet har redan rapporterats" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + 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:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Rapport" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Ett problem har uppstått" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Ett problem har rapporterats" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Ett nytt problem har uppstått" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Kan inte visa notifikation: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../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:1146 ++#: ../src/applet/applet.c:1182 + #, 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:1150 ++#: ../src/applet/applet.c:1186 + #, 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:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Kan inte ta över ägandet av ”%s”" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Kan inte öppna katalog för att skriva '%s'" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, 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:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1670,6 +1670,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Se ”abrt-cli KOMMANDO --help” för mer information" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [flaggor] [KAT]…" +diff --git a/po/ta.po b/po/ta.po +index d8539ba..7ce6284 100644 +--- a/po/ta.po ++++ b/po/ta.po +@@ -6,13 +6,14 @@ + # A , 2012 + # I Felix , 2011 + # Jiří Moskovčák , 2011 ++# shkumar , 2014 + # shkumar , 2012,2014 + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-27 05:21+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-17 11:25+0000\n" + "Last-Translator: shkumar \n" + "Language-Team: Tamil (http://www.transifex.com/projects/p/fedora-abrt/language/ta/)\n" + "MIME-Version: 1.0\n" +@@ -55,141 +56,141 @@ msgstr "DBus மூலம் NetworkManager க்கு இணைக்க ம + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager மூலம் பிணைய நிலையை தீர்மானிக்க முடியவில்லை: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s' இன் உரிமையை கைக்கொள்ள முடியவில்லை" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "'%s' ஐ எழுத கோப்பகத்தைத் திறக்க முடியவில்லை" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "ஒரு சிக்கல் கண்டறியப்பட்டது" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s தொகுப்பில் ஒரு சிக்கல் கண்டறியப்பட்டது" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s மற்றும் கண்டறிதல் தரவு ஆகியவை சமர்ப்பிக்கப்பட்டன" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "அறிவிப்பை மூட முடியவில்லை: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "ஒரு குறிப்பிட்ட சிக்கலுக்கு அறிவிப்புகள் வராதபடி தடுக்கப் போகிறீர்கள். இனி மீண்டும் இந்தச் சிக்கல் குறித்து அறிவிப்பு காண்பிக்கப்படாது, இருப்பினும் ABRT இதைக் கண்டறியும், ABRT இடைமுகத்திலிருந்து இந்தச் சிக்கலை நீங்கள் அறிக்கையிடவும் முடியும்.\n\nதொடர வேண்டுமா?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "எச்சரிக்கை" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT கண்டுபிடித்த சிக்கல்களைப் பற்றி அறிவிக்கும் அறிவிப்புப் பகுதி பயன்பாடு" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "shkumar@redhat.com" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "வெளியேறு (_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "மறை" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "அறிமுகம் (_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "சிக்கல் கண்டறியப்பட்டுள்ளது" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "எப்பொழுதும் புறக்கணி" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "திற" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "சிக்கல் ஏற்கனவே அறிக்கையிடப்பட்டது" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "தெரிந்த ஒரு சிக்கல் ஏற்பட்டது" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "அறிக்கையிடு" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "ஒரு சிக்கல் ஏற்பட்டது" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "ஒரு சிக்கல் குறித்து அறிக்கையிடப்பட்டுள்ளது" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "ஒரு புதிய சிக்கல் ஏற்பட்டது" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "அறிவிப்பைக் காண்பிக்க முடியவில்லை: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio சேனலில் இருந்து வாசிக்க முடியவில்லை: '%s'" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio சேனலில் குறியீடாக்கத்தை அமைக்க முடியவில்லை: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio சேனலுக்கு தடுக்காத பயன்முறையை இயக்க முடியவில்லை: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s' இன் உரிமையை கைக்கொள்ள முடியவில்லை" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "'%s' ஐ எழுத கோப்பகத்தைத் திறக்க முடியவில்லை" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "அமர்வு நிர்வாகிக்கான இணைப்பைத் திறக்கையில் தோல்வியடைந்தது: '%s', அடுத்த புகுபதிவில் அறிவிப்பு மீண்டும் காண்பிக்கப்படலாம்" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1669,6 +1670,12 @@ msgstr "பல சிக்கல்களைச் செயலாக்கவ + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "'abrt-cli COMMAND --help' க்கான மேலும் தகவலுக்கு பார்க்கவும்" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "%sRed Hat வாடிக்கையாளர் வலைவாசலில் ஒரு கோரிக்கையை உருவாக்க 'abrt-cli report %s' எனும் கட்டளையை இயக்கவும்\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/te.po b/po/te.po +index 75c2549..7607b9f 100644 +--- a/po/te.po ++++ b/po/te.po +@@ -12,8 +12,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-16 09:36+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-17 07:24+0000\n" + "Last-Translator: Krishnababu Krothapalli \n" + "Language-Team: Telugu (http://www.transifex.com/projects/p/fedora-abrt/language/te/)\n" + "MIME-Version: 1.0\n" +@@ -56,141 +56,141 @@ msgstr "DBus నందు నెట్వర్కుమేనేజర్‌న + msgid "Can't determine network status via NetworkManager: %s" + msgstr "నెట్వర్కుమేనేజర్ ద్వారా నెట్వర్కు స్థితిని నిర్ణయించలేదు: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "'%s' పై అజమాయిషీ తీసుకోలేదు" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "'%s' వ్రాయుట కొరకు డైరెక్టరీ తెరువలేదు" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "ఒక సమస్య గుర్తించబడింది" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "ప్యాకేజీ %s నందు వొక సమస్య గుర్తించబడింది" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s మరియు డయాగ్నిస్టిక్ దత్తాంశం సమర్పించబడెను" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "ప్రకటనను మూయలేదు: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "మీరు ఫలానా సమస్యకు చెందిన ప్రకటనలను రాకుండా చేయబోతున్నారు. మీరు ఇకపై ఈ సమస్యకు సంబందించి ప్రకటనను చూడబోరు, ఏమైనప్పటికీ, ABRT దానిని గుర్తించగలదు మరియు మీరు దానిని ABRT GUI నుండి నివేదించగల్గుతారు.\n\nమీరు కొనసాగాలని అనుకుంటున్నారా?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "హెచ్చరిక" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "ABRT చేత గుర్తించబడిన సమస్యల గురించి వినియోగదారికి తెలుపుటకు నోటిఫికేషన్ ప్రాంతపు ఆప్లెట్" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "కృష్ణబాబు క్రొత్తపల్లి 2009,2010." + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "నిష్క్రమించు (_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "మరుగునవుంచుము" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "గురించి (_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "సమస్య గుర్తించబడింది" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "ఎప్పటికీ విస్మరించు" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "తెరుచు" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "సమస్య ఇప్పటికే నివేదించబడెను" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "తెలిసిన సమస్య యెదురైనది" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "నివేదించు" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "ఒక సమస్య యెదురైంది" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "ఒక సమస్య నివేదించబడింది" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "కొత్త సమస్య యెదురైనది" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "ప్రకటనను చూపలేదు: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio చానల్‌నుండి చదువలేదు: '%s'" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio చానల్ నందు యెన్కోడింగ్ అమర్చలేదు: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio చానల్ కొరకు నాన్‌బ్లాకింగ్ రీతిని ఆన్ చేయలేదు: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "'%s' పై అజమాయిషీ తీసుకోలేదు" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "'%s' వ్రాయుట కొరకు డైరెక్టరీ తెరువలేదు" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "సెషన్ నిర్వాహికకు అనుసంధానం తెరుచుటకు విఫలమైంది: '%s', తరువాతి లాగిన్ పైన ప్రకటన తిరిగికనిపించవచ్చు" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1670,6 +1670,12 @@ msgstr "పలు సమస్యలను ప్రోసెస్‌చేయ + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "అదనపు సమాచారం కొరకు 'abrt-cli COMMAND --help' చూడండి" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "Red Hat వినియోగదారి పోర్టల్ నందు ఒక కేస్ గురించి తెలపడానికి %s 'abrt-cli report %s' నడుపవలెను\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/tg.po b/po/tg.po +index a996695..617fb01 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Tajik (http://www.transifex.com/projects/p/fedora-abrt/language/tg/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Огоҳӣ" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Пинҳон кардан" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Гузориш" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/th.po b/po/th.po +index c59f613..2409f30 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Thai (http://www.transifex.com/projects/p/fedora-abrt/language/th/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/tl.po b/po/tl.po +index 0744c37..bf32bee 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Tagalog (http://www.transifex.com/projects/p/fedora-abrt/language/tl/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/tr.po b/po/tr.po +index 28839fb..4c2a093 100644 +--- a/po/tr.po ++++ b/po/tr.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Turkish (http://www.transifex.com/projects/p/fedora-abrt/language/tr/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/uk.po b/po/uk.po +index c0d8841..3c88dcc 100644 +--- a/po/uk.po ++++ b/po/uk.po +@@ -9,8 +9,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 14:17+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 14:09+0000\n" + "Last-Translator: Yuri Chornoivan \n" + "Language-Team: Ukrainian (http://www.transifex.com/projects/p/fedora-abrt/language/uk/)\n" + "MIME-Version: 1.0\n" +@@ -53,141 +53,141 @@ msgstr "Не вдалося встановити з’єднання з NetworkM + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Не вдалося визначити стан у мережі за допомогою NetworkManager: %s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "Не вдалося визначити права доступу до «%s»" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "Не вдалося відкрити каталог для запису, «%s»" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Було виявлено проблему" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Було виявлено проблему, пов’язану з пакунком %s" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s та діагностичні дані надіслано" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "Не вдалося закрити сповіщення: %s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "Ви маєте намір вимкнути сповіщення щодо певної проблеми. Ви більше не побачите панелі сповіщення щодо цієї проблеми. Втім, ABRT виявлятиме її і зможе створити звіт за допомогою свого графічного інтерфейсу.\n\nПродовжити виконання цієї дії?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Попередження" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "Аплет у області сповіщень для попередження користувача про виявлені ABRT проблеми" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Максим Дзюманенко \nЮрій Чорноіван " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "Ви_йти" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Сховати" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_Про програму" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Виявлено проблему" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Завжди ігнорувати" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Відкрити" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "Звіт про цю проблему вже створено" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "Виникла відома проблема" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Повідомити" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Виникла проблема" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Створено звіт щодо проблеми" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Виникла нова проблема" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Не вдалося показати сповіщення: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Не вдалося виконати читання з каналу gio: «%s»" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Не вдалося встановити кодування на каналі gio: %s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Не вдалося увімкнути режим без блокування для каналу gio: %s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "Не вдалося визначити права доступу до «%s»" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "Не вдалося відкрити каталог для запису, «%s»" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "Не вдалося встановити з’єднання з засобом керування сеансом: «%s», сповіщення може бути повторно показано під час наступного входу до системи" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1667,6 +1667,12 @@ msgstr "Обробка декількох проблем" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Щоб дізнатися більше, скористайтеся командою «abrt-cli КОМАНДА --help»" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "%sВіддайте команду «abrt-cli report %s» для створення запису випадку на порталі клієнтів Red Hat\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [параметри] [КАТАЛОГ]..." +diff --git a/po/ur.po b/po/ur.po +index 65f41c7..8686ccc 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Urdu (http://www.transifex.com/projects/p/fedora-abrt/language/ur/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "انتباہ" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/uz.po b/po/uz.po +index 113580b..cf7023f 100644 +--- a/po/uz.po ++++ b/po/uz.po +@@ -7,8 +7,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Uzbek (http://www.transifex.com/projects/p/fedora-abrt/language/uz/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/vi.po b/po/vi.po +index 329ca7b..de92c90 100644 +--- a/po/vi.po ++++ b/po/vi.po +@@ -8,8 +8,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Vietnamese (http://www.transifex.com/projects/p/fedora-abrt/language/vi/)\n" + "MIME-Version: 1.0\n" +@@ -52,141 +52,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Một vấn đề đã được phát hiện" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Một vấn đề trong gói %s đã được phát hiện" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Cảnh báo" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Ẩn" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Phát hiện vấn đề" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1666,6 +1666,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/wo.po b/po/wo.po +index 08d4139..eefbcef 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Wolof (http://www.transifex.com/projects/p/fedora-abrt/language/wo/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/xh.po b/po/xh.po +index e729003..df3828c 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Xhosa (http://www.transifex.com/projects/p/fedora-abrt/language/xh/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/zh_CN.po b/po/zh_CN.po +index 38f2223..bb358dc 100644 +--- a/po/zh_CN.po ++++ b/po/zh_CN.po +@@ -18,8 +18,8 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-23 01:03+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-16 05:33+0000\n" + "Last-Translator: Wei Liu \n" + "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora-abrt/language/zh_CN/)\n" + "MIME-Version: 1.0\n" +@@ -62,141 +62,141 @@ msgstr "无法通过 DBus 连接到至 NetworkManger:%s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "无法通过 NetworkManager 确定网络状态:%s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "无法获取 '%s' 的所有权" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "无法打开目录以写入 '%s'" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "已检测到一个问题" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "检测到 %s 软件包中的一个问题" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "已提交 %s 和诊断数据" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "无法关闭通知:%s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "您要将某个具体问题的通知静音。您将再也无法看到这个问题的通知气泡,但 ABRT 将继续对其进行探测,同时您也可以使用 ABRT GUI 报告该问题。\n\n您要继续吗?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "警告" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "用来将 ABRT 检测到的问题通知给用户的小程序" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Fedora Simplified Chinese Translation Group \nTommy He " + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "退出(_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "隐藏" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "关于(_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "检测到问题" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "永远忽略" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "打开" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "该问题已经被提交" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "发生一个已知问题" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "报告" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "发生一个错误" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "一个问题已被提交" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "发生一个新问题" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "无法显示通知:%s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "无法读取 gio 频道:'%s'" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "无法在 gio 频道中设定编码:%s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "无法为 gio 频道设定非阻断模式:%s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "无法获取 '%s' 的所有权" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "无法打开目录以写入 '%s'" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "打开会话管理器 :'%s', 失败,通知会在下次登录时重新出现" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1676,6 +1676,12 @@ msgstr "处理多个问题" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "详情请查看 'abrt-cli COMMAND --help'" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "%s 运行 'abrt-cli report %s' 在 Red Hat 客户门户网站中创建问题单\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +diff --git a/po/zh_HK.po b/po/zh_HK.po +index 7fd34db..91c3896 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/fedora-abrt/language/zh_HK/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +diff --git a/po/zh_TW.po b/po/zh_TW.po +index 082e3a0..57add71 100644 +--- a/po/zh_TW.po ++++ b/po/zh_TW.po +@@ -10,9 +10,9 @@ msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-22 01:31+0000\n" +-"Last-Translator: Chester Cheng \n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-23 06:50+0000\n" ++"Last-Translator: Terry Chuang \n" + "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-abrt/language/zh_TW/)\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" +@@ -54,141 +54,141 @@ msgstr "無法透過 DBus 連接至 NetworkManager:%s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "無法透過 NetworkManager 判定網路狀態:%s" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "無法掌握「%s」的擁有權" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "無法開啟目錄以寫入「%s」" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "已偵測到問題" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "已偵測到 %s 軟體包發生問題" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s 和診斷資料已提交" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "無法關閉通知:%s" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "您正要將特定問題的通知消音。您將不再看見此問題的浮出式氣泡通知;然而,ABRT 仍會偵測此問題,而您也可以從 ABRT 的圖形使用介面中回報它\n\n您想要繼續嗎?" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "警告" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "會通知使用者有關於 ABRT 所發現的問題的通知區域面板程式" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Eunju Kim , 2009.\nTerry Chuang , 2009, 2010.\nCheng-Chia Tseng , 2011, 2012." + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "退出(_Q)" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "隱藏" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "關於(_A)" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "偵測到的問題" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "永遠忽略" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "開啟" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "此問題已被回報過" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "遭遇已知問題" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "回報" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "遭遇到問題" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "已回報問題" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "遭遇新問題" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "無法顯示通知:%s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "無法從 gio 通道讀取:「%s」" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "無法設定 gio 通道上的編碼:%s" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "無法為 gio 通道啟動不阻擋模式:%s" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "無法掌握「%s」的擁有權" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "無法開啟目錄以寫入「%s」" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "無法開啟與作業階段管理員的連線:「%s」,通知可能會在下次登入時再次出現" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1668,6 +1668,12 @@ msgstr "處理多項問題" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "請見 'abrt-cli COMMAND --help' 以瞭解更多資訊" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "%s執行 'abrt-cli report %s' 以在 Red Hat 客戶入口網站中建立案例\n" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [選項] [DIR]..." +diff --git a/po/zu.po b/po/zu.po +index d88b1cd..cc010bd 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-10-13 17:42+0200\n" +-"PO-Revision-Date: 2014-10-03 11:47+0000\n" ++"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Zulu (http://www.transifex.com/projects/p/fedora-abrt/language/zu/)\n" + "MIME-Version: 1.0\n" +@@ -51,141 +51,141 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:386 ++#: ../src/applet/applet.c:342 ++#, c-format ++msgid "Can't take ownership of '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:350 ++#, c-format ++msgid "Can't open directory for writing '%s'" ++msgstr "" ++ ++#: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "" + +-#: ../src/applet/applet.c:388 ++#: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "" + +-#: ../src/applet/applet.c:398 ++#: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "" + +-#: ../src/applet/applet.c:558 ../src/plugins/abrt-retrace-client.c:131 ++#: ../src/applet/applet.c:589 ../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:632 ../src/applet/applet.c:708 ++#: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" + msgstr "" + +-#: ../src/applet/applet.c:670 ++#: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + +-#: ../src/applet/applet.c:748 ../src/applet/applet.c:750 ++#: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "" + +-#: ../src/applet/applet.c:798 ++#: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + +-#: ../src/applet/applet.c:814 ++#: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" + +-#: ../src/applet/applet.c:822 ++#: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + +-#: ../src/applet/applet.c:824 ++#: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "" + +-#: ../src/applet/applet.c:826 ++#: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + +-#: ../src/applet/applet.c:894 ++#: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "" + +-#: ../src/applet/applet.c:944 ++#: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN +-#: ../src/applet/applet.c:955 ../src/applet/applet.c:970 ++#: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "" + +-#: ../src/applet/applet.c:960 ++#: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +-#: ../src/applet/applet.c:979 ../src/applet/applet.c:1014 ++#: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" + +-#: ../src/applet/applet.c:984 ++#: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1010 ++#: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "" + +-#: ../src/applet/applet.c:1018 ++#: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "" + +-#: ../src/applet/applet.c:1028 ++#: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1062 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "" + +-#: ../src/applet/applet.c:1146 ++#: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1150 ++#: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "" + +-#: ../src/applet/applet.c:1184 +-#, c-format +-msgid "Can't take ownership of '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1193 +-#, c-format +-msgid "Can't open directory for writing '%s'" +-msgstr "" +- +-#: ../src/applet/applet.c:1476 ++#: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" + +-#: ../src/applet/applet.c:1617 ++#: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" +@@ -1665,6 +1665,12 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + ++#: ../src/cli/list.c:127 ++#, c-format ++msgid "" ++"%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" ++msgstr "" ++ + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "" +-- +1.8.3.1 + diff --git a/SOURCES/0086-translations-update-the-PO-files.patch b/SOURCES/0086-translations-update-the-PO-files.patch new file mode 100644 index 0000000..6ef7350 --- /dev/null +++ b/SOURCES/0086-translations-update-the-PO-files.patch @@ -0,0 +1,73643 @@ +From a2341c0d239df158b510b9647eaeea1c550cdea7 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 5 Jan 2015 08:53:15 -0500 +Subject: [ABRT PATCH 86/86] translations: update the PO files + +Signed-off-by: Jakub Filak +--- + po/ach.po | 137 +++++-- + po/af.po | 163 ++++++--- + po/aln.po | 137 +++++-- + po/am.po | 163 ++++++--- + po/ar.po | 166 ++++++--- + po/as.po | 518 ++++++++++++++++++++------- + po/ast.po | 163 ++++++--- + po/az.po | 137 +++++-- + po/bal.po | 163 ++++++--- + po/be.po | 166 ++++++--- + po/bg.po | 320 ++++++++++++----- + po/bn.po | 308 +++++++++++----- + po/bn_IN.po | 874 ++++++++++++++++++++++++++++++++++++++------- + po/bo.po | 163 ++++++--- + po/br.po | 163 ++++++--- + po/brx.po | 163 ++++++--- + po/bs.po | 185 +++++++--- + po/ca.po | 1085 ++++++++++++++++++++++++++++++++++++++++++-------------- + po/cs.po | 370 ++++++++++++++----- + po/cy.po | 166 ++++++--- + po/da.po | 258 ++++++++++---- + po/de.po | 582 +++++++++++++++++++++++------- + po/de_CH.po | 165 ++++++--- + po/dz.po | 137 +++++-- + po/el.po | 188 +++++++--- + po/en_GB.po | 540 +++++++++++++++++++++++----- + po/en_US.po | 165 ++++++--- + po/eo.po | 163 ++++++--- + po/es.po | 589 ++++++++++++++++++++++-------- + po/et.po | 291 ++++++++++----- + po/eu.po | 169 ++++++--- + po/fa.po | 167 ++++++--- + po/fi.po | 262 ++++++++++---- + po/fr.po | 637 +++++++++++++++++++++++++-------- + po/ga.po | 140 ++++++-- + po/gl.po | 286 +++++++++++---- + po/gu.po | 533 +++++++++++++++++++++------- + po/he.po | 177 ++++++--- + po/hi.po | 518 ++++++++++++++++++++------- + po/hr.po | 166 ++++++--- + po/hu.po | 580 +++++++++++++++++++++++------- + po/hy.po | 137 +++++-- + po/ia.po | 430 +++++++++++++++------- + po/id.po | 175 ++++++--- + po/ilo.po | 163 ++++++--- + po/is.po | 163 ++++++--- + po/it.po | 574 +++++++++++++++++++++++------- + po/ja.po | 394 +++++++++++++++----- + po/ka.po | 166 ++++++--- + po/kk.po | 163 ++++++--- + po/km.po | 163 ++++++--- + po/kn.po | 603 +++++++++++++++++++++++-------- + po/ko.po | 378 +++++++++++++++----- + po/ks.po | 137 +++++-- + po/ku.po | 137 +++++-- + po/ky.po | 163 ++++++--- + po/la.po | 137 +++++-- + po/lo.po | 137 +++++-- + po/lt.po | 484 +++++++++++++++++++------ + po/lv.po | 169 ++++++--- + po/mai.po | 163 ++++++--- + po/mg.po | 137 +++++-- + po/mk.po | 163 ++++++--- + po/ml.po | 651 ++++++++++++++++++++++++++-------- + po/mn.po | 163 ++++++--- + po/mr.po | 504 ++++++++++++++++++++------ + po/ms.po | 163 ++++++--- + po/my.po | 137 +++++-- + po/nb.po | 182 +++++++--- + po/nds.po | 163 ++++++--- + po/ne.po | 163 ++++++--- + po/nl.po | 562 ++++++++++++++++++++++------- + po/nn.po | 163 ++++++--- + po/no.po | 137 +++++-- + po/nso.po | 163 ++++++--- + po/or.po | 564 ++++++++++++++++++++++------- + po/pa.po | 447 +++++++++++++++++------ + po/pl.po | 567 ++++++++++++++++++++++------- + po/pt.po | 351 +++++++++++++----- + po/pt_BR.po | 838 ++++++++++++++++++++++++++++++++++++------- + po/ro.po | 166 ++++++--- + po/ru.po | 559 ++++++++++++++++++++++------- + po/ru_RU.po | 140 ++++++-- + po/si.po | 163 ++++++--- + po/sk.po | 392 ++++++++++++++------ + po/sl.po | 166 ++++++--- + po/sq.po | 163 ++++++--- + po/sr.po | 170 ++++++--- + po/sr@latin.po | 170 ++++++--- + po/sv.po | 667 +++++++++++++++++++++++++--------- + po/ta.po | 603 ++++++++++++++++++++++++------- + po/te.po | 530 ++++++++++++++++++++------- + po/tg.po | 163 ++++++--- + po/th.po | 730 ++++++++++++++++++++++++++++---------- + po/tl.po | 137 +++++-- + po/tr.po | 493 +++++++++++++++++-------- + po/uk.po | 623 ++++++++++++++++++++++++-------- + po/ur.po | 163 ++++++--- + po/uz.po | 137 +++++-- + po/vi.po | 188 +++++++--- + po/wo.po | 137 +++++-- + po/xh.po | 137 +++++-- + po/zh_CN.po | 646 ++++++++++++++++++++++++++++----- + po/zh_HK.po | 165 ++++++--- + po/zh_TW.po | 650 ++++++++++++++++++++++++++++----- + po/zu.po | 163 ++++++--- + 106 files changed, 24056 insertions(+), 8042 deletions(-) + +diff --git a/po/ach.po b/po/ach.po +index 07b6880..fd27f6e 100644 +--- a/po/ach.po ++++ b/po/ach.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Acoli (http://www.transifex.com/projects/p/fedora-abrt/language/ach/)\n" ++"Language-Team: Acoli (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ach/)\n" ++"Language: ach\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: ach\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/af.po b/po/af.po +index ef5ad7e..37c03b3 100644 +--- a/po/af.po ++++ b/po/af.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Afrikaans (http://www.transifex.com/projects/p/fedora-abrt/language/af/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Afrikaans (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/af/)\n" + "Language: af\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/aln.po b/po/aln.po +index 8ce9f00..1b808a8 100644 +--- a/po/aln.po ++++ b/po/aln.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Albanian Gheg (http://www.transifex.com/projects/p/fedora-abrt/language/aln/)\n" ++"Language-Team: Albanian Gheg (http://www.transifex.com/projects/p/fedora-" ++"abrt/language/aln/)\n" ++"Language: aln\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: aln\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/am.po b/po/am.po +index 8c80963..8fadc26 100644 +--- a/po/am.po ++++ b/po/am.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Amharic (http://www.transifex.com/projects/p/fedora-abrt/language/am/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Amharic (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/am/)\n" + "Language: am\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/ar.po b/po/ar.po +index 62bf51c..ae79445 100644 +--- a/po/ar.po ++++ b/po/ar.po +@@ -6,17 +6,20 @@ + # Jiří Moskovčák , 2011 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Arabic (http://www.transifex.com/projects/p/fedora-abrt/language/ar/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Arabic (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ar/)\n" + "Language: ar\n" +-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" ++"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " ++"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -89,7 +92,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -128,6 +133,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -142,6 +148,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "تقرير" +@@ -212,10 +219,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +235,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -405,10 +411,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -460,19 +466,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -606,9 +665,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -683,8 +744,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -719,6 +779,7 @@ 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" +@@ -757,7 +818,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +829,8 @@ msgid "" + " -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" ++" --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" +@@ -816,7 +879,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1030,6 +1094,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1090,6 +1155,7 @@ 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 +@@ -1112,8 +1178,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1249,8 +1314,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1260,8 +1324,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1377,8 +1440,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1387,11 +1450,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1417,9 +1480,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1610,8 +1673,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1696,7 +1759,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1781,8 +1845,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1839,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/as.po b/po/as.po +index 018b243..15b4548 100644 +--- a/po/as.po ++++ b/po/as.po +@@ -9,17 +9,19 @@ + # Nilamdyuti Goswami , 2014 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Assamese (http://www.transifex.com/projects/p/fedora-abrt/language/as/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Assamese (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/as/)\n" + "Language: as\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -34,7 +36,10 @@ 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" +-msgstr "পঠাব লগিয়া সংবাদে কোনো সুৰক্ষা সংবেদ্য তথ্য অন্তৰ্ভুক্ত নকৰে। সেয়েহে আপোনাক পিছত আমনি কৰাটো প্ৰয়োজনীয় নহয় আৰু আপোনাৰ পৰা কোনো কাৰ্য্যৰ প্ৰয়োজনীয়তা নাই। \n" ++msgstr "" ++"পঠাব লগিয়া সংবাদে কোনো সুৰক্ষা সংবেদ্য তথ্য অন্তৰ্ভুক্ত নকৰে। সেয়েহে আপোনাক " ++"পিছত আমনি কৰাটো প্ৰয়োজনীয় নহয় আৰু আপোনাৰ পৰা কোনো কাৰ্য্যৰ প্ৰয়োজনীয়তা নাই। " ++"\n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +@@ -42,7 +47,8 @@ msgstr "আপুনি স্বচালিতভাৱে জমা দিয় + + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "আপুনি স্বচালিতভাৱে জমা দিয়া বেনামী স্খলন সংবাদসমূহ সামৰ্থবান কৰিব খোজে নে?" ++msgstr "" ++"আপুনি স্বচালিতভাৱে জমা দিয়া বেনামী স্খলন সংবাদসমূহ সামৰ্থবান কৰিব খোজে নে?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -92,10 +98,17 @@ msgstr "অধিসূচনা বন্ধ কৰিব নোৱাৰি: % + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "আপুনি এটা বিশেষ সমস্যাৰ অধিসূচনাসমূহ মৌন কৰিব লৈছে। আপুনি এই সমস্যাৰ বাবে এটা অধিসূচনা চিহ্ন আৰু কেতিয়াও দেখি নাপাব, যি কি নহওক, ABRT এ ইয়াক চিনাক্ত কৰিব আৰু আপুনি ইয়াক ABRT GUI ৰ পৰা সংবাদন কৰিব পাৰিব।\n\nআপুনি আগবাঢ়িব খোজে নে?" ++msgstr "" ++"আপুনি এটা বিশেষ সমস্যাৰ অধিসূচনাসমূহ মৌন কৰিব লৈছে। আপুনি এই সমস্যাৰ বাবে " ++"এটা অধিসূচনা চিহ্ন আৰু কেতিয়াও দেখি নাপাব, যি কি নহওক, ABRT এ ইয়াক চিনাক্ত " ++"কৰিব আৰু আপুনি ইয়াক ABRT GUI ৰ পৰা সংবাদন কৰিব পাৰিব।\n" ++"\n" ++"আপুনি আগবাঢ়িব খোজে নে?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -104,7 +117,9 @@ msgstr "সতৰ্কবাৰ্তা" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "অধিসূচনা স্থান যি ব্যৱহাৰকাৰীসমূহক ABRT দ্বাৰা চিনাক্ত কৰা বিষয়সমূহৰ বিষয়ে জ্ঞাত কৰে" ++msgstr "" ++"অধিসূচনা স্থান যি ব্যৱহাৰকাৰীসমূহক ABRT দ্বাৰা চিনাক্ত কৰা বিষয়সমূহৰ বিষয়ে " ++"জ্ঞাত কৰে" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -131,6 +146,7 @@ msgid "Ignore forever" + msgstr "চিৰকালৰ বাবে উপেক্ষা কৰক" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "খোলক" +@@ -145,6 +161,7 @@ msgstr "এটা জ্ঞাত সমস্যা দেখা দিছে" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "সংবাদ" +@@ -187,14 +204,19 @@ msgstr "gio চেনেলৰ বাবে অপ্ৰতিৰোধি অ + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "অধিবেশন ব্যৱস্থাপকলৈ সংযোগ খোলিবলৈ ব্যৰ্থ: '%s', অধিসূচনা পৰৱৰ্তী লগিনত উপস্থিত হব পাৰে" ++msgstr "" ++"অধিবেশন ব্যৱস্থাপকলৈ সংযোগ খোলিবলৈ ব্যৰ্থ: '%s', অধিসূচনা পৰৱৰ্তী লগিনত " ++"উপস্থিত হব পাৰে" + + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nএপ্লেট যি ABRT দ্বাৰা নতুন সমস্যাসমূহ চিনাক্ত কৰোতে অধিসূচিত কৰে\n" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"এপ্লেট যি ABRT দ্বাৰা নতুন সমস্যাসমূহ চিনাক্ত কৰোতে অধিসূচিত কৰে\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -215,11 +237,14 @@ msgstr "নিঃশব্দ সমু সংবাদন" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "স্টেক ট্ৰেইচ সৃজন কৰিবলে কেন্দ্ৰডাম্প ফাইলৰ প্ৰয়োজন যি সময় আৰু স্থান লোৱা কাৰ্য্য। ABRT এ সেৱা প্ৰদান কৰে যি স্টেক ট্ৰেইচক কেন্দ্ৰডাম্পৰ পৰা সৃজন কৰে কিন্তু আপুনি কেন্দ্ৰডাম্পক এই সেৱালৈ আপল'ড কৰিব লাগিব। এই বিকল্পৰ সৈতে অসামৰ্থবান থাকিলে ABRT এ নোসোধাকৈ কেন্দ্ৰ ডাম্পক আপল'ড কৰিব।" ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"স্টেক ট্ৰেইচ সৃজন কৰিবলে কেন্দ্ৰডাম্প ফাইলৰ প্ৰয়োজন যি সময় আৰু স্থান লোৱা " ++"কাৰ্য্য। ABRT এ সেৱা প্ৰদান কৰে যি স্টেক ট্ৰেইচক কেন্দ্ৰডাম্পৰ পৰা সৃজন কৰে " ++"কিন্তু আপুনি কেন্দ্ৰডাম্পক এই সেৱালৈ আপল'ড কৰিব লাগিব। এই বিকল্পৰ সৈতে " ++"অসামৰ্থবান থাকিলে ABRT এ নোসোধাকৈ কেন্দ্ৰ ডাম্পক আপল'ড কৰিব।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -227,28 +252,41 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT এ সমস্যা তথ্যক ডাইৰেকটৰিসমূহত সংৰক্ষণ কৰে। যেতিয়ায় ABRT ৰ লিখনযোগ্য ডাইৰেকটৰিৰ প্ৰয়োজন হয়, ডাইৰেকটৰিক চিস্টেম অৱস্থানৰ পৰা আপোনাৰ ঘৰ ডাইৰেকটৰিলৈ স্থানান্তৰ কৰা হয়। এই বিকল্পৰ সৈতে অসামৰ্থবান ABRT এ সমস্যা ডাইৰেকটৰিক নোসোধাকৈ স্থানান্তৰ কৰিব।" ++msgstr "" ++"ABRT এ সমস্যা তথ্যক ডাইৰেকটৰিসমূহত সংৰক্ষণ কৰে। যেতিয়ায় ABRT ৰ লিখনযোগ্য " ++"ডাইৰেকটৰিৰ প্ৰয়োজন হয়, ডাইৰেকটৰিক চিস্টেম অৱস্থানৰ পৰা আপোনাৰ ঘৰ ডাইৰেকটৰিলৈ " ++"স্থানান্তৰ কৰা হয়। এই বিকল্পৰ সৈতে অসামৰ্থবান ABRT এ সমস্যা ডাইৰেকটৰিক " ++"নোসোধাকৈ স্থানান্তৰ কৰিব।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport এটা সমস্যাৰ এটা সমু আৰু সম্পূৰ্ণভাৱে বেনামী বিৱৰণ। ABRT এ uReports ক দ্ৰুত বিশ্বব্যাপী প্ৰতিলিপি চিনাক্তকৰণৰ বাবে ব্যৱহাৰ কৰে। অবিকল্পিত সংৰূপত uReport ক সংবাদন প্ৰক্ৰিয়াৰ আৰম্ভণিত পঠোৱা হয়। এই বিকল্প সামৰ্থবান থকা অৱস্থাত uReports সমস্যা চিনাক্তকৰণৰ তৎক্ষনাত পিছত পঠোৱা হয়।" ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport এটা সমস্যাৰ এটা সমু আৰু সম্পূৰ্ণভাৱে বেনামী বিৱৰণ। ABRT এ uReports ক " ++"দ্ৰুত বিশ্বব্যাপী প্ৰতিলিপি চিনাক্তকৰণৰ বাবে ব্যৱহাৰ কৰে। অবিকল্পিত সংৰূপত " ++"uReport ক সংবাদন প্ৰক্ৰিয়াৰ আৰম্ভণিত পঠোৱা হয়। এই বিকল্প সামৰ্থবান থকা " ++"অৱস্থাত uReports সমস্যা চিনাক্তকৰণৰ তৎক্ষনাত পিছত পঠোৱা হয়।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "এই বিকল্প সামৰ্থবান থাকিলে, সমস্যা অধিসূচনা বাবুলত সংবাদ বুটামত ক্লিক কৰি আৰম্ভ কৰা সংবাদন প্ৰক্ৰিয়াক uReport পঠোৱাৰ পিছত বাধাগ্ৰস্থ কৰা হব। আপুনি সম্পূৰ্ণ সংবাদ বনাবলে অবিকল্পিত সমস্যা ব্ৰাউছাৰ সদায় ব্যৱহাৰ কৰিব পাৰিব।" ++msgstr "" ++"এই বিকল্প সামৰ্থবান থাকিলে, সমস্যা অধিসূচনা বাবুলত সংবাদ বুটামত ক্লিক কৰি " ++"আৰম্ভ কৰা সংবাদন প্ৰক্ৰিয়াক uReport পঠোৱাৰ পিছত বাধাগ্ৰস্থ কৰা হব। আপুনি " ++"সম্পূৰ্ণ সংবাদ বনাবলে অবিকল্পিত সমস্যা ব্ৰাউছাৰ সদায় ব্যৱহাৰ কৰিব পাৰিব।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "এই বিকল্প সামৰ্থবান থাকিলে ABRT এ কেতিয়াও সংবাদন কৰা সমস্যাসমূহৰ অধিসূচনা নেদেখুৱায়। প্ৰভাৱশালী হয় কেৱল যেতিয়া সমু সংবাদন সামৰ্থবান থাকে।" ++msgstr "" ++"এই বিকল্প সামৰ্থবান থাকিলে ABRT এ কেতিয়াও সংবাদন কৰা সমস্যাসমূহৰ অধিসূচনা " ++"নেদেখুৱায়। প্ৰভাৱশালী হয় কেৱল যেতিয়া সমু সংবাদন সামৰ্থবান থাকে।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -258,7 +296,9 @@ msgstr "কেন্দ্ৰডাম্প আপল'ড কৰাৰ আগ + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "এই বিকল্প সামৰ্থবান থাকিলে ABRT এ সদায় নিষিদ্ধ অভিগমৰ সৈতে বাগ টিকেট সৃষ্টি কৰে যদি সম্ভৱত সংবেদনশীল তথ্য চিনাক্ত কৰা হয়।" ++msgstr "" ++"এই বিকল্প সামৰ্থবান থাকিলে ABRT এ সদায় নিষিদ্ধ অভিগমৰ সৈতে বাগ টিকেট সৃষ্টি " ++"কৰে যদি সম্ভৱত সংবেদনশীল তথ্য চিনাক্ত কৰা হয়।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -273,7 +313,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "অসম্পূৰ্ণ সমস্যা তথ্য সাধাৰণত কমপিউটাৰ বন্ধ হৈ থকা অথবা এজন ব্যৱহাৰকাৰী লগ আউট হৈ থকা সময়ত চিনাক্ত কৰা হয়। অমূল্য সমস্যা সংবাদসমূহ প্ৰদান কৰিবলে, ABRT এ আপোনাক এই সমস্যা জমা দিয়াৰ অনুমতি নিদিব।" ++msgstr "" ++"অসম্পূৰ্ণ সমস্যা তথ্য সাধাৰণত কমপিউটাৰ বন্ধ হৈ থকা অথবা এজন ব্যৱহাৰকাৰী লগ " ++"আউট হৈ থকা সময়ত চিনাক্ত কৰা হয়। অমূল্য সমস্যা সংবাদসমূহ প্ৰদান কৰিবলে, ABRT " ++"এ আপোনাক এই সমস্যা জমা দিয়াৰ অনুমতি নিদিব।" + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -305,7 +348,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nপেকেইজ ডাটাবেইচ প্ৰশ্ন কৰক আৰু পেকেইজ আৰু উপাদান নাম সঞ্চয় কৰক" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"পেকেইজ ডাটাবেইচ প্ৰশ্ন কৰক আৰু পেকেইজ আৰু উপাদান নাম সঞ্চয় কৰক" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -368,7 +414,9 @@ 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 +@@ -394,7 +442,8 @@ msgstr "সমস্যা ডাইৰেকটৰি '%s' ৰ পৰা উপ + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "নাম '%s' হেৰাইছে, অনুগ্ৰহ কৰি নীৰিক্ষণ কৰক একে নামৰ অন্য সেৱা চলি থকা নাই।\n" ++msgstr "" ++"নাম '%s' হেৰাইছে, অনুগ্ৰহ কৰি নীৰিক্ষণ কৰক একে নামৰ অন্য সেৱা চলি থকা নাই।\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -408,11 +457,16 @@ msgstr "এই প্ৰগ্ৰামক ৰুট হিচাপে চল + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 এ আপোনাক এই সমস্যা জমা দিয়াৰ অনুমতি নিদিব। যদি আপোনাৰ সময় আছে আৰু আপুনি উন্নয়নকাৰীসকলক এই সমস্যাৰ সমাধান কৰাত সহায় কৰিব বিচাৰে, অনুগ্ৰহ কৰি তেওঁলোকক প্ৰত্যক্ষভাৱে যোগাযোগ কৰক।" ++"detected while computer is shutting down or user is logging out. In order to " ++"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 এ আপোনাক এই সমস্যা জমা দিয়াৰ অনুমতি নিদিব। যদি আপোনাৰ " ++"সময় আছে আৰু আপুনি উন্নয়নকাৰীসকলক এই সমস্যাৰ সমাধান কৰাত সহায় কৰিব বিচাৰে, " ++"অনুগ্ৰহ কৰি তেওঁলোকক প্ৰত্যক্ষভাৱে যোগাযোগ কৰক।" + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -449,7 +503,16 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nUPLOAD_DIRECTORY ক চায় আৰু আহি থকা আৰ্কাইভক abrt.conf ত ধাৰ্য্যত DumpLocation\nত আনপেক কৰে\n\nযদি UPLOAD_DIRECTORY কৰা নাই, ই abrt.conf ৰ পৰা\nWatchCrashdumpArchiveDir বিকল্প ব্যৱহাৰ কৰে " ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"UPLOAD_DIRECTORY ক চায় আৰু আহি থকা আৰ্কাইভক abrt.conf ত ধাৰ্য্যত " ++"DumpLocation\n" ++"ত আনপেক কৰে\n" ++"\n" ++"যদি UPLOAD_DIRECTORY কৰা নাই, ই abrt.conf ৰ পৰা\n" ++"WatchCrashdumpArchiveDir বিকল্প ব্যৱহাৰ কৰে " + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -463,19 +526,73 @@ msgstr "সমসাময়িক কৰমি সংখ্যা। অবিক + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB ত সৰ্বাধিক ক্যাশ আকাৰ। অবিকল্পিত হল" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "তৰ্কৰ অবৈধ সংখ্যা" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "অজ্ঞাত বিকল্প মান: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++#, fuzzy ++msgid "SSL Client Authenticated auto reporting" ++msgstr "নিঃশব্দ সমু সংবাদন" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -486,7 +603,14 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n UPLOAD_DIR - Directory where uploaded archives are stored\n FILENAME - Uploaded archive file name\n" ++msgstr "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -593,7 +717,9 @@ msgstr "অস্থায়ী ফাইল '%s' সৃষ্টি কৰিব + 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:264 +@@ -607,11 +733,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nC/C++ বেকট্ৰেইচ বিশ্লেষণ কৰে, প্ৰতিলিপি হেশ, বেকট্ৰেইচ হাৰ সৃজন কৰে,\nআৰু সমস্যা DIR ত স্খলন ফলন চিনাক্ত কৰে" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"C/C++ বেকট্ৰেইচ বিশ্লেষণ কৰে, প্ৰতিলিপি হেশ, বেকট্ৰেইচ হাৰ সৃজন কৰে,\n" ++"আৰু সমস্যা DIR ত স্খলন ফলন চিনাক্ত কৰে" + ++#. + #. * 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" +@@ -626,7 +758,9 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nকেন্দ্ৰডাম্পৰ UUID গণনা কৰি সমস্যা DIR ত সঞ্চয় কৰে" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"কেন্দ্ৰডাম্পৰ UUID গণনা কৰি সমস্যা DIR ত সঞ্চয় কৰে" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -652,14 +786,20 @@ 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" ++"\n" ++"oops সমস্যা ডাইৰেকটৰি DIR ৰ বাবে UUID আৰু DUPHASH গণনা আৰু সংৰক্ষণ কৰে" + + #: ../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" ++"\n" ++"xorg সমস্যা ডাইৰেকটৰি DIR ৰ বাবে UUID আৰু DUPHASH গণনা আৰু সংৰক্ষণ কৰে" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -671,7 +811,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\npython স্খলন ডাম্পসমূহৰ UUID আৰু DUPHASH গণনা আৰু সঞ্চয় কৰে" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"python স্খলন ডাম্পসমূহৰ UUID আৰু DUPHASH গণনা আৰু সঞ্চয় কৰে" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -686,10 +829,10 @@ msgid "Extracting the oops text from core" + msgstr "কেন্দ্ৰৰ পৰা oops লিখনী নিষ্কাষণ কৰা" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "{0} প্ৰক্ৰিয়াকৰণ কৰিব নোৱাৰি:\n" + "{1}" +-msgstr "{0} প্ৰক্ৰিয়াকৰণ কৰিব নোৱাৰি:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -703,14 +846,20 @@ msgstr "Oops লিখনী সফলভাৱে নিষ্কাষণ ক + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "কাৰনেল লগত হাৰ্ডৱেৰ ত্ৰুটি চিনাক্ত কৰা হৈছে।\nই সম্ভবত এটা চফ্টৱেৰ সমস্যা নহয়।\n" ++msgstr "" ++"কাৰনেল লগত হাৰ্ডৱেৰ ত্ৰুটি চিনাক্ত কৰা হৈছে।\n" ++"ই সম্ভবত এটা চফ্টৱেৰ সমস্যা নহয়।\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nসমস্যা ডাইৰেকটৰি DIR ত কেন্দ্ৰডাম্প বিশ্লেষণ কৰে, বেকট্ৰেইচ সৃজন কৰি সঞ্চয় কৰে" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"সমস্যা ডাইৰেকটৰি DIR ত কেন্দ্ৰডাম্প বিশ্লেষণ কৰে, বেকট্ৰেইচ সৃজন কৰি সঞ্চয় " ++"কৰে" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -722,6 +871,7 @@ 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" +@@ -732,7 +882,11 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\nকেন্দ্ৰ ডাম্প আৰু প্ৰসংগিক লাইব্ৰেৰীৰ পৰা coredump-level বেকট্ৰেইচ সৃষ্টি কৰে" ++msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"কেন্দ্ৰ ডাম্প আৰু প্ৰসংগিক লাইব্ৰেৰীৰ পৰা coredump-level বেকট্ৰেইচ সৃষ্টি " ++"কৰে" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -760,7 +914,8 @@ msgstr "ব্যৱহাৰকাৰী কমান্ডত প্ৰস্ + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -770,13 +925,33 @@ msgid "" + " -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" ++" --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" +-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" ++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_FILE ত তালিকাভুক্ত সকলো build-ids ৰ বাবে ডিবাগইনফোক\n" ++"CACHEDIR লৈ ইনস্টল কৰে, TMPDIR ক অস্থায়ী স্টেগিং স্থান হিচাপে ব্যৱহাৰ কৰাকৈ।\n" ++"CACHEDIR ৰ পুৰনি ফাইলসমূহক মচি পেলোৱা হয় যেতিয়ালৈকে ই 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}" +@@ -784,7 +959,8 @@ 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" +@@ -807,21 +983,32 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "কেন্দ্ৰীয় ডাম্প আপল'ড কৰিবলে প্ৰস্তুত? (ই সংবেদনশীল তথ্য অন্তৰ্ভুক্ত কৰিব পাৰে)। যদি আপোনাৰ উত্তৰ 'নহয়' হয়, এটা স্টেক ট্ৰেইচ স্থানীয়ভাৱে সৃজন কৰা হব। (ই তথ্যৰ এটা বৃহত পৰিমাণ ডাউনল'ড কৰিব পাৰে)।" ++msgstr "" ++"কেন্দ্ৰীয় ডাম্প আপল'ড কৰিবলে প্ৰস্তুত? (ই সংবেদনশীল তথ্য অন্তৰ্ভুক্ত কৰিব " ++"পাৰে)। যদি আপোনাৰ উত্তৰ 'নহয়' হয়, এটা স্টেক ট্ৰেইচ স্থানীয়ভাৱে সৃজন কৰা হব। " ++"(ই তথ্যৰ এটা বৃহত পৰিমাণ ডাউনল'ড কৰিব পাৰে)।" + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"আপুনি এটা স্টেক ট্ৰেইচ স্থানীয়ভাৱে সৃষ্টি কৰিব বিচাৰে নে? (ই বৃহত পৰিমাণৰ " ++"তথ্য ডাউনল'ড কৰিব পাৰে কিন্তু স্টেক ট্ৰেইচ নহোৱাকৈ সংবাদন আগবাঢ়িব নোৱাৰে)।" + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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 কে সৰু নহয়।\n" ++"FILEs সংৰক্ষণ কৰা (কেতিয়াও মচা নহয়)।" + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -852,7 +1039,8 @@ msgstr "Usage: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "বৰ্তমান কাৰ্য্য ডাইৰেকটৰি সম্ভবত মচি পেলোৱাৰ বাবে প্ৰাপ্ত কৰিবলে অক্ষম " ++msgstr "" ++"বৰ্তমান কাৰ্য্য ডাইৰেকটৰি সম্ভবত মচি পেলোৱাৰ বাবে প্ৰাপ্ত কৰিবলে অক্ষম " + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +@@ -990,7 +1178,10 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nলগ ফাইল FILE চাওক, PROG চলাওক যেতিয়া ই ডাঙৰ হয় অথবা ইয়াক প্ৰতিস্থাপন কৰা হয়" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"লগ ফাইল FILE চাওক, PROG চলাওক যেতিয়া ই ডাঙৰ হয় অথবা ইয়াক প্ৰতিস্থাপন কৰা হয়" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1000,20 +1191,26 @@ msgstr "PROG নচলাব যদি STRs পোৱা নাযায়" + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "ভগ্ন BIOS ৰ বাবে এটা কাৰনেল সমস্যা দেখা দিলে। দূৰ্ভাগ্যজনকভাৱে, এই ধৰণৰ সমস্যা কাৰনেল ব্যৱস্থাপকসকলে ঠিক কৰিব নোৱাৰে।" ++msgstr "" ++"ভগ্ন BIOS ৰ বাবে এটা কাৰনেল সমস্যা দেখা দিলে। দূৰ্ভাগ্যজনকভাৱে, এই ধৰণৰ " ++"সমস্যা কাৰনেল ব্যৱস্থাপকসকলে ঠিক কৰিব নোৱাৰে।" + + #: ../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: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)। কাৰনেল ব্যৱস্থাপকসমূহ আবিলিত সংবাদসমূহ বিশ্লেষণ কৰিবলে অক্ষম।" ++msgstr "" ++"এটা কাৰনেল সমস্যা দেখা দিলে, কিন্তু আপোনাৰ কাৰনেল আবিলিত (flags:%s)। কাৰনেল " ++"ব্যৱস্থাপকসমূহ আবিলিত সংবাদসমূহ বিশ্লেষণ কৰিবলে অক্ষম।" + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1025,7 +1222,10 @@ 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" ++"\n" ++"FILE ৰ পৰা oops নিষ্কাষণ কৰক (অথবা প্ৰাথমিক ইনপুট)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1033,13 +1233,15 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "প্ৰতিটো প্ৰাপ্ত oops ৰ বাবে DIR ত নতুন সমস্যা ডাইৰেকটৰি সৃষ্টি কৰক" + + #: ../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 ত ধাৰ্য্য কৰা হয়। " ++msgstr "" ++"-d DumpLocation নিচিনা একে, DumpLocation ক abrt.conf ত ধাৰ্য্য কৰা হয়। " + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1075,7 +1277,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nFILE ৰ পৰা Xorg ক্ৰেশ নিষ্কাষণ কৰক (অথবা প্ৰামাণিক ইনপুট)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"FILE ৰ পৰা Xorg ক্ৰেশ নিষ্কাষণ কৰক (অথবা প্ৰামাণিক ইনপুট)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1089,10 +1294,13 @@ msgstr "প্ৰতিটো প্ৰাপ্ত স্খলনৰ বাব + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "ৰিট্ৰেইচ চাৰ্ভাৰ ব্যৱহাৰ কৰিব নোৱাৰি, কিয়নো স্খলন অতি ডাঙৰ। স্থানীয় ৰিট্ৰেচিং চেষ্টা কৰক।" ++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 +@@ -1115,10 +1323,10 @@ msgstr "দৈৰ্ঘ %d -ৰ HTTP হেডাৰ পঠাবলে ব্ + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "চাৰ্ভাৰৰ পৰা অপ্ৰত্যাশীত HTTP প্ৰতিক্ৰিয়া: %d\n" + "%s" +-msgstr "চাৰ্ভাৰৰ পৰা অপ্ৰত্যাশীত HTTP প্ৰতিক্ৰিয়া: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1134,7 +1342,9 @@ msgstr "চাৰ্ভাৰৰ পৰা অবৈধ প্ৰতিক্ৰ + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "ৰিট্ৰেইচ চাৰ্ভাৰে পেকেইজ '%s.%s' প্ৰক্ৰিয়া কৰিবলে অক্ষম।\nই অনুমোদিত '%s' ভঁৰালসমূহৰ এটা অংশ হয় নে?" ++msgstr "" ++"ৰিট্ৰেইচ চাৰ্ভাৰে পেকেইজ '%s.%s' প্ৰক্ৰিয়া কৰিবলে অক্ষম।\n" ++"ই অনুমোদিত '%s' ভঁৰালসমূহৰ এটা অংশ হয় নে?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1159,7 +1369,9 @@ msgstr "ৰিট্ৰেইচ চাৰ্ভাৰ ব্যৱহাৰ ক + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "আপোনাৰ স্খলনৰ আকাৰ %lld বাইটসমূহ, কিন্তু ৰিট্ৰেইচ চাৰ্ভাৰে কেৱল %lld বাইটসমূহকে সৰু বা সমান স্খলন গ্ৰহন কৰে।" ++msgstr "" ++"আপোনাৰ স্খলনৰ আকাৰ %lld বাইটসমূহ, কিন্তু ৰিট্ৰেইচ চাৰ্ভাৰে কেৱল %lld " ++"বাইটসমূহকে সৰু বা সমান স্খলন গ্ৰহন কৰে।" + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1187,7 +1399,9 @@ msgstr "আপলোড কৰিবলে এটা আৰ্কাইভ প + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "আপোনাৰ আৰ্কাইভৰ আকাৰ %lld বাইটসমূহ, কিন্তু ৰিট্ৰেইচ চাৰ্ভাৰে কেৱল %lld বাইটসমূহতকে সৰু বা সমান আৰ্কাইভসমূহ গ্ৰহন কৰে।" ++msgstr "" ++"আপোনাৰ আৰ্কাইভৰ আকাৰ %lld বাইটসমূহ, কিন্তু ৰিট্ৰেইচ চাৰ্ভাৰে কেৱল %lld " ++"বাইটসমূহতকে সৰু বা সমান আৰ্কাইভসমূহ গ্ৰহন কৰে।" + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1230,13 +1444,17 @@ msgstr "আপলোড সফল" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "আপোনাৰ সমস্যা ডাইৰেকটৰি স্খলিত আৰু ৰিট্ৰেইচ চাৰ্ভাৰ দ্বাৰা প্ৰক্ৰিয়া কৰিব নোৱাৰি।" ++msgstr "" ++"আপোনাৰ সমস্যা ডাইৰেকটৰি স্খলিত আৰু ৰিট্ৰেইচ চাৰ্ভাৰ দ্বাৰা প্ৰক্ৰিয়া কৰিব " ++"নোৱাৰি।" + + #: ../src/plugins/abrt-retrace-client.c:759 + 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." +@@ -1252,10 +1470,10 @@ msgstr "ৰিট্ৰেইচ চাৰ্ভাৰ আৰম্ভ কৰা + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "কাৰ্য্য Id: %s\nকাৰ্য্য পাছৱাৰ্ড: %s\n" ++msgstr "কাৰ্য্য Id: %s\n" ++"কাৰ্য্য পাছৱাৰ্ড: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1263,10 +1481,10 @@ msgstr "চাৰ্ভাৰৰ পৰা অবৈধ প্ৰতিক্ৰ + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "কাৰ্য্য অৱস্থা: %s\n" + "%s\n" +-msgstr "কাৰ্য্য অৱস্থা: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1279,7 +1497,9 @@ msgstr "দৈৰ্ঘ %d -ৰ HTTP হেডাৰ পঠাবলে ব্ + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "ৰিট্ৰেইচ ব্যৰ্থ। পিছত পুনৰ চেষ্টা কৰক আৰু যদি সমস্যা অস্তিত্ববান থাকে অনুগ্ৰহ কৰি এই বিষয় সংবাদন কৰক।" ++msgstr "" ++"ৰিট্ৰেইচ ব্যৰ্থ। পিছত পুনৰ চেষ্টা কৰক আৰু যদি সমস্যা অস্তিত্ববান থাকে " ++"অনুগ্ৰহ কৰি এই বিষয় সংবাদন কৰক।" + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1293,7 +1513,9 @@ msgstr "ৰিট্ৰেইচ চাৰ্ভাৰলে অসুৰক্ + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "আৰ্কাইভ আপল'ড কৰাৰ আগত ৰিট্ৰেইচ চাৰ্ভাৰে প্ৰদান কৰা পেকেইজ প্ৰক্ৰিয়া কৰিবলে সক্ষম হয়নে নীৰিক্ষণ নকৰিব" ++msgstr "" ++"আৰ্কাইভ আপল'ড কৰাৰ আগত ৰিট্ৰেইচ চাৰ্ভাৰে প্ৰদান কৰা পেকেইজ প্ৰক্ৰিয়া কৰিবলে " ++"সক্ষম হয়নে নীৰিক্ষণ নকৰিব" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1325,7 +1547,8 @@ 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" +@@ -1343,7 +1566,9 @@ msgstr "চাৰ্ভাৰত আপোনাৰ কাৰ্য্যৰ প + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [options]\nকাৰ্য্য: create/status/backtrace/log/batch/exploitable" ++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 +@@ -1375,14 +1600,19 @@ msgstr "স্থানীয় GNU ডিবাগাৰ" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "GDB ব্যৱহাৰ কৰি debuginfo পেকেইজসমূহ ডাউনলোড কৰক আৰু বেকট্ৰেইচ স্থানীয়ভাৱে সৃজন কৰক" ++msgstr "" ++"GDB ব্যৱহাৰ কৰি debuginfo পেকেইজসমূহ ডাউনলোড কৰক আৰু বেকট্ৰেইচ স্থানীয়ভাৱে " ++"সৃজন কৰক" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "debuginfo পেকেইজসমূহ ডাউনলোড কৰাৰ প্ৰয়োজন, যি বহু সময়, আৰু ডিস্ক স্থান লব পাৰে। যি কি নহওক, ৰিট্ৰেইচচাৰ্ভাৰৰ বিপৰিতে, দূৰৱৰ্তী মেচিনসমূহলে কৌৰডাম্প নপঠায়। " ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"debuginfo পেকেইজসমূহ ডাউনলোড কৰাৰ প্ৰয়োজন, যি বহু সময়, আৰু ডিস্ক স্থান লব " ++"পাৰে। যি কি নহওক, ৰিট্ৰেইচচাৰ্ভাৰৰ বিপৰিতে, দূৰৱৰ্তী মেচিনসমূহলে কৌৰডাম্প " ++"নপঠায়। " + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1390,12 +1620,17 @@ msgstr "বিশ্লেষণৰ বাবে দূৰৱৰ্তী ৰি + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "কৌৰডাম্পক এটা চাৰ্ভাৰলে আপলোড কৰে, যি বেকট্ৰেইচ সৃজন কৰে আৰু ইয়াক পঠায়। সুবিধা: debuginfo ডাউনলোডসমূহৰ প্ৰয়োজন নাই। debuginfos -ৰ চাৰ্ভাৰৰ ডাটাবেইচ ৰিট্ৰেইচ কৰা সম্পূৰ্ণ। ৰেট্ৰেইচ চাৰ্ভাৰে উন্নত বেকট্ৰেইচসমূহ সৃজন কৰিব পাৰে। অসুবিধাসমূহ: আপুনি আপলোড কৰা কৌৰডাম্পে স্খলিত প্ৰগ্ৰামৰ পৰা সকলো তথ্য অন্তৰ্ভুক্ত কৰে, আপোনাৰ ব্যক্তিগত তথ্য অন্তৰ্ভুক্ত কৰাকৈ, যদি কোনো আছে।" ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"কৌৰডাম্পক এটা চাৰ্ভাৰলে আপলোড কৰে, যি বেকট্ৰেইচ সৃজন কৰে আৰু ইয়াক পঠায়। " ++"সুবিধা: debuginfo ডাউনলোডসমূহৰ প্ৰয়োজন নাই। debuginfos -ৰ চাৰ্ভাৰৰ ডাটাবেইচ " ++"ৰিট্ৰেইচ কৰা সম্পূৰ্ণ। ৰেট্ৰেইচ চাৰ্ভাৰে উন্নত বেকট্ৰেইচসমূহ সৃজন কৰিব পাৰে। " ++"অসুবিধাসমূহ: আপুনি আপলোড কৰা কৌৰডাম্পে স্খলিত প্ৰগ্ৰামৰ পৰা সকলো তথ্য " ++"অন্তৰ্ভুক্ত কৰে, আপোনাৰ ব্যক্তিগত তথ্য অন্তৰ্ভুক্ত কৰাকৈ, যদি কোনো আছে।" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1420,10 +1655,13 @@ msgstr "অসুৰক্ষিত সংযোগ ব্যৱহাৰ কৰ + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "অসুৰক্ষিত সংযোগ <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a> ৰ অনুমতি দিবলে \"insecure\" লিখক" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"অসুৰক্ষিত সংযোগ <a href=\"https://fedorahosted.org/abrt/wiki/" ++"AbrtRetraceServerInsecureConnection\" >(warning)</a> ৰ অনুমতি দিবলে " ++"\"insecure\" লিখক" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1437,7 +1675,10 @@ msgstr "~/.xsession-errors ফাইলৰ পৰা প্ৰাসংগিক + 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." +@@ -1595,7 +1836,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nbodhi চাৰ্ভাৰত আপডেইটসমূহ সন্ধান কৰক" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"bodhi চাৰ্ভাৰত আপডেইটসমূহ সন্ধান কৰক" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1613,16 +1857,22 @@ msgstr "পেকেইজৰ স্থানীয় সংস্কৰণ উপ + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "এটা আপডেইট উপলব্ধ যি আপোনাৰ সমস্যা সমাধান কৰিব পাৰে। আপুনি %s চলাই ইয়াক ইনস্টল কৰিব পাৰে। আপুনি বাগ সংবাদন কৰাটো অব্যাহত ৰাখিব বিচাৰে নে?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"এটা আপডেইট উপলব্ধ যি আপোনাৰ সমস্যা সমাধান কৰিব পাৰে। আপুনি %s চলাই ইয়াক " ++"ইনস্টল কৰিব পাৰে। আপুনি বাগ সংবাদন কৰাটো অব্যাহত ৰাখিব বিচাৰে নে?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + 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" ++"\n" ++"বিভাজিত oops বাৰ্তাৰ বাবে ফাইলসমূহ স্কেন কৰক। প্ৰিন্ট আৰু/অথবা মচি পেলাব " ++"পাৰি।" + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1699,9 +1949,12 @@ msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্প + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "স্বসংবাদন বৈশিষ্ট্য অসামৰ্থবান কৰা আছে। অনুগ্ৰহ কৰি ইয়াক ৰুট সুবিধা থকা এজন\nব্যৱহাৰকাৰী ৰূপে 'abrt-auto-reporting enabled' প্ৰেৰণ কৰি সামৰ্থবান কৰক\n" ++msgstr "" ++"স্বসংবাদন বৈশিষ্ট্য অসামৰ্থবান কৰা আছে। অনুগ্ৰহ কৰি ইয়াক ৰুট সুবিধা থকা এজন\n" ++"ব্যৱহাৰকাৰী ৰূপে 'abrt-auto-reporting enabled' প্ৰেৰণ কৰি সামৰ্থবান কৰক\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1731,7 +1984,9 @@ 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/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1776,7 +2031,9 @@ msgstr "কেৱল টাইমস্টাম্পৰ পিছত চিন + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "বিশ্লেষণৰ বাবে দূৰৱৰ্তী ৰিট্ৰেইচ চাৰ্ভাৰলে কেন্দ্ৰীয় ডাম্প পঠাওক অথবা দূৰৱৰ্তী বিশ্লেষণ ব্যৰ্থ হলে স্থানীয় বিশ্লেষণ পৰিৱেশন কৰক" ++msgstr "" ++"বিশ্লেষণৰ বাবে দূৰৱৰ্তী ৰিট্ৰেইচ চাৰ্ভাৰলে কেন্দ্ৰীয় ডাম্প পঠাওক অথবা " ++"দূৰৱৰ্তী বিশ্লেষণ ব্যৰ্থ হলে স্থানীয় বিশ্লেষণ পৰিৱেশন কৰক" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1784,10 +2041,18 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "কেন্দ্ৰীয়ডাম্প এটা চাৰ্ভাৰলে আপল'ড কৰে, যি বেকট্ৰেইচ সৃজন কৰে আৰু ইয়াক ঘুৰাই দিয়ে। যদি ব্যৱহাৰকাৰীয়ে তাৰ কেন্দ্ৰীয়ডাম্পক ঘটনায় স্থানীয় বিশ্লেষণ কৰা ঠাইত আপল'ড কৰিব নিবিচাৰে। স্থানীয় বিশ্লেষণ ঘটনা হিচাপে চলোৱা হয় যদি দূৰৱৰ্তী বিশ্লেষণ ব্যৰ্থ হয়। সুবিধা: debuginfo ডাউনল'ডসমূহৰ প্ৰয়োজন নাই। debuginfos ৰ ৰিট্ৰেইচ চাৰ্ভাৰৰ ডাটাবেইচ অধিক সম্পূৰ্ণ। ৰিট্ৰেইচ চাৰ্ভাৰে অধিক ভাল বেকট্ৰেইচ সৃজন কৰিব পাৰে। অসুবিধা: আপিনি আপল'ড কৰা কেনদ্ৰীয় ডাম্পে স্খলিত প্ৰগ্ৰামৰ পৰা সকলো তথ্য আপল'ড কৰে, আপোনাৰ ব্যক্তিগত তথ্য অন্তৰ্ভুক্ত কৰাকৈ, যদি থাকে।" ++msgstr "" ++"কেন্দ্ৰীয়ডাম্প এটা চাৰ্ভাৰলে আপল'ড কৰে, যি বেকট্ৰেইচ সৃজন কৰে আৰু ইয়াক ঘুৰাই " ++"দিয়ে। যদি ব্যৱহাৰকাৰীয়ে তাৰ কেন্দ্ৰীয়ডাম্পক ঘটনায় স্থানীয় বিশ্লেষণ কৰা ঠাইত " ++"আপল'ড কৰিব নিবিচাৰে। স্থানীয় বিশ্লেষণ ঘটনা হিচাপে চলোৱা হয় যদি দূৰৱৰ্তী " ++"বিশ্লেষণ ব্যৰ্থ হয়। সুবিধা: debuginfo ডাউনল'ডসমূহৰ প্ৰয়োজন নাই। debuginfos ৰ " ++"ৰিট্ৰেইচ চাৰ্ভাৰৰ ডাটাবেইচ অধিক সম্পূৰ্ণ। ৰিট্ৰেইচ চাৰ্ভাৰে অধিক ভাল " ++"বেকট্ৰেইচ সৃজন কৰিব পাৰে। অসুবিধা: আপিনি আপল'ড কৰা কেনদ্ৰীয় ডাম্পে স্খলিত " ++"প্ৰগ্ৰামৰ পৰা সকলো তথ্য আপল'ড কৰে, আপোনাৰ ব্যক্তিগত তথ্য অন্তৰ্ভুক্ত কৰাকৈ, " ++"যদি থাকে।" + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1796,13 +2061,16 @@ msgstr "VM কেন্দ্ৰ বিশ্লেষণ কৰক" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "কাৰনেল debuginfo পেকেইজসমূহ ইনস্টল কৰক, কাৰনেল লগ আৰু oops বাৰ্তা সৃজন কৰক" ++msgstr "" ++"কাৰনেল debuginfo পেকেইজসমূহ ইনস্টল কৰক, কাৰনেল লগ আৰু oops বাৰ্তা সৃজন কৰক" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "কাৰনেল debuginfo পেকেইজসমূহ ইনস্টল কৰাৰ প্ৰয়োজন, যি বহু সময়, আৰু ডিস্ক স্থান লব পাৰে।" ++msgstr "" ++"কাৰনেল debuginfo পেকেইজসমূহ ইনস্টল কৰাৰ প্ৰয়োজন, যি বহু সময়, আৰু ডিস্ক স্থান " ++"লব পাৰে।" + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1816,7 +2084,9 @@ msgstr "এপ্লিকেচনৰ GConf ডাইৰেকটৰিৰ প + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "gconftool-2 --recursive-list /apps/executable চলাওক আৰু ইয়াক 'gconf_subtree' উপাদান হিচাপে সাঁচক।" ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable চলাওক আৰু ইয়াক 'gconf_subtree' " ++"উপাদান হিচাপে সাঁচক।" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1830,7 +2100,9 @@ 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" +@@ -1842,9 +2114,11 @@ msgstr "আপোনাৰ ঘৰ ডাইৰেকটৰিৰ পৰা .vimr + + #: ../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 "আপোনাৰ ঘৰ ডাইৰেকটৰিত .vimrc and .gvimrc আছে নে নীৰিক্ষণ কৰে আৰু সিহতক user_vimrc আৰু user_gvimrc হিচাপে সঞ্চয় কৰে।" ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"আপোনাৰ ঘৰ ডাইৰেকটৰিত .vimrc and .gvimrc আছে নে নীৰিক্ষণ কৰে আৰু সিহতক " ++"user_vimrc আৰু user_gvimrc হিচাপে সঞ্চয় কৰে।" + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/ast.po b/po/ast.po +index 8795e5a..2f6e695 100644 +--- a/po/ast.po ++++ b/po/ast.po +@@ -6,17 +6,19 @@ + # Jiří Moskovčák , 2011 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Asturian (http://www.transifex.com/projects/p/fedora-abrt/language/ast/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Asturian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ast/)\n" + "Language: ast\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -89,7 +91,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -128,6 +132,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -142,6 +147,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Informe" +@@ -212,10 +218,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +234,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -405,10 +410,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -460,19 +465,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -606,9 +664,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -683,8 +743,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -719,6 +778,7 @@ 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" +@@ -757,7 +817,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +828,8 @@ msgid "" + " -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" ++" --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" +@@ -816,7 +878,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1030,6 +1093,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1090,6 +1154,7 @@ 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 +@@ -1112,8 +1177,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1249,8 +1313,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1260,8 +1323,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1377,8 +1439,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1387,11 +1449,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1417,9 +1479,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1610,8 +1672,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1696,7 +1758,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1781,8 +1844,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1839,8 +1902,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/az.po b/po/az.po +index ddbcf0e..978e426 100644 +--- a/po/az.po ++++ b/po/az.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/fedora-abrt/language/az/)\n" ++"Language-Team: Azerbaijani (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/az/)\n" ++"Language: az\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: az\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/bal.po b/po/bal.po +index 3190aa0..53c32aa 100644 +--- a/po/bal.po ++++ b/po/bal.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Balochi (http://www.transifex.com/projects/p/fedora-abrt/language/bal/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Balochi (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/bal/)\n" + "Language: bal\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/be.po b/po/be.po +index 08d57ab..53dc3b6 100644 +--- a/po/be.po ++++ b/po/be.po +@@ -5,17 +5,20 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Belarusian (http://www.transifex.com/projects/p/fedora-abrt/language/be/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Belarusian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/be/)\n" + "Language: be\n" +-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " ++"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +91,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +132,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +147,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +218,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +234,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +410,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +465,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +664,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +743,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +778,7 @@ 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" +@@ -756,7 +817,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +828,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +878,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1093,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1154,7 @@ 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,8 +1177,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1313,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1323,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1439,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1449,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1479,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1672,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1758,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1844,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1902,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/bg.po b/po/bg.po +index 336633e..de5d1b5 100644 +--- a/po/bg.po ++++ b/po/bg.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Bulgarian (http://www.transifex.com/projects/p/fedora-abrt/language/bg/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Bulgarian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/bg/)\n" + "Language: bg\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -100,7 +104,8 @@ msgstr "Внимание" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "Област на известяващия аплет, информиращ за проблемите, забелязани от ABRT" ++msgstr "" ++"Област на известяващия аплет, информиращ за проблемите, забелязани от ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -127,6 +132,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +147,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Съобщи" +@@ -190,7 +197,10 @@ msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nАплет, известяващ потребителя, когато нов проблем бъде открит от ABRT\n" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Аплет, известяващ потребителя, когато нов проблем бъде открит от ABRT\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -211,10 +221,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +237,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -301,7 +310,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nЗапитване към базата данни и съхраняване на пакета и името на компонента" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Запитване към базата данни и съхраняване на пакета и името на компонента" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -390,7 +402,9 @@ msgstr "" + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "Името '%s' беше изгубено, моля, проверете дали не работи друга услуга, собственик на името.\n" ++msgstr "" ++"Името '%s' беше изгубено, моля, проверете дали не работи друга услуга, " ++"собственик на името.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -404,10 +418,10 @@ msgstr "Тази програма трябва да бъде стартиран + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +473,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -603,11 +670,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nАнализира C/C++ проследяване, генерира duplication hash, backtrace rating,\nи идентифицира провалената функция в проблем в директория DIR" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Анализира C/C++ проследяване, генерира duplication hash, backtrace rating,\n" ++"и идентифицира провалената функция в проблем в директория DIR" + ++#. + #. * 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" +@@ -622,7 +695,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nПресмята и записва UUID на coredump проблем в директория DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Пресмята и записва UUID на coredump проблем в директория DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -667,7 +743,9 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nПресмята и записва UUID и DUPHASH на python дъмповете" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"Пресмята и записва UUID и DUPHASH на python дъмповете" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -682,8 +760,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -706,7 +783,11 @@ msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nАнализира coredump в директория с проблем DIR, генерира и записва обратно проследяване" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Анализира coredump в директория с проблем DIR, генерира и записва обратно " ++"проследяване" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -718,6 +799,7 @@ 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" +@@ -756,7 +838,8 @@ msgstr "Изход по команда от потребителя" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +849,8 @@ msgid "" + " -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" ++" --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" +@@ -780,7 +864,8 @@ msgstr "Не мога да отворя {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Coredump препраща към {0} debuginfo файла, {1} от тях не са инсталирани" ++msgstr "" ++"Coredump препраща към {0} debuginfo файла, {1} от тях не са инсталирани" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -815,9 +900,15 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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) или файлове (-f) за проблем в DIRs докато станат по-малки от SIZE.\nFILE-овете се запазват (never deleted)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Изтрива директории (-d) или файлове (-f) за проблем в DIRs докато станат по-" ++"малки от SIZE.\n" ++"FILE-овете се запазват (never deleted)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -986,7 +1077,10 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nНаблюдавай лог файла FILE, стартирай PROG, когато нарасне или бъде преместен" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Наблюдавай лог файла FILE, стартирай PROG, когато нарасне или бъде преместен" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1009,7 +1103,9 @@ msgstr "" + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." +-msgstr "Възникна проблем в ядрото, но ядрото Ви е опорочено (флагове:%s). Поддържащите ядрото не могат да диагностицират проблеми в такива ядра." ++msgstr "" ++"Възникна проблем в ядрото, но ядрото Ви е опорочено (флагове:%s). " ++"Поддържащите ядрото не могат да диагностицират проблеми в такива ядра." + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1029,6 +1125,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1071,7 +1168,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nИзвлечи Xorg срива от FILE (или стандартния вход)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Извлечи Xorg срива от FILE (или стандартния вход)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1085,10 +1185,13 @@ msgstr "" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Не може да бъде използван анализиращ сървър, понеже обемът на информацията е твърде голям. Опитайте локално анализиране." ++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,10 +1214,10 @@ msgstr "Провал при изпращането на HTTP заглавка с + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Неочакван HTTP отговор от сървъра: %d\n" + "%s" +-msgstr "Неочакван HTTP отговор от сървъра: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1155,7 +1258,9 @@ msgstr "" + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Обемът на информацията за грешката е %lld байта, но сървърът за анализ приема доклади не по-големи от %lld байта." ++msgstr "" ++"Обемът на информацията за грешката е %lld байта, но сървърът за анализ " ++"приема доклади не по-големи от %lld байта." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1183,7 +1288,9 @@ msgstr "Подготовка на архива за качване" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Размерът на Вашия архив е %lld байта, но сървърът за retrace приема архиви не по-големи от %lld байта." ++msgstr "" ++"Размерът на Вашия архив е %lld байта, но сървърът за retrace приема архиви " ++"не по-големи от %lld байта." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1226,13 +1333,17 @@ msgstr "Качването е успешно" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Директорията с Вашите данни е повредена и не може да бъде обработена от анализиращия сървър." ++msgstr "" ++"Директорията с Вашите данни е повредена и не може да бъде обработена от " ++"анализиращия сървър." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Архивът съдържа безполезни файлове (като напр. символни връзки) и поради това не може да бъде обработен." ++msgstr "" ++"Архивът съдържа безполезни файлове (като напр. символни връзки) и поради " ++"това не може да бъде обработен." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1248,10 +1359,10 @@ msgstr "Обратното проследяване е стартирано" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Id на задачата: %s\nПарола на задачата: %s\n" ++msgstr "Id на задачата: %s\n" ++"Парола на задачата: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1259,23 +1370,26 @@ msgstr "Невалиден отговор от сървъра: липсващ X- + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Състояние на задачата: %s\n" + "%s\n" +-msgstr "Състояние на задачата: %s\n%s\n" + + #: ../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 "Провал при изпращането на HTTP заглавката с дължина %d: NSS грешка %d." ++msgstr "" ++"Провал при изпращането на HTTP заглавката с дължина %d: NSS грешка %d." + + #: ../src/plugins/abrt-retrace-client.c:1160 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Обратно проследяващият анализ се провали. По-късно опитайте отново и ако проблемът остава, моля, докладвайте го." ++msgstr "" ++"Обратно проследяващият анализ се провали. По-късно опитайте отново и ако " ++"проблемът остава, моля, докладвайте го." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1289,7 +1403,9 @@ msgstr "позволи незащитена връзка с анализиращ + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "не проверявай дали retrace сървъра може да обработи даден пакет преди качване на архива" ++msgstr "" ++"не проверявай дали retrace сървъра може да обработи даден пакет преди " ++"качване на архива" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1371,14 +1487,20 @@ msgstr "Локален GNU Debugger" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Сваляне на debuginfo пакети и генериране на обратно проследяващ анализ локално с използването на GDB" ++msgstr "" ++"Сваляне на debuginfo пакети и генериране на обратно проследяващ анализ " ++"локално с използването на GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Нуждае се от сваляне на debuginfo пакети, което може да отнеме значително време и ще заеме дисково пространство. Но пък за разлика от ползването на анализиращ сървър (RetraceServer), не изпраща копия на паметта към отдалечени машини." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Нуждае се от сваляне на debuginfo пакети, което може да отнеме значително " ++"време и ще заеме дисково пространство. Но пък за разлика от ползването на " ++"анализиращ сървър (RetraceServer), не изпраща копия на паметта към " ++"отдалечени машини." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1386,12 +1508,18 @@ msgstr "Изпращане съдържанието на паметта на о + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Качва копие от паметта на сървър, който генерира обратно проследяващ анализ и го изпраща обратно. За: няма нужда от сваляне на debuginfo пакети. Базата данни на Retrace сървърите е по-пълна. Retrace сървърът може да генерира по-качествен анализ. Против: копието на паметта, което качвате, съдържа всички данни на провалилата се програма, включително, ако има, Ваши поверителни данни." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Качва копие от паметта на сървър, който генерира обратно проследяващ анализ " ++"и го изпраща обратно. За: няма нужда от сваляне на debuginfo пакети. Базата " ++"данни на Retrace сървърите е по-пълна. Retrace сървърът може да генерира по-" ++"качествен анализ. Против: копието на паметта, което качвате, съдържа всички " ++"данни на провалилата се програма, включително, ако има, Ваши поверителни " ++"данни." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1416,10 +1544,13 @@ msgstr "Да ползвам ли или не незащитена връзка" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Напишете \"insecure\" за да разрешите незащитена връзка <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Напишете \"insecure\" за да разрешите незащитена връзка <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1433,7 +1564,9 @@ msgstr "Запазва съответните линии от файла ~/.xses + 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." +@@ -1466,7 +1599,8 @@ msgstr "Сертификатът е подписан от недоверен и + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "Името на обект '%s' на сертификата не съвпада с името на целевия хост '%s'." ++msgstr "" ++"Името на обект '%s' на сертификата не съвпада с името на целевия хост '%s'." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1591,7 +1725,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nТърси за обновления в bodhi сървър" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Търси за обновления в bodhi сървър" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1609,8 +1746,8 @@ msgstr "Версията на локалния пакет е по-нова от + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1832,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1918,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1792,13 +1930,17 @@ msgstr "Анализира VM средата" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Инсталира debuginfo пакети за ядрото, генерира журнал за ядрото и oops съобщение" ++msgstr "" ++"Инсталира debuginfo пакети за ядрото, генерира журнал за ядрото и oops " ++"съобщение" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Нуждае се от инсталиране на debuginfo пакети, което може да отнеме значително време и ще заеме дисково пространство." ++msgstr "" ++"Нуждае се от инсталиране на debuginfo пакети, което може да отнеме " ++"значително време и ще заеме дисково пространство." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1812,7 +1954,9 @@ msgstr "Запазва конфигурацията от GConf директор + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Стартира gconftool-2 --recursive-list /apps/executable и го записва като 'gconf_subtree' елемент." ++msgstr "" ++"Стартира gconftool-2 --recursive-list /apps/executable и го записва като " ++"'gconf_subtree' елемент." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1826,7 +1970,9 @@ 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 "Проверява за наличието на файловете vimrc и gvimrc в /etc и ги записва като system_vimrc и system_gvimrc, респективно." ++msgstr "" ++"Проверява за наличието на файловете vimrc и gvimrc в /etc и ги записва като " ++"system_vimrc и system_gvimrc, респективно." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1838,9 +1984,11 @@ msgstr "Запазва .vimrc и .gvimrc от домашната Ви дирек + + #: ../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 "Проверява за наличието на .vimrc и .gvimrc във Вашата домашна директория и ги записва като user_vimrc и user_gvimrc, респективно." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Проверява за наличието на .vimrc и .gvimrc във Вашата домашна директория и " ++"ги записва като user_vimrc и user_gvimrc, респективно." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/bn.po b/po/bn.po +index 161b1b1..9b72c11 100644 +--- a/po/bn.po ++++ b/po/bn.po +@@ -11,17 +11,19 @@ + # Robin Mehdee , 2012 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Bengali (http://www.transifex.com/projects/p/fedora-abrt/language/bn/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Bengali (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/bn/)\n" + "Language: bn\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -94,7 +96,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -106,7 +110,9 @@ msgstr "সতর্কবার্তা" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "ABRT দ্বারা সনাক্ত করা সমস্যা সম্বন্ধে ব্যবহারকারীদেরকে সূচিত করার উদ্দেশ্যে, বিজ্ঞপ্তিস্থলে ব্যবহারযোগ্য অ্যাপ্লেট" ++msgstr "" ++"ABRT দ্বারা সনাক্ত করা সমস্যা সম্বন্ধে ব্যবহারকারীদেরকে সূচিত করার " ++"উদ্দেশ্যে, বিজ্ঞপ্তিস্থলে ব্যবহারযোগ্য অ্যাপ্লেট" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -133,6 +139,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -147,6 +154,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "রিপোর্ট" +@@ -196,7 +204,11 @@ msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত অ্যাপ্লেট\n" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"ABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত " ++"অ্যাপ্লেট\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -217,10 +229,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -234,15 +245,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -307,7 +318,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nপ্যাকেজের ডাটাবেস সন্ধান করুন ও প্যাকেজ ও সামগ্রীর নাম সংরক্ষণ করুন" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"প্যাকেজের ডাটাবেস সন্ধান করুন ও প্যাকেজ ও সামগ্রীর নাম সংরক্ষণ করুন" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -410,10 +424,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -465,19 +479,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -609,11 +676,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nAnalyzes C/C++ backtrace, generates duplication hash, backtrace rating,\nand identifies crash function in problem directory DIR" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" ++"and identifies crash function in problem directory DIR" + ++#. + #. * 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" +@@ -628,7 +701,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nসমস্যাযুক্ত ডিরেক্টরি DIR-র মধ্যে coredump-র UUID গণনা করে সংরক্ষণ করা হয়" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"সমস্যাযুক্ত ডিরেক্টরি DIR-র মধ্যে coredump-র UUID গণনা করে সংরক্ষণ করা হয়" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -673,7 +749,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nPython ক্র্যাশ ডাম্পের UUID ও DUPHASH গণনা করে সংরক্ষণ করা হয়" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Python ক্র্যাশ ডাম্পের UUID ও DUPHASH গণনা করে সংরক্ষণ করা হয়" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -688,8 +767,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -712,7 +790,11 @@ msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nসমস্যায়ুক্ত ডিরেক্টরি DIR-র মধ্যে coredump বিশ্লেষণ করে backtrace প্রস্তুত করে সংরক্ষণ করা হয়" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"সমস্যায়ুক্ত ডিরেক্টরি DIR-র মধ্যে coredump বিশ্লেষণ করে backtrace প্রস্তুত " ++"করে সংরক্ষণ করা হয়" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -724,6 +806,7 @@ 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" +@@ -762,7 +845,8 @@ msgstr "ব্যবহারকারী দ্বারা উল্লিখ + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -772,7 +856,8 @@ msgid "" + " -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" ++" --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" +@@ -786,7 +871,9 @@ msgstr "{0} খুলতে ব্যর্থ: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Coredump দ্বারা {0} debuginfo ফাইলগুলি অনুধাবন করা হয়, এর মধ্যে {1}-টি ইনস্টল করা হয়নি" ++msgstr "" ++"Coredump দ্বারা {0} debuginfo ফাইলগুলি অনুধাবন করা হয়, এর মধ্যে {1}-টি " ++"ইনস্টল করা হয়নি" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -821,9 +908,15 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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" ++"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\nDeletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\nFILEs are preserved (never deleted)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -1015,7 +1108,9 @@ msgstr "" + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." +-msgstr "কার্নেলে সমস্যা দেখা দিয়েছে, কিন্তু আপনার কার্নেল চিহ্নযুক্ত (flags:%s) হয়েছে। কার্নেল রক্ষণাবেক্ষণকারী চিহ্নযুক্ত রিপোর্টের সমাধান করতে অক্ষম।" ++msgstr "" ++"কার্নেলে সমস্যা দেখা দিয়েছে, কিন্তু আপনার কার্নেল চিহ্নযুক্ত (flags:%s) " ++"হয়েছে। কার্নেল রক্ষণাবেক্ষণকারী চিহ্নযুক্ত রিপোর্টের সমাধান করতে অক্ষম।" + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1035,13 +1130,16 @@ msgstr "প্রমিত আউটপুটের মধ্যে print দ্ + + #. 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + + #: ../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 উল্লেখ করা হয়" ++msgstr "" ++"-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা " ++"হয়" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1091,10 +1189,13 @@ msgstr "" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "বিপর্যয়ের পরিমাণ অত্যন্ত বড় হওয়ার ফলে Retrace সার্ভার ব্যবহার করা সম্ভব নয়। স্থানীয় অবস্থান থেকে retrace করার প্রচেষ্টা করুন।" ++msgstr "" ++"বিপর্যয়ের পরিমাণ অত্যন্ত বড় হওয়ার ফলে Retrace সার্ভার ব্যবহার করা সম্ভব " ++"নয়। স্থানীয় অবস্থান থেকে 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 +@@ -1117,10 +1218,10 @@ msgstr "%d দৈর্ঘ্যের HTTP হেডার পাঠাতে + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "সার্ভার থেকে অপ্রত্যাশিত HTTP উত্তর পাওয়া গিয়েছে: %d\n" + "%s" +-msgstr "সার্ভার থেকে অপ্রত্যাশিত HTTP উত্তর পাওয়া গিয়েছে: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1144,7 +1245,8 @@ msgstr "সার্ভারের বৈশিষ্ট্য অনুসন + + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." +-msgstr "সার্ভার সম্পূর্ণরূপে ব্যবহৃত হচ্ছে। পরে কোনো সময় পুনরায় প্রয়াস করুন।" ++msgstr "" ++"সার্ভার সম্পূর্ণরূপে ব্যবহৃত হচ্ছে। পরে কোনো সময় পুনরায় প্রয়াস করুন।" + + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." +@@ -1161,7 +1263,9 @@ msgstr "" + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "বিপর্যয়ের মাপ %lld বাইট, কিন্তু রি-ট্রেস সার্ভার দ্বারা শুধুমাত্র %lld বাইট অথবা এর থেকে কম মাপের বিপর্যয়ের তথ্য গ্রহণ করা হয়।" ++msgstr "" ++"বিপর্যয়ের মাপ %lld বাইট, কিন্তু রি-ট্রেস সার্ভার দ্বারা শুধুমাত্র %lld বাইট " ++"অথবা এর থেকে কম মাপের বিপর্যয়ের তথ্য গ্রহণ করা হয়।" + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1189,7 +1293,9 @@ msgstr "আপলোড করার জন্য আর্কাইভ প্ + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "আর্কাইভের মাপ %lld বাইট, কিন্তু রি-ট্রেস সার্ভার দ্বারা শুধুমাত্র %lld বাইট অথবা এর থেকে কম মাপের আর্কাইভ গ্রহণ করা হয়।" ++msgstr "" ++"আর্কাইভের মাপ %lld বাইট, কিন্তু রি-ট্রেস সার্ভার দ্বারা শুধুমাত্র %lld বাইট " ++"অথবা এর থেকে কম মাপের আর্কাইভ গ্রহণ করা হয়।" + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1232,13 +1338,17 @@ msgstr "সাফল্যের সাথে আপলোড করা হয + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "সমস্যাযুক্ত ডিরেক্টরিটি বর্তমানে ক্ষতিগ্রস্ত ও Retrace সার্ভার দ্বারা প্রক্রিয়াভুক্ত করা সম্ভব নয়।" ++msgstr "" ++"সমস্যাযুক্ত ডিরেক্টরিটি বর্তমানে ক্ষতিগ্রস্ত ও Retrace সার্ভার দ্বারা " ++"প্রক্রিয়াভুক্ত করা সম্ভব নয়।" + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "আর্কাইভের মধ্যে ত্রুটিপূর্ণ ফাইল (যেমন সিম-লিংক উপস্থিত রয়েছে) এবং তা প্রক্রিয়াভুক্ত করা সম্ভব নয়।" ++msgstr "" ++"আর্কাইভের মধ্যে ত্রুটিপূর্ণ ফাইল (যেমন সিম-লিংক উপস্থিত রয়েছে) এবং তা " ++"প্রক্রিয়াভুক্ত করা সম্ভব নয়।" + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1254,10 +1364,10 @@ msgstr "Retrace-র কাজ আরম্ভ করা হয়েছে" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "কাজের Id: %s\nকাজের পাসওয়ার্ড: %s\n" ++msgstr "কাজের Id: %s\n" ++"কাজের পাসওয়ার্ড: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1265,10 +1375,10 @@ msgstr "সার্ভার থেকে প্রাপ্ত উত্তর + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "কাজের অবস্থা: %s\n" + "%s\n" +-msgstr "কাজের অবস্থা: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1281,7 +1391,9 @@ msgstr "%d দৈর্ঘ্যের HTTP হেডার প্রাপ্ + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Retrace করতে ব্যর্থ। পরে পুনরায় প্রচেষ্টা করুন ও সমস্যা দেখা দিলে এই সম্পর্কে সূচিত করুন।" ++msgstr "" ++"Retrace করতে ব্যর্থ। পরে পুনরায় প্রচেষ্টা করুন ও সমস্যা দেখা দিলে এই " ++"সম্পর্কে সূচিত করুন।" + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1289,7 +1401,8 @@ msgstr "syslog-এ লগ করা হবে" + + #: ../src/plugins/abrt-retrace-client.c:1209 + msgid "allow insecure connection to retrace server" +-msgstr "retrace সার্ভারের জন্য অসুরক্ষিত সংযোগ ব্যবহারের অনুমতি প্রদান করা হবে" ++msgstr "" ++"retrace সার্ভারের জন্য অসুরক্ষিত সংযোগ ব্যবহারের অনুমতি প্রদান করা হবে" + + #: ../src/plugins/abrt-retrace-client.c:1211 + msgid "" +@@ -1377,14 +1490,19 @@ msgstr "স্থানীয় GNU ডিবাগার" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "debuginfo প্যাকেজ ডাউনলোড করুন ও GDB সহযোগে স্থানীয় অবস্থানে ব্যাক-ট্রেস প্রস্তুত করুন" ++msgstr "" ++"debuginfo প্যাকেজ ডাউনলোড করুন ও GDB সহযোগে স্থানীয় অবস্থানে ব্যাক-ট্রেস " ++"প্রস্তুত করুন" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "এই ক্ষেত্রে debuginfo প্যাকেজ ডাউনলোড করা আবশ্যক। এটি করতে অনেক সময় ব্যয় হবে ও ডিস্কের অনেক স্থান ব্যবহার করা হবে। কিন্তু, RetraceServer-র মত এটি দূরবর্তী মেশিনে coredump পাঠায় না।" ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"এই ক্ষেত্রে debuginfo প্যাকেজ ডাউনলোড করা আবশ্যক। এটি করতে অনেক সময় ব্যয় হবে " ++"ও ডিস্কের অনেক স্থান ব্যবহার করা হবে। কিন্তু, RetraceServer-র মত এটি " ++"দূরবর্তী মেশিনে coredump পাঠায় না।" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1392,12 +1510,17 @@ msgstr "বিশ্লেষণের জন্য retrace সার্ভা + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "সার্ভারের মধ্যে coredump আপলোড করে এবং সার্ভারে ব্যাক-ট্রেস প্রস্তুত করে ফেরৎ দেওয়া হয়।সুবিধা: debuginfo ডাউনলোড করার প্রয়োজন নেই। রি-ট্রেস সার্ভারের ডাটাবেস অনেক বেশি পরিপূর্ণ ও সার্ভার থেকে উন্নত ব্যাক-ট্রেস প্রাপ্ত হবে।অসুবিধা: আপলোড করা coredump-র মধ্যে গোপনীয় তথ্য সহ বিপর্যস্ত প্রোগ্রামের সকল তথ্য অন্তর্ভুক্ত করা হয়।" ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"সার্ভারের মধ্যে coredump আপলোড করে এবং সার্ভারে ব্যাক-ট্রেস প্রস্তুত করে " ++"ফেরৎ দেওয়া হয়।সুবিধা: debuginfo ডাউনলোড করার প্রয়োজন নেই। রি-ট্রেস সার্ভারের " ++"ডাটাবেস অনেক বেশি পরিপূর্ণ ও সার্ভার থেকে উন্নত ব্যাক-ট্রেস প্রাপ্ত " ++"হবে।অসুবিধা: আপলোড করা coredump-র মধ্যে গোপনীয় তথ্য সহ বিপর্যস্ত প্রোগ্রামের " ++"সকল তথ্য অন্তর্ভুক্ত করা হয়।" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1422,10 +1545,13 @@ msgstr "অসুরক্ষিত সংযোগ ব্যবহার কর + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "অসুরক্ষিত সংযোগ ব্যবহারের অনুমোদন প্রদান করার জন্য \"insecure\" লিখুন <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"অসুরক্ষিত সংযোগ ব্যবহারের অনুমোদন প্রদান করার জন্য \"insecure\" লিখুন <a " ++"href=\"https://fedorahosted.org/abrt/wiki/" ++"AbrtRetraceServerInsecureConnection\" >(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1439,7 +1565,10 @@ msgstr "~/.xsession-errors ফাইলের প্রযোজ্য পংক + 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." +@@ -1472,7 +1601,8 @@ msgstr "অবিশ্বস্ত জারীকারী দ্বারা + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "সার্টিফিকেটের উদ্দিষ্টের নাম '%s'-র সাথে উদ্দিষ্ট হোস্টের নাম '%s' মিলছে না।" ++msgstr "" ++"সার্টিফিকেটের উদ্দিষ্টের নাম '%s'-র সাথে উদ্দিষ্ট হোস্টের নাম '%s' মিলছে না।" + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1615,8 +1745,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1701,7 +1831,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1786,8 +1917,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1798,13 +1929,17 @@ msgstr "VM core বিশ্লেষণ করুন" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Kernel debuginfo প্যাকেজগুলি ইনস্টল করে, kernel লগ ও oops বার্তা প্রস্তুত করা হয়" ++msgstr "" ++"Kernel debuginfo প্যাকেজগুলি ইনস্টল করে, kernel লগ ও oops বার্তা প্রস্তুত " ++"করা হয়" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Kernel debuginfo প্যাকেজগুলি ইনস্টল করা প্রয়োজন এবং এর জন্য বেশ কিছু পরিমাণ সময় ব্যয় হবে ও ডিস্কের অনেক স্থানও দখল করা হবে।" ++msgstr "" ++"Kernel debuginfo প্যাকেজগুলি ইনস্টল করা প্রয়োজন এবং এর জন্য বেশ কিছু পরিমাণ " ++"সময় ব্যয় হবে ও ডিস্কের অনেক স্থানও দখল করা হবে।" + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1818,7 +1953,9 @@ msgstr "অ্যাপ্লিকেশনের GConf ডিরেক্ট + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "gconftool-2 --recursive-list /apps/executable সঞ্চালনা করে 'gconf_subtree' এলিমেন্ট রূপে এটি সংরক্ষণ করা হয়।" ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable সঞ্চালনা করে 'gconf_subtree' " ++"এলিমেন্ট রূপে এটি সংরক্ষণ করা হয়।" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1832,7 +1969,9 @@ 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" +@@ -1844,9 +1983,12 @@ 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 "ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরির মধ্যে .vimrc ও .gvimrc ফাইলগুলি উপস্থিত রয়েছে কিনা তা যাচাই করা হয় ও যথাক্রমে user_vimrc ও user_gvimrc নামে তা সংরক্ষণ করা হয়।" ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরির মধ্যে .vimrc ও .gvimrc ফাইলগুলি উপস্থিত " ++"রয়েছে কিনা তা যাচাই করা হয় ও যথাক্রমে user_vimrc ও user_gvimrc নামে তা " ++"সংরক্ষণ করা হয়।" + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/bn_IN.po b/po/bn_IN.po +index b2919f3..08889ff 100644 +--- a/po/bn_IN.po ++++ b/po/bn_IN.po +@@ -8,24 +8,29 @@ + # Jiří Moskovčák , 2011 + # runa , 2013 + # Saibal Ray, 2014 ++# Saibal Ray , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-16 04:54+0000\n" +-"Last-Translator: Saibal Ray\n" +-"Language-Team: Bengali (India) (http://www.transifex.com/projects/p/fedora-abrt/language/bn_IN/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: bn_IN\n" ++"PO-Revision-Date: 2015-01-08 12:39-0500\n" ++"Last-Translator: Saibal Ray \n" ++"Language-Team: Bengali (India) (http://www.transifex.com/projects/p/fedora-" ++"abrt/language/bn_IN/)\n" ++"Language: bn-IN\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" + msgstr "স্বয়ংক্রিয় বাগ রিপোর্টিং ব্যবস্থা" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "ABRT notification applet" + msgstr "ABRT বিজ্ঞেপ্তির অ্যাপ্লেট" +@@ -35,57 +40,72 @@ 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" +-msgstr "যে রিপোর্টটি পাঠানো হবে তাতে নিরাপত্তার দিক থেকে সংবেদনশীল কোনো ডেটা নেই। তাই পরের বার অাপনাকে অার কোনো ঝামেলা সামলাতে হবে না এবং কোনো কিছু করার দরকারও হবে না। \n" ++msgstr "" ++"যে রিপোর্টটি পাঠানো হবে তাতে নিরাপত্তার দিক থেকে সংবেদনশীল কোনো ডেটা নেই। " ++"তাই পরের বার অাপনাকে অার কোনো ঝামেলা সামলাতে হবে না এবং কোনো কিছু করার " ++"দরকারও হবে না। \n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +-msgstr "অাপনি কি স্বয়ংক্রিয় ভাবে জমা দেওয়া ক্র্যাশ রিপোর্ট সক্রিয় করতে চান?" ++msgstr "" ++"অাপনি কি স্বয়ংক্রিয় ভাবে জমা দেওয়া ক্র্যাশ রিপোর্ট সক্রিয় করতে চান?" + + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "অাপনি কি স্বয়ংক্রিয় ভাবে জমা দেওয়া নামবিহীন ক্র্যাশ রিপোর্ট সক্রিয় করতে চান?" ++msgstr "" ++"অাপনি কি স্বয়ংক্রিয় ভাবে জমা দেওয়া নামবিহীন ক্র্যাশ রিপোর্ট সক্রিয় করতে " ++"চান?" + ++# translation auto-copied from project abrt, version master, document abrt + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "DBus-র মাধ্যমে NetworkManager-র সাথে সংযোগ স্থাপন করা সম্ভব নয়: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager-র মাধ্যমে নেটওয়ার্ক নির্ধারণ করা সম্ভব নয়: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:342 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'-র মালিকানা গ্রহণ করা সম্ভব নয়" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:350 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "'%s' লেখার জন্য ডিরেক্টরি খোলা যায় না" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "একটি সমস্যা সনাক্ত হয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "%s প্যাকেজের মধ্যে একটি বিপর্যয় সনাক্ত করা হয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s এবং ডায়গনস্টিক ডেটা জমা দেওয়া হয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:589 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "'%s' সঞ্চালন করতে ব্যর্থ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" +@@ -93,109 +113,147 @@ msgstr "সূচনাবার্তা বন্ধ করতে ব্যর + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "অাপনি একটি নির্দিষ্ট সমস্যার বিজ্ঞপ্তি নীরব করতে চলেছেন। অাপনি অার এই সমস্যার জন্য বিজ্ঞপ্তি দেখতে পাবেন না, তবে, ABRT এটি সনাক্ত করবে এবং অাপনি তা ABRT GUI থেকে রিপোর্ট করতে পারবেন।\n\nঅাপনি কি জারি রাখতে চান?" ++msgstr "" ++"অাপনি একটি নির্দিষ্ট সমস্যার বিজ্ঞপ্তি নীরব করতে চলেছেন। অাপনি অার এই " ++"সমস্যার জন্য বিজ্ঞপ্তি দেখতে পাবেন না, তবে, ABRT এটি সনাক্ত করবে এবং অাপনি " ++"তা ABRT GUI থেকে রিপোর্ট করতে পারবেন।\n" ++"\n" ++"অাপনি কি জারি রাখতে চান?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "সতর্কবার্তা" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "ABRT দ্বারা সনাক্ত করা সমস্যা সম্বন্ধে ব্যবহারকারীদেরকে সূচিত করার উদ্দেশ্যে, বিজ্ঞপ্তিস্থলে ব্যবহারযোগ্য অ্যাপ্লেট" ++msgstr "" ++"ABRT দ্বারা সনাক্ত করা সমস্যা সম্বন্ধে ব্যবহারকারীদেরকে সূচিত করার " ++"উদ্দেশ্যে, বিজ্ঞপ্তিস্থলে ব্যবহারযোগ্য অ্যাপ্লেট" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "রুণা ভট্টাচার্য্য" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "প্রস্থান করুন (_Q)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "আড়াল করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:862 + msgid "_About" + msgstr "সম্বন্ধে (_A)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "সমস্যা সনাক্ত হয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "সবসময়ের জন্য উপেক্ষা করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "খুলুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "সমস্যার কথা ইতিমধ্যেই জানানো হয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "একটি জ্ঞাত সমস্যা দেখা দিয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "রিপোর্ট" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "একটি সমস্যা দেখা দিয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "একটি সমস্যার কথা জানানো হয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "একটি নতুন সমস্যা দেখা দিয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "সূচনাবার্তা প্রদর্শন করতে ব্যর্থ: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #. TODO: Terminate child's process? + #: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio চ্যানেল থেকে পড়তে ব্যর্থ: '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "gio চ্যানেলের জন্য এনকোডিং নির্ধারণ করতে ব্যর্থ: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "gio চ্যানেলের জন্য nonblocking মোড সক্রিয় করতে ব্যর্থ: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "সেশন পরিচালকর সংযোগ খুলতে ব্যর্থ: '%s', পরবর্তী লগ-ইনে বিজ্ঞপ্তি অাবার উপস্থিত হতে পারে" ++msgstr "" ++"সেশন পরিচালকর সংযোগ খুলতে ব্যর্থ: '%s', পরবর্তী লগ-ইনে বিজ্ঞপ্তি অাবার " ++"উপস্থিত হতে পারে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত অ্যাপ্লেট\n" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"ABRT দ্বারা নতুন সমস্যা সনাক্ত করা হলে ব্যবহারকারীদের সূচিত করতে ব্যবহৃত " ++"অ্যাপ্লেট\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -216,11 +274,14 @@ msgstr "নীরব সংক্ষিপ্ত রিপোর্টিং" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "স্ট্যাক ট্রেস প্রস্তুত করতে কোর-ডাম্প ফাইল প্রয়োজনীয় যা সময় এবং স্থান সাপেক্ষ এক কাজ। ABRT একটি পরিষেবা প্রদান করে, যা কোর-ডাম্প থেকে স্ট্যাক ট্রেস প্রস্তুত করে কিন্তু অাপনাকে পরিষেবায় কোর-ডাম্প অাপলোড করতে হবে। এই বিকল্প নিষ্ক্রিয় অবস্থায়, ABRT জিঞ্জাসা না করেই কোর-ডাম্প অাপলোড করবে।" ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"স্ট্যাক ট্রেস প্রস্তুত করতে কোর-ডাম্প ফাইল প্রয়োজনীয় যা সময় এবং স্থান " ++"সাপেক্ষ এক কাজ। ABRT একটি পরিষেবা প্রদান করে, যা কোর-ডাম্প থেকে স্ট্যাক " ++"ট্রেস প্রস্তুত করে কিন্তু অাপনাকে পরিষেবায় কোর-ডাম্প অাপলোড করতে হবে। এই " ++"বিকল্প নিষ্ক্রিয় অবস্থায়, ABRT জিঞ্জাসা না করেই কোর-ডাম্প অাপলোড করবে।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -228,28 +289,41 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT সমস্যা ডেটা ডিরেক্টরিগুলিতে রাখে। যখনই ABRT-এর লিখনযোগ্য ডিরেক্টরির প্রয়োজন হয় তখনই, ডিরেক্টরি সিস্টেম অবস্থান থেকে অাপনার হোম ডিরেক্টরিতে সরানো হয়। এই বিকল্প নিষ্ক্রিয় থাকা অবস্থায়, ABRT জিঞ্জাসা না করেই সরাসরি সমস্যা ডিরেক্টরি সরাবে।" ++msgstr "" ++"ABRT সমস্যা ডেটা ডিরেক্টরিগুলিতে রাখে। যখনই ABRT-এর লিখনযোগ্য ডিরেক্টরির " ++"প্রয়োজন হয় তখনই, ডিরেক্টরি সিস্টেম অবস্থান থেকে অাপনার হোম ডিরেক্টরিতে সরানো " ++"হয়। এই বিকল্প নিষ্ক্রিয় থাকা অবস্থায়, ABRT জিঞ্জাসা না করেই সরাসরি সমস্যা " ++"ডিরেক্টরি সরাবে।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport হল একটি সমস্যার সংক্ষিপ্ত এবং সম্পূর্ণ বেনামী বর্ণনা। ABRT দ্রুত সার্বিক সদৃশ সনাক্তকরণের জন্য uReports ব্যবহার করে। ডিফল্ট কনফিগারেশনে, রিপোর্টিং প্রক্রিয়ার শুরুতে uReport পাঠানো হয়। এই বিকল্প সক্রিয় অবস্থায়, সমস্যার সনাক্ত হওয়ার অবিলম্ব পরেই uReports স্বয়ংক্রিয়ভাবে পাঠানো হয়।" ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport হল একটি সমস্যার সংক্ষিপ্ত এবং সম্পূর্ণ বেনামী বর্ণনা। ABRT দ্রুত " ++"সার্বিক সদৃশ সনাক্তকরণের জন্য uReports ব্যবহার করে। ডিফল্ট কনফিগারেশনে, " ++"রিপোর্টিং প্রক্রিয়ার শুরুতে uReport পাঠানো হয়। এই বিকল্প সক্রিয় অবস্থায়, " ++"সমস্যার সনাক্ত হওয়ার অবিলম্ব পরেই uReports স্বয়ংক্রিয়ভাবে পাঠানো হয়।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "এই বিকল্প সক্রিয় অবস্থায়, সমস্যা বিজ্ঞপ্তি বাবলে রিপোর্ট বোতামে ক্লিক করে শুরু করা রিপোর্টিং প্রক্রিয়া uReport পাঠানোর পরে বাধাপ্রাপ্ত হবে। অাপনি ডিফল্ট সমস্যা ব্রাউজার ব্যবহার করে সর্বদাই সম্পূর্ণ রিপোর্ট বানাতে পারবেন।" ++msgstr "" ++"এই বিকল্প সক্রিয় অবস্থায়, সমস্যা বিজ্ঞপ্তি বাবলে রিপোর্ট বোতামে ক্লিক করে " ++"শুরু করা রিপোর্টিং প্রক্রিয়া uReport পাঠানোর পরে বাধাপ্রাপ্ত হবে। অাপনি " ++"ডিফল্ট সমস্যা ব্রাউজার ব্যবহার করে সর্বদাই সম্পূর্ণ রিপোর্ট বানাতে পারবেন।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr " এই বিকল্প সক্রিয় অবস্থায়, ABRT কখনও রিপোর্ট করা সমস্যাগুলির বিজ্ঞপ্তিগুলি দেখাবে না। সংক্ষিপ্ত রিপোর্টিং সক্রিয় থাকলে তবেই কার্যকর হয়।" ++msgstr "" ++" এই বিকল্প সক্রিয় অবস্থায়, ABRT কখনও রিপোর্ট করা সমস্যাগুলির বিজ্ঞপ্তিগুলি " ++"দেখাবে না। সংক্ষিপ্ত রিপোর্টিং সক্রিয় থাকলে তবেই কার্যকর হয়।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -259,7 +333,9 @@ msgstr "কোর-ডাম্প অাপলোড করার অাগে + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "এই বিকল্প সক্রিয় অবস্থায়, সম্ভাব্য ভাবে সংবেদনশীল ডেটা সনাক্ত হলে, ABRT সর্বদা সীমাবদ্ধ অ্যাক্সেস সমেত বাগ টিকিট তৈরি করে।" ++msgstr "" ++"এই বিকল্প সক্রিয় অবস্থায়, সম্ভাব্য ভাবে সংবেদনশীল ডেটা সনাক্ত হলে, ABRT " ++"সর্বদা সীমাবদ্ধ অ্যাক্সেস সমেত বাগ টিকিট তৈরি করে।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -274,40 +350,53 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "কম্পিউটার শাট ডাউন বা ব্যবহারকারী লগ অাউটের সময়ে, অসম্পূর্ণ সমস্যা সনাক্ত করা হয়েছে। মূল্যবান সমস্যার রিপোর্ট প্রদান করতে, ABRT অাপনাকে এই সমস্যাগুলি জমা দেওয়ার অনুমতি দেবে না।" ++msgstr "" ++"কম্পিউটার শাট ডাউন বা ব্যবহারকারী লগ অাউটের সময়ে, অসম্পূর্ণ সমস্যা সনাক্ত " ++"করা হয়েছে। মূল্যবান সমস্যার রিপোর্ট প্রদান করতে, ABRT অাপনাকে এই সমস্যাগুলি " ++"জমা দেওয়ার অনুমতি দেবে না।" + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "বন্ধ করুন (_C)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "ডিফল্ট (_D)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "কনফিগারেশন রিপোর্টিং সংক্রান্ত সমস্যা" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "সিস্টেম কনফিগারেশন ABRT সম্বন্ধে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "সম্বন্ধে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "প্রস্থান করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:382 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nপ্যাকেজের ডাটাবেস সন্ধান করুন ও প্যাকেজ ও সামগ্রীর নাম সংরক্ষণ করুন" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"প্যাকেজের ডাটাবেস সন্ধান করুন ও প্যাকেজ ও সামগ্রীর নাম সংরক্ষণ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 +@@ -319,43 +408,52 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n\nপ্যাকেজের ডাটা + msgid "Problem directory" + msgstr "সমস্যাযুক্ত ডিরেক্টরি" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:395 + msgid "Configuration file" + msgstr "কনফিগারেশন ফাইল" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:797 + msgid "Use NUM as client uid" + msgstr "ক্লায়েন্ট id রূপে NUM ব্যবহার করা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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-এ লগ করা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "লগের মধ্যে প্রোগ্রামের নাম যোগ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:123 + msgid "Unknown error" + msgstr "অজানা ত্রুটি" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:188 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' বৈধ সমস্যাযুক্ত ডিরেক্টরি নয়" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:223 + #, c-format + msgid "'%s' element can't be modified" + msgstr "'%s' উপাদান সংশোধন করা যায় না" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 + #: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 +@@ -363,83 +461,110 @@ msgstr "'%s' উপাদান সংশোধন করা যায় না" + msgid "Not Authorized" + msgstr "অনুমোদিত নয়" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:256 + msgid "Can't access the problem for modification" + msgstr "সংশোধনের জন্য সমস্যা অ্যাক্সেস করা যায় না" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Chowning ডিরেক্টরি ব্যর্থ হয়েছে। অারো বিস্তারিত জানতে, সিস্টেম লগ দেখুন।" ++msgstr "" ++"Chowning ডিরেক্টরি ব্যর্থ হয়েছে। অারো বিস্তারিত জানতে, সিস্টেম লগ দেখুন।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:559 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' কোনো বৈধ উপাদান নাম নয়" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:580 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' এর মাপ পাওয়া যায় না" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:595 + msgid "No problem space left" + msgstr "কোনো সমস্যা স্পেস পড়ে নেই" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:627 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "'%s' উপাদান মোছা যায় না, '%s' সমস্যা ডিরেক্টরি থেকে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:763 ../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 "'%s' নামটি হারিয়ে গেছে, অনুগ্রহ করে পরীক্ষা করুন এই নাম ধারণকারী অন্য কোনো পরিসেবা চলছে কি না।\n" ++msgstr "" ++"'%s' নামটি হারিয়ে গেছে, অনুগ্রহ করে পরীক্ষা করুন এই নাম ধারণকারী অন্য কোনো " ++"পরিসেবা চলছে কি না।\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM সেকেন্ড নিষ্ক্রিয় থাকলে প্রস্থান করা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "এই প্রোগ্রামটি শুধুমাত্র root পরিচয়ে সঞ্চালন করা আবশ্যক" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 অাপনাকে এই সমস্যার বিষয়টি জমা দিতে দেবে না। অাপনার হাতে সময় থাকলে এবং এই সমস্যাটির সমাধানে বিকাশকারীদের সাহায্য করতে চাইলে, অনুগ্রহ করে সরাসরি তাদের সংগে যোগাযোগ করুন।" ++"detected while computer is shutting down or user is logging out. In order to " ++"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 অাপনাকে এই সমস্যার বিষয়টি জমা দিতে " ++"দেবে না। অাপনার হাতে সময় থাকলে এবং এই সমস্যাটির সমাধানে বিকাশকারীদের সাহায্য " ++"করতে চাইলে, অনুগ্রহ করে সরাসরি তাদের সংগে যোগাযোগ করুন।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" + msgstr "ডেমন তৈরি করা হবে না" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:498 + msgid "Log to syslog even with -d" + msgstr "-d সহযোগেও syslog-এ লগ করা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:388 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:396 + msgid "Run EVENT on DIR" + msgstr "DIR-র মধ্যে EVENT সঞ্চালন করা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:397 + msgid "Communicate directly to the user" + msgstr "ব্যবহারকারীর সাথে সরাসরি যোগাযোগ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "কোনো সম্পূর্ণ ওয়ার্কার এবং সম্পূর্ণ বাফার নেই। '%s' সংরক্ষণাগার বাদ দেওয়া হচ্ছে" ++msgstr "" ++"কোনো সম্পূর্ণ ওয়ার্কার এবং সম্পূর্ণ বাফার নেই। '%s' সংরক্ষণাগার বাদ দেওয়া " ++"হচ্ছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +@@ -450,33 +575,103 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nUPLOAD_DIRECTORY দেখে এবং abrt.conf এ নির্দিষ্ট DumpLocation এ\nঅাগত সংরক্ষণাগার অান-প্যাক করে\n\nUPLOAD_DIRECTORY দেওয়া না থাকলে, abrt.conf থেকে\nWatchCrashdumpArchiveDir বিকল্পের একটি মান ব্যবহার করা হয়" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"UPLOAD_DIRECTORY দেখে এবং abrt.conf এ নির্দিষ্ট DumpLocation এ\n" ++"অাগত সংরক্ষণাগার অান-প্যাক করে\n" ++"\n" ++"UPLOAD_DIRECTORY দেওয়া না থাকলে, abrt.conf থেকে\n" ++"WatchCrashdumpArchiveDir বিকল্পের একটি মান ব্যবহার করা হয়" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "Daemize" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "একসাথে উদ্ভূত ওয়ার্কারের সংখ্যা। ডিফল্ট হল" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "সর্বাধিক ক্যাশে মাপ MiB এ। ডিফল্ট হল" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "প্রমাণীকরণ বন্ধ করে" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Red Hat Support ব্যবহারকারীর নাম" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "Red Hat Support পাসওয়ার্ড, দেওয়া না থাকলে, তা দিতে বলা হবে" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "uReport SSL শংসাপত্রের পাথ বা শংসাপত্রের ধরন" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "অাপনাকে --password -এর জন্য --username ও নির্দিষ্ট করতে হবে" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++"অাপনি --username বা --certificate -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++"অাপনি --username বা --anonymous -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++"অাপনি --anonymous বা --certificate -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" ++ ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "অার্গুমেন্টের সংখ্যা অবৈধ" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "অজানা বিকল্প মান: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "পাসওয়ার্ড:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "পাসওয়ার্ড না দিয়ে এগিয়ে যেতে পারবেন না\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "HTTP প্রমাণীকরণ স্বয়ংক্রিয় ভাবে জানানো" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "SSL ক্লায়েন্ট প্রমাণীকরণ স্বয়ংক্রিয় ভাবে জানানো" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "বেনামে স্বয়ংক্রিয় ভাবে জানানো" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -487,7 +682,14 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "ব্যবহার: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n UPLOAD_DIR - Directory where uploaded archives are stored\n FILENAME - Uploaded archive file name\n" ++msgstr "" ++"ব্যবহার: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -554,80 +756,103 @@ msgstr "'{0}' অান-প্যাক করা সম্ভব নয়" + msgid "'{0}' processed successfully" + msgstr "'{0}' সফল ভাবে প্রক্রিয়া করা হয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "ব্যাক-ট্রেস সৃষ্টি করা হচ্ছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:42 + #, c-format + msgid "Can't connect to system DBus: %s" + msgstr "সিস্টেম DBus-র সাথে সংযোগ স্থাপন করা সম্ভব নয়: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "'%s'-কে chown করতে ব্যর্থ: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "সমস্যাপূর্ণ ডিরেক্টি মুছে ফেলতে ব্যর্থ: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus থেকে সমস্যাপূর্ণ তথ্য সংগ্রহ করা যায়নি: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus থেকে সমস্যার তালিকা সংগ্রহ করা যায়নি: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "'%s' অস্থায়ী ফাইল তৈরি করা যায় না" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:250 + #, 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' উপেক্ষা সমস্যাগুলি থেকে" + ++# translation auto-copied from project abrt, version master, document abrt + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "'%s' এর নাম বদলে '%s' এ করা যায় না। '%s' সমস্যা সরানো যায়নি" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nAnalyzes C/C++ backtrace, generates duplication hash, backtrace rating,\nand identifies crash function in problem directory DIR" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" ++"and identifies crash function in problem directory DIR" + ++# translation auto-copied from project abrt, version master, document abrt ++#. + #. * 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-র জন্য ব্যাক-ট্রেস পার্সিং করতে ব্যর্থ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" + msgstr "ক্র্যাশ থ্রেড খুঁজে পাওয়া যায়নি" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-c.c:67 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nসমস্যাযুক্ত ডিরেক্টরি DIR-র মধ্যে coredump-র UUID গণনা করে সংরক্ষণ করা হয়" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"সমস্যাযুক্ত ডিরেক্টরি DIR-র মধ্যে coredump-র UUID গণনা করে সংরক্ষণ করা হয়" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -648,54 +873,73 @@ msgstr "ব্যবহার: %s [-v] [-o OUTFILE] -c COREFILE" + msgid "COREFILE is not specified" + msgstr "COREFILE নির্দিষ্ট করা নেই" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\nUUID এবং DUPHASH গণনা এবং সংরক্ষণ করে, oops সমস্যা ডিরেক্টরি DIR এর জন্য" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"UUID এবং DUPHASH গণনা এবং সংরক্ষণ করে, oops সমস্যা ডিরেক্টরি DIR এর জন্য" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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\nUUID এবং DUPHASH গণনা এবং সংরক্ষণ করে, xorg সমস্যা ডিরেক্টরি DIR এর জন্য" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"UUID এবং DUPHASH গণনা এবং সংরক্ষণ করে, xorg সমস্যা ডিরেক্টরি DIR এর জন্য" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" + msgstr "মডিউল '%s' লোড করা হয়েছে - এই ক্র্যাশ রিপোর্ট করবেন না" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nPython ক্র্যাশ ডাম্পের UUID ও DUPHASH গণনা করে সংরক্ষণ করা হয়" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Python ক্র্যাশ ডাম্পের UUID ও DUPHASH গণনা করে সংরক্ষণ করা হয়" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "ব্যবহার: {0} [-v[v]] [--core=VMCORE]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "{0} ফাইল উপস্থিত নেই" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "কোর থেকে oops পাঠ্য নিষ্কাশন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "{0} প্রক্রিয়া করা যায় না:\n" + "{1}" +-msgstr "{0} প্রক্রিয়া করা যায় না:\n{1}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "oops বার্তা বের করে অানা যায় না: '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops পাঠ্য সফলভাবে বের করে অানা হয়েছে" +@@ -704,64 +948,86 @@ msgstr "Oops পাঠ্য সফলভাবে বের করে অান + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "কার্নেল লগ সূচিত করছে যে হার্ডওয়্যার ত্রুটি সনাক্ত করা হয়েছে।\nএটি খুব সম্ভবত কোনো সফ্টওয়্যার সমস্যা নয়।\n" ++msgstr "" ++"কার্নেল লগ সূচিত করছে যে হার্ডওয়্যার ত্রুটি সনাক্ত করা হয়েছে।\n" ++"এটি খুব সম্ভবত কোনো সফ্টওয়্যার সমস্যা নয়।\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nসমস্যায়ুক্ত ডিরেক্টরি DIR-র মধ্যে coredump বিশ্লেষণ করে backtrace প্রস্তুত করে সংরক্ষণ করা হয়" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"সমস্যায়ুক্ত ডিরেক্টরি DIR-র মধ্যে coredump বিশ্লেষণ করে backtrace প্রস্তুত " ++"করে সংরক্ষণ করা হয়" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" + msgstr "অতিরিক্ত debuginfo ডিরেক্টরি" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" + msgstr "NUM সেকেন্ডের বেশি সময় ধরে gdb চললে তা kill করা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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 "ব্যাক-ট্রেস প্রস্তুত করে সংরক্ষণ করা হয়েছে, %u বাইট" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\ncoredump-level backtrace তৈরি করে, core dump এবং সংশ্লিষ্ট বাইনারি থেকে" ++msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"coredump-level backtrace তৈরি করে, core dump এবং সংশ্লিষ্ট বাইনারি থেকে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" + msgstr "ফিংগারপ্রিন্ট হ্যাশ করা হবে না" + ++# translation auto-copied from project abrt, version master, document abrt + #. Let user know what's going on + #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 + msgid "Generating core_backtrace" + msgstr "core_backtrace প্রস্তুত করা হচ্ছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" + msgstr "ত্রুটি: GDB কোনো ডেটা ফেরত পাঠায়নি" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" + msgstr "ত্রুটি: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" + msgstr "ব্যবহারকারী দ্বারা উল্লিখিত কমান্ডের ফলে প্রস্থান করা হচ্ছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:88 + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -771,67 +1037,113 @@ msgid "" + " -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" ++" --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" ++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_FILE এ তালিকাবদ্ধ সকল build-ids এর জন্য debuginfos ইনস্টল করে\n" ++"CACHEDIR এ, TMPDIR অস্থায়ী স্টেজিং অঞ্চল হিসাবে ব্যবহার করে।\n" ++"CACHEDIR এর পুরনো ফাইলগুলি 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" +-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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" + msgstr "{0} খুলতে ব্যর্থ: {1}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Coredump দ্বারা {0} debuginfo ফাইলগুলি অনুধাবন করা হয়, এর মধ্যে {1}-টি ইনস্টল করা হয়নি" ++msgstr "" ++"Coredump দ্বারা {0} debuginfo ফাইলগুলি অনুধাবন করা হয়, এর মধ্যে {1}-টি " ++"ইনস্টল করা হয়নি" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" + msgstr "{0} debuginfo ফাইল ইনস্টল করা হয়নি" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" + msgstr "অনুরোধ জানানো ফাইল অনুপস্থিত: {0}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" + msgstr "debuginfo ফাইল অনুপস্থিত: {0}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:231 + msgid "All debuginfo files are available" + msgstr "সকল debuginfo ফাইল উপলব্ধ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "কোর ডাম্প আপলোড করা হবে কি? (এর মধ্যে সংবেদনশীল তথ্য থাকতে পারে)। 'No' (না) বলা হলে স্থানীয় অবস্থানে স্ট্যাক ট্রেস প্রস্তুত করা হবে। (এর ফলে অনেক পরিমাণ তথ্য ডাউনলোড করা হবে)।" ++msgstr "" ++"কোর ডাম্প আপলোড করা হবে কি? (এর মধ্যে সংবেদনশীল তথ্য থাকতে পারে)। 'No' (না) " ++"বলা হলে স্থানীয় অবস্থানে স্ট্যাক ট্রেস প্রস্তুত করা হবে। (এর ফলে অনেক পরিমাণ " ++"তথ্য ডাউনলোড করা হবে)।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "অাপনি কি স্থানীয় ভাবে একটি stack trace প্রস্তুত করতে চান? (এটি হয়তো বিশাল পরিমাণ ডেটা ডাউনলোড করতে পারে কিন্তু stack trace ছাড়া রিপোর্টিং জারি রাখা যায় না)।" ++msgstr "" ++"অাপনি কি স্থানীয় ভাবে একটি stack trace প্রস্তুত করতে চান? (এটি হয়তো বিশাল " ++"পরিমাণ ডেটা ডাউনলোড করতে পারে কিন্তু stack trace ছাড়া রিপোর্টিং জারি রাখা " ++"যায় না)।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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" ++"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\nDeletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\nFILEs are preserved (never deleted)." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" + msgstr "সমস্যাযুক্ত ডিরেক্টরিগুলি সম্পূর্ণ মুছে ফেলুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:237 + msgid "Delete files inside this directory" + msgstr "এই ডিরেক্টরির মধ্যে উপস্থিত ফাইল মুছে ফেলা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" + msgstr "এই ডিরেক্টরিটি সংরক্ষণ করা হবে" +@@ -868,192 +1180,253 @@ msgstr "uReport ইতিমধ্যেই পাঠানো হয়েছে, + msgid "reporter-ureport failed with exit code %d" + msgstr "reporter-ureport ব্যর্থ হয়েছে, প্রস্থান কোড %d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "userspace কোড দ্বারা প্রেরিত সংকেত" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" + msgstr "timer/IO/async ইভেন্ট দ্বারা প্রেরিত সংকেত" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" + msgstr "সংকেতে অাছে siginfo.si_code = SI_USER" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" + msgstr "অাবদ্ধ পাইপে লেখার কারণে সংকেত" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" + msgstr "কীবোর্ড দ্বারা প্রেরিত সংকেত" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" + msgstr "কার্নেল দ্বারা প্রেরিত জব কন্ট্রোল সংকেত" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" + msgstr "উইন্ডো রিসাইজ দ্বারা প্রেরিত সংকেত" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" + msgstr "অ্যালার্ম(N) মেয়াদ উত্তীর্ণ দ্বারা প্রেরিত সংকেত" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" + msgstr "ব্রোকেন পাইপে লেখার কারণে সংকেত" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" + msgstr "ABRT সংকেত (abort() কল করা হয়েছে?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" + msgstr "XCPU সংকেত (CPU সময়সীমার ঊর্ধ্বে)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:620 + msgid "XFSZ signal (over file size limit)" + msgstr "XFSZ সংকেত (ফাইলের মাপ সীমার ঊর্ধ্বে)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:624 + msgid "TRAP signal (can be a bug in a debugger/tracer)" + msgstr "TRAP সংকেত (একটি ডিবাগার/ট্রেসারে একটি বাগ হতে পারে)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:628 + msgid "SYS signal (unknown syscall was called?)" + msgstr "SYS সংকেত (অজানা syscall কল করা হয়েছে?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" + msgstr "গাণিতিক ব্যতিক্রম" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" + msgstr "শূন্য দ্বারা বিভাজন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" + msgstr "বেঅাইনি নির্দেশ (একটি অনির্দিষ্ট ঠিকানায় চলে যাবেন?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" + msgstr "নন-ক্র্যাশ সম্পর্কিত সংকেত" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" + msgstr "স্ট্যাক ওভারফ্লো" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:656 + msgid "Write to an invalid address" + msgstr "একটি অবৈধ ঠিকানায় লিখুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" + msgstr "সাব-রুটিন একটি অবৈধ ঠিকানায় ফিরে অাসে (দূষিত স্ট্যাক?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 + msgid "Jump to an invalid address" + msgstr "একটি অবৈধ ঠিকানায় চলে যান" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "ম্যাপড ফাইলের সমাপ্তি, অবৈধ ঠিকানা, অসজ্জিত অ্যাক্সেস ইত্যাদি অ্যাক্সেস অতিক্রম" ++msgstr "" ++"ম্যাপড ফাইলের সমাপ্তি, অবৈধ ঠিকানা, অসজ্জিত অ্যাক্সেস ইত্যাদি অ্যাক্সেস " ++"অতিক্রম" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" + msgstr "সংকেত না পাওয়া যায় না এবং exploitability বিশ্লেষণ করা যায় না\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " + msgstr "ক্র্যাশের সম্ভাব্য কারণ: " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " + msgstr "Exploitable রেটিং (0-9 স্কেল): " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " + msgstr "বর্তমান নির্দেশ: " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" + msgstr "Exploitability বিশ্লেষণ খালি\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nWatch log file FILE, run PROG when it grows or is replaced" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Watch log file FILE, run PROG when it grows or is replaced" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" + msgstr "STR পাওয়া না গেলে PROG সঞ্চালন করা হবে না" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "ভাঙা BIOS এর কারণে একটি কার্নেল সমস্যা দেখা দিয়েছে। দুর্ভাগ্যবশতঃ, এই ধরনের সমস্যা কার্নেল রক্ষণাবেক্ষণকারীদের দ্বারা সারানো সম্ভব নয়।" ++msgstr "" ++"ভাঙা BIOS এর কারণে একটি কার্নেল সমস্যা দেখা দিয়েছে। দুর্ভাগ্যবশতঃ, এই ধরনের " ++"সমস্যা কার্নেল রক্ষণাবেক্ষণকারীদের দ্বারা সারানো সম্ভব নয়।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++"একটি কার্নেল সমস্যা দেখা দিয়েছে, কিন্তু অাপনার হার্ডওয়্যার অসমর্থিত, তাই " ++"কার্নেল রক্ষণাবেক্ষণকারীরা তা সারাতে অপরাগ।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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-র রিপোর্ট থেকে সমস্যার কারণ নির্ণয় করতে সক্ষম হবেন না।" ++msgstr "" ++"kernel সংক্রান্ত একটি সমস্যা দেখা দিয়েছে, কিন্তু আপনার ব্যবহৃত kernel-টি " ++"টেইন্ট হয়েছে (flags:%s)। Kernel-র পরিচালকরা টেইন্ট হওয়া kernel-র রিপোর্ট " ++"থেকে সমস্যার কারণ নির্ণয় করতে সক্ষম হবেন না।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr " টেন্টেড মডিউল: %s." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 বের করুন, FILE থেকে (বা স্ট্যান্ডার্ড ইনপুট)" ++msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"oops বের করুন, FILE থেকে (বা স্ট্যান্ডার্ড ইনপুট)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "প্রমিত আউটপুটের মধ্যে print দ্বারা oops-র সম্মুখীন হওয়া গিয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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:278 + msgid "Create new problem directory in DIR for every oops found" +-msgstr "প্রত্যেক খুঁজে পাওয়া oops এর জন্য DIR এ একটি নতুন সমস্যা ডিরেক্টরি তৈরি করুন" ++msgstr "" ++"প্রত্যেক খুঁজে পাওয়া oops এর জন্য DIR এ একটি নতুন সমস্যা ডিরেক্টরি তৈরি করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 উল্লেখ করা হয়" ++msgstr "" ++"-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা " ++"হয়" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "বের করে নিয়ে অাসা তথ্য PROBLEM এ সংরক্ষণ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "সমস্যাযুক্ত ডিরেক্টরিটি সার্বজনীন রূপে পাঠযোগ্য হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Throttle সমস্যা ডিরেক্টরি তৈরি, সেকেন্ড প্রতি 1" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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-এ প্রদর্শন করে প্রস্থান করা হবে" +@@ -1062,44 +1435,58 @@ msgstr "অনুসন্ধানের পংক্তিগুলি stdout- + msgid "Failed to compile regex" + msgstr "regex একত্রিত করতে ব্যর্থ হয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "সমস্যার অাপডেট করা যায় না: একটির বেশি oops খুঁজে পাওয়া গেছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d সেকেন্ডের জন্য ঘুমন্ত" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:237 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nExtract Xorg crash from FILE (or standard input)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extract Xorg crash from FILE (or standard input)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" + msgstr "বিপর্যয় সম্বন্ধে প্রাপ্ত তথ্য স্ট্যান্ডার্ড আউটপুটে প্রিন্ট করা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:246 + msgid "Create problem directory in DIR for every crash found" + msgstr "খুঁজে পাওয়া প্রত্যেক ক্র্যাশের জন্য DIR এ সমস্যা ডিরেক্টরি তৈরি করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "বিপর্যয়ের পরিমাণ অত্যন্ত বড় হওয়ার ফলে Retrace সার্ভার ব্যবহার করা সম্ভব নয়। স্থানীয় অবস্থান থেকে retrace করার প্রচেষ্টা করুন।" ++msgstr "" ++"বিপর্যয়ের পরিমাণ অত্যন্ত বড় হওয়ার ফলে Retrace সার্ভার ব্যবহার করা সম্ভব " ++"নয়। স্থানীয় অবস্থান থেকে retrace করার প্রচেষ্টা করুন।" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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 "এ অস্থায়ী ফাইল তৈরি করা যায় না" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 + #: ../src/plugins/abrt-retrace-client.c:666 +@@ -1108,6 +1495,7 @@ msgstr "এ অস্থায়ী ফাইল তৈরি করা যায় + msgid "Failed to send HTTP header of length %d: NSS error %d" + msgstr "%d দৈর্ঘ্যের HTTP হেডার পাঠাতে বিফল: NSS সংক্রান্ত ত্রুটি %d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 + #: ../src/plugins/abrt-retrace-client.c:765 +@@ -1116,11 +1504,12 @@ msgstr "%d দৈর্ঘ্যের HTTP হেডার পাঠাতে + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "সার্ভার থেকে অপ্রত্যাশিত HTTP উত্তর পাওয়া গিয়েছে: %d\n" + "%s" +-msgstr "সার্ভার থেকে অপ্রত্যাশিত HTTP উত্তর পাওয়া গিয়েছে: %d\n%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 + #: ../src/plugins/abrt-retrace-client.c:841 +@@ -1130,25 +1519,33 @@ msgstr "সার্ভার থেকে অপ্রত্যাশিত HTT + msgid "Invalid response from server: missing HTTP message body." + msgstr "সার্ভার থেকে প্রাপ্ত উত্তর বৈধ নয়: HTTP বার্তার মূল অংশ অনুপস্থিত।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "'%s.%s' প্যাকেজ প্রক্রিয়া করতে রিট্রেস সার্ভার অসমর্থ।\nএটি কি সরকারি '%s' সংগ্রহস্থলগুলির একটি অংশ?" ++msgstr "" ++"'%s.%s' প্যাকেজ প্রক্রিয়া করতে রিট্রেস সার্ভার অসমর্থ।\n" ++"এটি কি সরকারি '%s' সংগ্রহস্থলগুলির একটি অংশ?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" + msgstr "সার্ভারের বৈশিষ্ট্য অনুসন্ধান করা হচ্ছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." +-msgstr "সার্ভার সম্পূর্ণরূপে ব্যবহৃত হচ্ছে। পরে কোনো সময় পুনরায় প্রয়াস করুন।" ++msgstr "" ++"সার্ভার সম্পূর্ণরূপে ব্যবহৃত হচ্ছে। পরে কোনো সময় পুনরায় প্রয়াস করুন।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." + msgstr "সার্ভার দ্বারা আপনার অনুরোধ প্রত্যাখ্যান করা হয়েছে।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:484 + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format +@@ -1160,25 +1557,32 @@ msgstr "Retrace সার্ভার ব্যবহারের উদ্দ + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "বিপর্যয়ের মাপ %lld বাইট, কিন্তু রি-ট্রেস সার্ভার দ্বারা শুধুমাত্র %lld বাইট অথবা এর থেকে কম মাপের বিপর্যয়ের তথ্য গ্রহণ করা হয়।" ++msgstr "" ++"বিপর্যয়ের মাপ %lld বাইট, কিন্তু রি-ট্রেস সার্ভার দ্বারা শুধুমাত্র %lld বাইট " ++"অথবা এর থেকে কম মাপের বিপর্যয়ের তথ্য গ্রহণ করা হয়।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." + msgstr "সার্ভার দ্বারা xz কমপ্রেসশন সহ tarball সমর্থন করা হয় না।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:571 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." + msgstr "'%s' রিলিজটি Retrace সার্ভার দ্বারা সমর্থিত নয়।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:575 + msgid "The server is not able to handle your request." + msgstr "আপনার অনুরোধটি সার্ভার দ্বারা পূরণ করা সম্ভব নয়।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:594 + msgid "Unknown package sent to Retrace server." + msgstr "অজানা প্যাকেজটি Retrace সার্ভারে পাঠানো হয়েছে।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:603 + msgid "Preparing an archive to upload" + msgstr "আপলোড করার জন্য আর্কাইভ প্রস্তুত করা হচ্ছে" +@@ -1188,13 +1592,16 @@ msgstr "আপলোড করার জন্য আর্কাইভ প্ + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "আর্কাইভের মাপ %lld বাইট, কিন্তু রি-ট্রেস সার্ভার দ্বারা শুধুমাত্র %lld বাইট অথবা এর থেকে কম মাপের আর্কাইভ গ্রহণ করা হয়।" ++msgstr "" ++"আর্কাইভের মাপ %lld বাইট, কিন্তু রি-ট্রেস সার্ভার দ্বারা শুধুমাত্র %lld বাইট " ++"অথবা এর থেকে কম মাপের আর্কাইভ গ্রহণ করা হয়।" + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format + msgid "You are going to upload %d megabytes. Continue?" + msgstr "আপনি %d মেগাবাইট পাঠাতে চলেছেন। এগিয়ে যাওয়া হবে কি?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:638 + msgid "Cancelled by user" + msgstr "ব্যবহারকারী দ্বারা বাতিল করা হয়েছে" +@@ -1209,66 +1616,83 @@ msgstr "%d মেগা-বাইট আপলোড করা হচ্ছে\n + msgid "Uploading %lld bytes\n" + msgstr "%lld বাইট আপলোড করা হচ্ছে\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:699 + #, c-format + msgid "Uploading %d%%\n" + msgstr "%d%% আপলোড করা হচ্ছে\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:711 + msgid "Failed to read from a pipe" + msgstr "পাইপ থেকে পড়তে ব্যর্থ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:724 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" + msgstr "তথ্য পাঠাতে ব্যর্থ: NSS সংক্রান্ত ত্রুটি %d (%s): %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:735 + msgid "Upload successful" + msgstr "সাফল্যের সাথে আপলোড করা হয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:757 + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "সমস্যাযুক্ত ডিরেক্টরিটি বর্তমানে ক্ষতিগ্রস্ত ও Retrace সার্ভার দ্বারা প্রক্রিয়াভুক্ত করা সম্ভব নয়।" ++msgstr "" ++"সমস্যাযুক্ত ডিরেক্টরিটি বর্তমানে ক্ষতিগ্রস্ত ও Retrace সার্ভার দ্বারা " ++"প্রক্রিয়াভুক্ত করা সম্ভব নয়।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "আর্কাইভের মধ্যে ত্রুটিপূর্ণ ফাইল (যেমন সিম-লিংক উপস্থিত রয়েছে) এবং তা প্রক্রিয়াভুক্ত করা সম্ভব নয়।" ++msgstr "" ++"আর্কাইভের মধ্যে ত্রুটিপূর্ণ ফাইল (যেমন সিম-লিংক উপস্থিত রয়েছে) এবং তা " ++"প্রক্রিয়াভুক্ত করা সম্ভব নয়।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." + msgstr "সার্ভার থেকে প্রাপ্ত উত্তর বৈধ নয়: X-Task-Id অনুপস্থিত।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:778 + msgid "Invalid response from server: missing X-Task-Password." + msgstr "সার্ভার থেকে প্রাপ্ত উত্তর বৈধ নয়: X-Task-Password অনুপস্থিত।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:785 + msgid "Retrace job started" + msgstr "Retrace-র কাজ আরম্ভ করা হয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "কাজের Id: %s\nকাজের পাসওয়ার্ড: %s\n" ++msgstr "কাজের Id: %s\n" ++"কাজের পাসওয়ার্ড: %s\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." + msgstr "সার্ভার থেকে প্রাপ্ত উত্তর বৈধ নয়: X-Task-Status অনুপস্থিত।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "কাজের অবস্থা: %s\n" + "%s\n" +-msgstr "কাজের অবস্থা: %s\n%s\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 + #: ../src/plugins/abrt-retrace-client.c:1043 +@@ -1276,81 +1700,108 @@ msgstr "কাজের অবস্থা: %s\n%s\n" + msgid "Failed to send HTTP header of length %d: NSS error %d." + msgstr "%d দৈর্ঘ্যের HTTP হেডার প্রাপ্ত করতে ব্যর্থ: NSS সংক্রান্ত ত্রুটি %d।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1160 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Retrace করতে ব্যর্থ। পরে পুনরায় প্রচেষ্টা করুন ও সমস্যা দেখা দিলে এই সম্পর্কে সূচিত করুন।" ++msgstr "" ++"Retrace করতে ব্যর্থ। পরে পুনরায় প্রচেষ্টা করুন ও সমস্যা দেখা দিলে এই " ++"সম্পর্কে সূচিত করুন।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" + msgstr "syslog-এ লগ করা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1209 + msgid "allow insecure connection to retrace server" +-msgstr "retrace সার্ভারের জন্য অসুরক্ষিত সংযোগ ব্যবহারের অনুমতি প্রদান করা হবে" ++msgstr "" ++"retrace সার্ভারের জন্য অসুরক্ষিত সংযোগ ব্যবহারের অনুমতি প্রদান করা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1211 + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "আর্কাইভে আপলোড করার পূর্বে চিহ্নিত প্যাকেজটি retrace সার্ভার দ্বারা প্রক্রিয়াকরণের পরীক্ষা করা হবে না" ++msgstr "" ++"আর্কাইভে আপলোড করার পূর্বে চিহ্নিত প্যাকেজটি retrace সার্ভার দ্বারা " ++"প্রক্রিয়াকরণের পরীক্ষা করা হবে না" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" + msgstr "retrace সার্ভারের URL" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1216 + msgid "retrace server port" + msgstr "retrace সার্ভারের পোর্ট" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1218 + msgid "(debug) show received HTTP headers" + msgstr "(debug) প্রাপ্ত HTTP হেডার প্রদর্শন করা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1219 + msgid "For create and batch operations" + msgstr "নির্মাণ ও ব্যাচ কাজের জন্য প্রযোজ্য" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1221 + msgid "read data from ABRT problem directory" + msgstr "ABRT-র সমস্যার ডিরেক্টরি থেকে তথ্য পড়া হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1223 + msgid "read data from coredump" + msgstr "coredump থেকে তথ্য পড়া হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1225 + msgid "Delay for polling operations" + msgstr "poll সংক্রান্ত কাজে বিলম্ব" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "(debug) -র মধ্যে ডাম্প ডিরেক্টরি থেকে নির্মিত অস্থায়ী আর্কাইভ মুছে ফেলা হবে না" ++msgstr "" ++"(debug) -র মধ্যে ডাম্প ডিরেক্টরি থেকে নির্মিত অস্থায়ী আর্কাইভ মুছে ফেলা হবে " ++"না" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" + msgstr "অবস্থা, backtrace, ও লগ সংক্রান্ত কাজের ক্ষেত্রে প্রযোজ্য" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1231 + msgid "id of your task on server" + msgstr "সার্ভারের মধ্যে চলমান আপনার কাজের id" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1233 + msgid "password of your task on server" + msgstr "সার্ভারের মধ্যে চলমান আপনার কাজের password" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1237 + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [options]\nকাজ: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client [options]\n" ++"কাজ: create/status/backtrace/log/batch/exploitable" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 + msgid "Either problem directory or coredump is needed." + msgstr "সমস্যার ডিরেক্টরি অথবা coredump আবশ্যক।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1294 + #: ../src/plugins/abrt-retrace-client.c:1302 + #: ../src/plugins/abrt-retrace-client.c:1310 +@@ -1358,6 +1809,7 @@ msgstr "সমস্যার ডিরেক্টরি অথবা coredump + msgid "Task id is needed." + msgstr "কাজের id আবশ্যক।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1296 + #: ../src/plugins/abrt-retrace-client.c:1304 + #: ../src/plugins/abrt-retrace-client.c:1312 +@@ -1365,152 +1817,199 @@ msgstr "কাজের id আবশ্যক।" + msgid "Task password is needed." + msgstr "কাজের পাসওয়ার্ড আবশ্যক।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1324 + #, c-format + msgid "Unknown operation: %s." + msgstr "অজানা কাজ: %s." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" + msgstr "স্থানীয় GNU ডিবাগার" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "debuginfo প্যাকেজ ডাউনলোড করুন ও GDB সহযোগে স্থানীয় অবস্থানে ব্যাক-ট্রেস প্রস্তুত করুন" ++msgstr "" ++"debuginfo প্যাকেজ ডাউনলোড করুন ও GDB সহযোগে স্থানীয় অবস্থানে ব্যাক-ট্রেস " ++"প্রস্তুত করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "এই ক্ষেত্রে debuginfo প্যাকেজ ডাউনলোড করা আবশ্যক। এটি করতে অনেক সময় ব্যয় হবে ও ডিস্কের অনেক স্থান ব্যবহার করা হবে। কিন্তু, RetraceServer-র মত এটি দূরবর্তী মেশিনে coredump পাঠায় না।" ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"এই ক্ষেত্রে debuginfo প্যাকেজ ডাউনলোড করা আবশ্যক। এটি করতে অনেক সময় ব্যয় হবে " ++"ও ডিস্কের অনেক স্থান ব্যবহার করা হবে। কিন্তু, RetraceServer-র মত এটি " ++"দূরবর্তী মেশিনে coredump পাঠায় না।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" + msgstr "বিশ্লেষণের জন্য retrace সার্ভারের মধ্যে কোর-ডাম্প পাঠানো হয়" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "সার্ভারের মধ্যে coredump আপলোড করে এবং সার্ভারে ব্যাক-ট্রেস প্রস্তুত করে ফেরৎ দেওয়া হয়।সুবিধা: debuginfo ডাউনলোড করার প্রয়োজন নেই। রি-ট্রেস সার্ভারের ডাটাবেস অনেক বেশি পরিপূর্ণ ও সার্ভার থেকে উন্নত ব্যাক-ট্রেস প্রাপ্ত হবে।অসুবিধা: আপলোড করা coredump-র মধ্যে গোপনীয় তথ্য সহ বিপর্যস্ত প্রোগ্রামের সকল তথ্য অন্তর্ভুক্ত করা হয়।" ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"সার্ভারের মধ্যে coredump আপলোড করে এবং সার্ভারে ব্যাক-ট্রেস প্রস্তুত করে " ++"ফেরৎ দেওয়া হয়।সুবিধা: debuginfo ডাউনলোড করার প্রয়োজন নেই। রি-ট্রেস সার্ভারের " ++"ডাটাবেস অনেক বেশি পরিপূর্ণ ও সার্ভার থেকে উন্নত ব্যাক-ট্রেস প্রাপ্ত " ++"হবে।অসুবিধা: আপলোড করা coredump-র মধ্যে গোপনীয় তথ্য সহ বিপর্যস্ত প্রোগ্রামের " ++"সকল তথ্য অন্তর্ভুক্ত করা হয়।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 + msgid "Retrace server URL" + msgstr "Retrace সার্ভারের URL" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 + #: ../src/plugins/analyze_CCpp.xml.in.h:4 + msgid "Address of the retrace server" + msgstr "retrace সার্ভারের ঠিকানা" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 + #: ../src/plugins/analyze_CCpp.xml.in.h:5 + msgid "Insecure" + msgstr "অসুরক্ষিত" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 + #: ../src/plugins/analyze_CCpp.xml.in.h:6 + msgid "Whether or not to use insecure connection" + msgstr "অসুরক্ষিত সংযোগ ব্যবহার করা হবে কি না" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "অসুরক্ষিত সংযোগ ব্যবহারের অনুমোদন প্রদান করার জন্য \"insecure\" লিখুন <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"অসুরক্ষিত সংযোগ ব্যবহারের অনুমোদন প্রদান করার জন্য \"insecure\" লিখুন <a " ++"href=\"https://fedorahosted.org/abrt/wiki/" ++"AbrtRetraceServerInsecureConnection\" >(warning)</a>" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" + msgstr ".xsession-errors সংগ্রহ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" + msgstr "~/.xsession-errors ফাইলের প্রযোজ্য পংক্তিগুলি সংরক্ষণ করা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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' এলিমেন্টের মধ্যে ফলাফল সংরক্ষণ " ++"করা হয়।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." + msgstr "সার্ভারের দিক থেকে একটি সমস্যা হয়েছে।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" + msgstr "'%s' এ সার্ভারের দিক থেকে একটি সমস্যা হয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:74 + msgid "An error occurred while connecting to the server" + msgstr "সার্ভারের সংগে সংযোগের সময়ে একটি সমস্যা দেখা দিয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:77 + #, c-format + msgid "An error occurred while connecting to '%s'" + msgstr "'%s' এর সংগে সংযোগের সময়ে একটি সমস্যা দেখা দিয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:97 + #, c-format + msgid "Issuer certificate is invalid: '%s'." + msgstr "জারীকারীর সার্টিফিকেট বৈধ নয়: '%s'।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." + msgstr "অবিশ্বস্ত জারীকারী দ্বারা : '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "সার্টিফিকেটের উদ্দিষ্টের নাম '%s'-র সাথে উদ্দিষ্ট হোস্টের নাম '%s' মিলছে না।" ++msgstr "" ++"সার্টিফিকেটের উদ্দিষ্টের নাম '%s'-র সাথে উদ্দিষ্ট হোস্টের নাম '%s' মিলছে না।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." + msgstr "দূরবর্তী সার্টিফিকেটের মেয়াদ উত্তীর্ণ হয়েছে।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." + msgstr "সার্টিফিকেট জারীকারী পরিচিত নয়: '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." + msgstr "ভুল সার্টিফিকেট প্রাপ্ত হয়েছে। প্রসঙ্গ '%s', জারী করেছেন '%s'।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:149 + #, c-format + msgid "Failed to get slot 'PEM Token #0': %d." + msgstr "'PEM Token #0' স্লট প্রাপ্ত করতে ব্যর্থ: %d।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." + msgstr "'%s' হোস্ট নাম সমাধান করা যায় না। NSS ত্রুটি %d।" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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' হোস্ট নাম সমাধান করা যায় না।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." + msgstr "সকেট ব্লক করার মোড নির্ধারণ করতে ব্যর্থ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:213 + msgid "Failed to wrap TCP socket by SSL." + msgstr "SSL সহযোগে TCP সকেট র‍্যাপ করতে ব্যর্থ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "SSL সকেটের সাথে ক্লায়েন্ট হ্যান্ড-শেক সক্রিয় করতে ব্যর্থ" +@@ -1523,121 +2022,157 @@ msgstr "SSL3 সক্রিয় করতে ব্যর্থ" + msgid "Failed to enable TLS." + msgstr "TLS সক্রিয় করতে ব্যর্থ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "SSL সকেটের URL নির্ধারণ করতে ব্যর্থ।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "'%s' এ অ্যাক্সেস করা যায় না" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "সার্টিফিকেট হুক প্রাপ্ত করতে ব্যর্থ।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "হ্যান্ড-শেক কল-ব্যাক নির্ধারণ করতে ব্যর্থ।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "হ্যান্ড-শেল পুনরায় নির্ধারণ করতে ব্যর্থ।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "SSL হ্যান্ডশেক সম্পূর্ণ করা যায়নি: NSS ত্রুটি %d।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "SSL সকেট বন্ধ করতে ব্যর্থ।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "ভুল ভাবে গঠিত HTTP প্রত্যুত্তর হেডার: '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "তথ্য প্রাপ্ত করতে ব্যর্থ: NSS সংক্রান্ত ত্রুটি %d।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "ত্রুটিপূর্ণ বিভক্ত উত্তর।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "NSS আরম্ভ করতে বিফল।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "নিরাপত্তার মডেল আরম্ভ করতে ব্যর্থ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "NSS বন্ধ করতে ব্যর্থ।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:375 + msgid "List of bug ids" + msgstr "বাগ ID-র তালিকা" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:376 + msgid "Specify a bodhi server url" + msgstr "একটি bodhi সার্ভার url নির্ধারণ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:377 + msgid "Specify a release" + msgstr "একটি রিলিজ সংখ্যা নির্ধারণ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:382 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nSearch for updates on bodhi server" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Search for updates on bodhi server" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" + msgstr "আপডেট অনুসন্ধান করা হচ্ছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:440 + msgid "No updates for this package found" + msgstr "এই প্যাকেজের কোনো আপডেট পাওয়া যায়নি" + ++# translation auto-copied from project abrt, version master, document abrt + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" +-msgstr "উপলব্ধ প্যাকেজের সংস্করণের তুলনায় নতুন প্যাকেজ স্থানীয় মেশিনে উপস্থিত রয়েছে" ++msgstr "" ++"উপলব্ধ প্যাকেজের সংস্করণের তুলনায় নতুন প্যাকেজ স্থানীয় মেশিনে উপস্থিত " ++"রয়েছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "এই সমস্যা মেটানোর ক্ষেত্রে প্রযোজ্য একটি আপডেট উপস্থিত রয়েছে। চিহ্নিত কমান্ড সহযোগে তা ইনস্টল করুন: %s। আপনি কি বাগ রিপোর্ট করার কাজে এগিয়ে যেতে ইচ্ছুক?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"এই সমস্যা মেটানোর ক্ষেত্রে প্রযোজ্য একটি আপডেট উপস্থিত রয়েছে। চিহ্নিত কমান্ড " ++"সহযোগে তা ইনস্টল করুন: %s। আপনি কি বাগ রিপোর্ট করার কাজে এগিয়ে যেতে ইচ্ছুক?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\nsplit oops বার্তার জন্য ফাইলগুলি স্ক্যান করে। তাদের মুদ্রণ এবং/অথবা মুছুন।" ++msgstr "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"split oops বার্তার জন্য ফাইলগুলি স্ক্যান করে। তাদের মুদ্রণ এবং/অথবা মুছুন।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" + msgstr "পাওয়া oopses মুদ্রণ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" + msgstr "খুঁজে পাওয়া oopses সমেত ফাইলগুলি মুছুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli-core.c:91 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' একটির বেশি সমস্যার ডিরেক্টরি সনাক্ত করেছে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND [DIR]..." +@@ -1646,18 +2181,22 @@ msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND + msgid "List problems [in DIRs]" + msgstr "সমস্যাগুলি তালিকাভুক্ত করুন [DIRs-এ]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "সমস্যার ডিরেক্টরি DIR সরিয়ে ফেলুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "DIR-র মধ্যে সমস্যার তথ্য বিশ্লেষণ করে দায়ের করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "DIR সম্পর্কে তথ্য প্রিন্ট করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "সাম্প্রতিক ক্র্যাশগুলির গণনা মুদ্রণ করুন" +@@ -1666,6 +2205,7 @@ msgstr "সাম্প্রতিক ক্র্যাশগুলির গ + msgid "Process multiple problems" + msgstr "একাধিক সমস্যাগুলি প্রক্রিয়া করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" +@@ -1674,65 +2214,90 @@ msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +-msgstr "%sRed Hat গ্রাহক পোর্টালে একটি কেস তৈরি করতে 'abrt-cli report %s' চালনা করুন\n" ++msgstr "" ++"%sRed Hat গ্রাহক পোর্টালে একটি কেস তৈরি করতে 'abrt-cli report %s' চালনা " ++"করুন\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "শুধুমাত্র না জানানো সমস্যা তালিকাভুক্ত করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full + #: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "বিস্তারিত বিবরণ প্রদর্শন করা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +-msgstr "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র তালিকাভুক্ত করুন" ++msgstr "" ++"উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র " ++"তালিকাভুক্ত করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" +-msgstr "উল্লিখিত সময়স্ট্যাম্পের চেয়ে পুরনো সমস্যাগুলিই শুধুমাত্র তালিকাভুক্ত করুন" ++msgstr "" ++"উল্লিখিত সময়স্ট্যাম্পের চেয়ে পুরনো সমস্যাগুলিই শুধুমাত্র তালিকাভুক্ত করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "স্বয়ংক্রিয় ভাবে জানানোর সুবিধা নিষ্ক্রিয় করা অাছে। দয়া করে রুটের বিশেষাধিকার থাকা ব্যবহারকারী সমেত\n'abrt-auto-reporting enabled' দিয়ে তা সক্রিয় করার কথা বিবেচনা করুন\n" ++msgstr "" ++"স্বয়ংক্রিয় ভাবে জানানোর সুবিধা নিষ্ক্রিয় করা অাছে। দয়া করে রুটের " ++"বিশেষাধিকার থাকা ব্যবহারকারী সমেত\n" ++"'abrt-auto-reporting enabled' দিয়ে তা সক্রিয় করার কথা বিবেচনা করুন\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "এর থেকে বড় পাঠ্য সংক্ষিপ্ত করে দেখানো হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "কোনো '%s' সমস্যা ডিরেক্টরি নেই" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:70 + msgid "& status [DIR]..." + msgstr "& স্ট্যাটাস [DIR]..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:78 + msgid "Print only the problem count without any message" + msgstr "কোনো বার্তা ছাড়া শুধুমাত্র সমস্যা গণনা মুদ্রণ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:79 + msgid "Print only the problems more recent than specified timestamp" +-msgstr "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র মুদ্রণ করুন" ++msgstr "" ++"উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র মুদ্রণ " ++"করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1767,17 +2332,21 @@ msgstr "পরবর্তী সমস্যার জন্য ENTER টিপ + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "--since অার্গুমেন্ট ব্যতীত, সমস্ত সনাক্ত করা সমস্যার উপরে পুনরাবৃত্তি করুন।" ++msgstr "" ++"--since অার্গুমেন্ট ব্যতীত, সমস্ত সনাক্ত করা সমস্যার উপরে পুনরাবৃত্তি করুন।" + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" + msgstr "শুধুমাত্র টাইম-স্ট্যাম্পের পরে সনাক্ত করা সমস্যাগুলি নির্বাচন করে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "বিশ্লেষণের জন্য দূরবর্তী retrace সার্ভারের মধ্যে কোর-ডাম্প পাঠানো হবে অথবা দূরবর্তী বিশ্লেষণ বিফল হলে স্থানীয় বিশ্লেষণ সঞ্চালিত হবে" ++msgstr "" ++"বিশ্লেষণের জন্য দূরবর্তী retrace সার্ভারের মধ্যে কোর-ডাম্প পাঠানো হবে অথবা " ++"দূরবর্তী বিশ্লেষণ বিফল হলে স্থানীয় বিশ্লেষণ সঞ্চালিত হবে" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1785,76 +2354,109 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "সার্ভারের মধ্যে coredump আপলোড করে এবং সার্ভারে backtrace প্রস্তুত করে ফেরৎ দেওয়া হয়। ব্যবহারকারী যদি coredump করতে ইচ্ছুক না হন তাহলে স্থানয়ী সিস্টেমে বিশ্লেষণ করা হয়। দূরবর্তী বিশ্লেষণ বিফল হলেও স্থানীয় বিশ্লেষণ সঞ্চালিত হয়। সুবিধা: debuginfo ডাউনলোড করার প্রয়োজন নেই। Retrace সার্ভারের ডাটাবেস অনেক বেশি পরিপূর্ণ ও সার্ভার থেকে উন্নত backtrace প্রাপ্ত হবে। অসুবিধা: আপলোড করা coredump-র মধ্যে গোপনীয় তথ্য সহ বিপর্যস্ত প্রোগ্রামের সকল তথ্য অন্তর্ভুক্ত করা হয়।" +- ++msgstr "" ++"সার্ভারের মধ্যে coredump আপলোড করে এবং সার্ভারে backtrace প্রস্তুত করে ফেরৎ " ++"দেওয়া হয়। ব্যবহারকারী যদি coredump করতে ইচ্ছুক না হন তাহলে স্থানয়ী সিস্টেমে " ++"বিশ্লেষণ করা হয়। দূরবর্তী বিশ্লেষণ বিফল হলেও স্থানীয় বিশ্লেষণ সঞ্চালিত হয়। " ++"সুবিধা: debuginfo ডাউনলোড করার প্রয়োজন নেই। Retrace সার্ভারের ডাটাবেস অনেক " ++"বেশি পরিপূর্ণ ও সার্ভার থেকে উন্নত backtrace প্রাপ্ত হবে। অসুবিধা: আপলোড করা " ++"coredump-র মধ্যে গোপনীয় তথ্য সহ বিপর্যস্ত প্রোগ্রামের সকল তথ্য অন্তর্ভুক্ত " ++"করা হয়।" ++ ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" + msgstr "VM core বিশ্লেষণ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Kernel debuginfo প্যাকেজগুলি ইনস্টল করে, kernel লগ ও oops বার্তা প্রস্তুত করা হয়" ++msgstr "" ++"Kernel debuginfo প্যাকেজগুলি ইনস্টল করে, kernel লগ ও oops বার্তা প্রস্তুত " ++"করা হয়" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Kernel debuginfo প্যাকেজগুলি ইনস্টল করা প্রয়োজন এবং এর জন্য বেশ কিছু পরিমাণ সময় ব্যয় হবে ও ডিস্কের অনেক স্থানও দখল করা হবে।" ++msgstr "" ++"Kernel debuginfo প্যাকেজগুলি ইনস্টল করা প্রয়োজন এবং এর জন্য বেশ কিছু পরিমাণ " ++"সময় ব্যয় হবে ও ডিস্কের অনেক স্থানও দখল করা হবে।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" + msgstr "GConf কনফিগারেশন সংগ্রহ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" + msgstr "অ্যাপ্লিকেশনের GConf ডিরেক্টরি থেকে কনফিগারেশন সংরক্ষণ করা হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 সঞ্চালনা করে 'gconf_subtree' এলিমেন্ট রূপে এটি সংরক্ষণ করা হয়।" ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable সঞ্চালনা করে 'gconf_subtree' " ++"এলিমেন্ট রূপে এটি সংরক্ষণ করা হয়।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" + msgstr "সিস্টেম-ব্যাপী ব্যবহৃত vim কনফিগারেশন ফাইল সংগ্রহ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" + msgstr "/etc/vimrc ও /etc/gvimrc সংগ্রহ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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-র মধ্যে vimrc ও gvimrc ফাইলগুলি উপস্থিত রয়েছে কিনা তা যাচাই করা হয় ও যথাক্রমে system_vimrc ও system_gvimrc নামে তা সংরক্ষণ করা হয়।" ++msgstr "" ++"/etc-র মধ্যে vimrc ও gvimrc ফাইলগুলি উপস্থিত রয়েছে কিনা তা যাচাই করা হয় ও " ++"যথাক্রমে system_vimrc ও system_gvimrc নামে তা সংরক্ষণ করা হয়।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" + msgstr "নিজের প্রয়োজনের vim কনফিগারেশন ফাইল সংগ্রহ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" + msgstr "নিজের ব্যক্তিগত ডিরেক্টরির জন্য .vimrc ও .gvimrc সংরক্ষণ করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরির মধ্যে .vimrc ও .gvimrc ফাইলগুলি উপস্থিত রয়েছে কিনা তা যাচাই করা হয় ও যথাক্রমে user_vimrc ও user_gvimrc নামে তা সংরক্ষণ করা হয়।" ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"ব্যবহারকারীর ব্যক্তিগত ডিরেক্টরির মধ্যে .vimrc ও .gvimrc ফাইলগুলি উপস্থিত " ++"রয়েছে কিনা তা যাচাই করা হয় ও যথাক্রমে user_vimrc ও user_gvimrc নামে তা " ++"সংরক্ষণ করা হয়।" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" + msgstr "রিপোর্ট দায়ের করুন" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:2 + msgid "Executed after the reporting is finished" + msgstr "রিপোর্টের কাজে সমাপ্তির পরে সঞ্চালিত হবে" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:3 + msgid "Used for updating of the databases" + msgstr "ডাটাবেস আপডেট করার জন্য ব্যবহৃত" +diff --git a/po/bo.po b/po/bo.po +index d6e6ee9..a306d7b 100644 +--- a/po/bo.po ++++ b/po/bo.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Tibetan (http://www.transifex.com/projects/p/fedora-abrt/language/bo/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Tibetan (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/bo/)\n" + "Language: bo\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/br.po b/po/br.po +index feb6c39..faa741f 100644 +--- a/po/br.po ++++ b/po/br.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Breton (http://www.transifex.com/projects/p/fedora-abrt/language/br/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Breton (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/br/)\n" + "Language: br\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/brx.po b/po/brx.po +index 4c47ba8..c806934 100644 +--- a/po/brx.po ++++ b/po/brx.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Bodo (http://www.transifex.com/projects/p/fedora-abrt/language/brx/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Bodo (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/brx/)\n" + "Language: brx\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/bs.po b/po/bs.po +index 7eeb745..6a1d9de 100644 +--- a/po/bs.po ++++ b/po/bs.po +@@ -7,17 +7,20 @@ + # Jiří Moskovčák , 2011 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Bosnian (http://www.transifex.com/projects/p/fedora-abrt/language/bs/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Bosnian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/bs/)\n" + "Language: bs\n" +-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " ++"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -90,7 +93,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -102,7 +107,9 @@ msgstr "Upozorenje" + #: ../src/applet/applet.c:834 + 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" ++msgstr "" ++"Obavještajni aplet koji obavještava korisnike o problemima otkrivenim od " ++"strane ABRT-a" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -129,6 +136,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -143,6 +151,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Izvještaj" +@@ -213,10 +222,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -230,15 +238,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -406,10 +414,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -461,19 +469,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -607,9 +668,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -684,8 +747,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -720,6 +782,7 @@ 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" +@@ -758,7 +821,8 @@ msgstr "Izlazim na korisničku naredbu" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -768,7 +832,8 @@ msgid "" + " -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" ++" --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" +@@ -817,7 +882,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1031,6 +1097,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1091,6 +1158,7 @@ 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 +@@ -1113,8 +1181,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1250,8 +1317,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1261,8 +1327,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1373,14 +1438,18 @@ msgstr "Lokalni GNU ispravljač greški" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Preuzmi debuginfo pakete i stvori funkcijski trag lokalno koristeći GDB" ++msgstr "" ++"Preuzmi debuginfo pakete i stvori funkcijski trag lokalno koristeći GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Treba da preuzme debuginfo pakete koji mogu zahtjevati dosta vremena i zauzeti prostor na tvrdom disku. Međutim, za razliku od RetraceServer, nešalje ispis jezgre na udaljene mašine." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Treba da preuzme debuginfo pakete koji mogu zahtjevati dosta vremena i " ++"zauzeti prostor na tvrdom disku. Međutim, za razliku od RetraceServer, " ++"nešalje ispis jezgre na udaljene mašine." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1388,12 +1457,17 @@ msgstr "Pošalji ispis jezgre na udaljeni retrace server za analizu" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Prebacuje ispis jezgre na server koji stvara funkcijski trag i vraća ga. Za: nema potrebe za debuginfo preuzimanjima. Retrace serverova baza podataka debuginfo-a je potpunija. Retrace server može stvarati bolje funkcijske tragove. Protiv: ispis jezgre koji prebacite sadrži sve podatke iz srušenog programa uključujući Vaše privatne podatke (ako postoje)." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Prebacuje ispis jezgre na server koji stvara funkcijski trag i vraća ga. Za: " ++"nema potrebe za debuginfo preuzimanjima. Retrace serverova baza podataka " ++"debuginfo-a je potpunija. Retrace server može stvarati bolje funkcijske " ++"tragove. Protiv: ispis jezgre koji prebacite sadrži sve podatke iz srušenog " ++"programa uključujući Vaše privatne podatke (ako postoje)." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1418,9 +1492,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1611,8 +1685,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1697,7 +1771,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1782,8 +1857,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1840,8 +1915,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/ca.po b/po/ca.po +index 808a91b..c581fdf 100644 +--- a/po/ca.po ++++ b/po/ca.po +@@ -5,19 +5,22 @@ + # Translators: + # Bernabé Borrero , 2012 + # Jiří Moskovčák , 2011 ++# Robert Antoni Buj Gelonch , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Catalan (http://www.transifex.com/projects/p/fedora-abrt/language/ca/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-05 04:04-0500\n" ++"Last-Translator: Robert Antoni Buj Gelonch \n" ++"Language-Team: Catalan (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ca/)\n" + "Language: ca\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -27,55 +30,70 @@ msgstr "Eina d'enviament automàtic d'informes d'errors" + msgid "ABRT notification applet" + msgstr "Mini-aplicació de notificacions d'ABRT" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../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" + msgstr "" ++"L'informe que s'enviarà no conté cap dada sensible a la seguretat. Per tant " ++"no cal que us preocupeu la propera vegada així com tampoc cal que realitzeu " ++"cap acció addicional.\n" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +-msgstr "" ++msgstr "Voleu activar que s'enviïn automàticament informes de fallides?" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" ++"Voleu activar que s'enviïn automàticament informes anònims de fallides?" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" ++msgstr "No s'ha pogut connectar amb NetworkManager a través de DBus: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" ++"No s'ha pogut determinat l'estat de la xarxa a través de NetworkManager: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/applet/applet.c:342 + #, c-format + msgid "Can't take ownership of '%s'" +-msgstr "" ++msgstr "No es pot ser el propietari de '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/applet/applet.c:350 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "" ++msgstr "No es pot obrir el directori per a l'escriptura '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:417 + msgid "A problem has been detected" +-msgstr "" ++msgstr "S'ha detectat un problema" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" +-msgstr "" ++msgstr "S'ha detectat un problema en el paquet %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "S'ha enviat %s i les dades de diagnostic" + + #: ../src/applet/applet.c:589 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 +@@ -83,17 +101,26 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "No es pot executar «%s»" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" +-msgstr "" ++msgstr "No es pot tancar la notificació: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" ++"Esteu a punt de silenciar les notificacions d'un determinat problema. Mai " ++"mes veureu una bafarada de notificació per aquest problema, però l'ABRT el " ++"detectarà i sereu capaços d'informar-ho des de la IGU de l'ABRT.\n" ++"\n" ++"Voleu continuar?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -102,47 +129,58 @@ msgstr "Avís" + #: ../src/applet/applet.c:834 + 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" ++msgstr "" ++"Mini-aplicació de l'àrea de notificació que notifica als usuaris sobre els " ++"problemes detectats per ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Robert Antoni Buj Gelonch " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:858 + msgid "_Quit" +-msgstr "" ++msgstr "_Surt" + + #: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Oculta" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:862 + msgid "_About" +-msgstr "" ++msgstr "_Quant a" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:930 + msgid "Problem detected" +-msgstr "" ++msgstr "Problema detectat" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:980 + msgid "Ignore forever" +-msgstr "" ++msgstr "Ignora-ho sempre" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" +-msgstr "" ++msgstr "Obre" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" +-msgstr "" ++msgstr "El problema ja ha estat informat" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" +-msgstr "" ++msgstr "S'ha produït un problema conegut" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Informa" +@@ -151,74 +189,98 @@ msgstr "Informa" + msgid "A Problem has Occurred" + msgstr "S'ha Produït un Problema" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" +-msgstr "" ++msgstr "S'ha informat d'un problema" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" +-msgstr "" ++msgstr "S'ha produït un nou problema" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" +-msgstr "" ++msgstr "No es pot mostrar la notificació: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. TODO: Terminate child's process? + #: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" +-msgstr "" ++msgstr "No es pot llegir des del canal gio: '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" +-msgstr "" ++msgstr "No es pot establir la codificació en el canal gio: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" ++msgstr "No es pot engegar el mode no-bloquejant per al canal gio: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" ++"Error en obrir la connexió al gestor de sessions: '%s', la notificació pot " ++"tornar a apareixe el proper cop que inicieu una sessió" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Miniaplicació que notifica a l'usuari d'un nou problema detectat per " ++"l'ABRT\n" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Pregunta abans de robar un directori" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Envia automàticament l'uReport" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "Informador escurçat" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "Informador escurçat silenciós" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" ++"El fitxer de bolcatge de memòria és necessari per generar la traça de la " ++"pila, que és una operació que consumeix temps i espai. L'ABRT proporciona un " ++"servei que genera la traça de la pila des del bolcatge de memòria, però heu " ++"de pujar el bolcatge de memòria a aquest servei. Amb aquesta opció " ++"inhabilitada l'ABRT pujarà el bolcatge de memòria sense preguntar." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" + "ABRT stores problem data in directories. Whenever ABRT needs writable " +@@ -226,31 +288,51 @@ msgid "" + "directory. With this option disabled ABRT will move the problem directory " + "without asking." + msgstr "" ++"L'ABRT emmagatzema les dades del problema en directoris. Sempre que l'ABRT " ++"necessiti un directori on s'hi hagi d'escriure, el directori és mogut des de " ++"la localització del sistema al vostre directori d'inici. Amb aquesta opció " ++"inhabilitada l'ABRT mourà el directori del problema sense preguntar." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" ++"L'uReport és la descripció breu i completament anònima d'un problema. L'ABRT " ++"utilitza els uReport per a la ràpida detecció de duplicats a nivell global. " ++"En la configuració per defecte l'uReport és enviat al començament del procés " ++"informador. Amb aquesta opció habilitada els uReports són enviats " ++"automàticament tot just després de la detecció del problema." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" ++"Amb aquesta opció habilitada el procés informador que es va iniciar amb el " ++"clic en el botó Informa en la bafarada de la notificació del problema, serà " ++"interromput després que s'hagi enviat l'uReport. Sempre podeu utilitzar el " ++"navegador de problemes per defecte per fer l'informe complet." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" ++"Amb aquesta opció habilitada l'ABRT mai mostra les notificacions dels " ++"problemes informats. Únicament pren efecte si l'Informador escurçat està " ++"habilitat." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "Pregunta abans de pujar un bolcatge de memòria" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" +@@ -258,53 +340,71 @@ msgid "" + "access if possibly sensitive data are dected." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "Sol·licita un tiquet privat per a informació sensible" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Notifica problemes incomplets" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" ++"El problemes incomplets són detectats mentre l'ordinador s'està aturant o un " ++"usuari tanca la sessió. A fi de proporcionar informes de problemes valuosos, " ++"l'ABRT no us permetrà enviar aquests problemes." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +-msgstr "" ++msgstr "_Tanca" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" +-msgstr "" ++msgstr "_Predeterminats" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "" ++msgstr "Configuració de l'informador de problemes" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +-msgstr "" ++msgstr "Quant a la configuració del sistema de l'ABRT" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "" ++msgstr "Quant a" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:106 + msgid "Quit" +-msgstr "" ++msgstr "Surt" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-action-save-package-data.c:382 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Consulta a la base de dades del paquet i desa el nom del paquet i del " ++"component" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 +@@ -314,20 +414,22 @@ msgstr "" + #: ../src/plugins/abrt-action-generate-backtrace.c:55 + #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 + msgid "Problem directory" +-msgstr "" ++msgstr "Directori del problema" + + #: ../src/daemon/abrt-action-save-package-data.c:395 + msgid "Configuration file" + msgstr "Fitxer de configuració" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" +-msgstr "" ++msgstr "& [opcions]" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-server.c:797 + msgid "Use NUM as client uid" +-msgstr "" ++msgstr "Utilitza NUM com a uid de client" + + #: ../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 +@@ -339,53 +441,64 @@ msgstr "Enregistra a syslog" + msgid "Add program names to log" + msgstr "Afegir els noms dels programes al registre" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:123 + msgid "Unknown error" +-msgstr "" ++msgstr "Error desconegut" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:188 + #, c-format + msgid "'%s' is not a valid problem directory" +-msgstr "" ++msgstr "'%s' no es un directori del problema vàlid" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:223 + #, c-format + msgid "'%s' element can't be modified" +-msgstr "" ++msgstr "L'element '%s' no es pot modificar " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 + #: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" +-msgstr "" ++msgstr "No autoritzat" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/dbus/abrt-dbus.c:256 + msgid "Can't access the problem for modification" +-msgstr "" ++msgstr "No es pot accedir al problema per a la notificació" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" ++"Error en canviar el propietari del directori. Reviseu els registres del " ++"sistema per a més detalls." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:559 + #, c-format + msgid "'%s' is not a valid element name" +-msgstr "" ++msgstr "'%s' no és un nom d'element vàlid" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/dbus/abrt-dbus.c:580 + #, c-format + msgid "Can't get size of '%s'" +-msgstr "" ++msgstr "No es pot obtenir la mida de '%s'" + + #: ../src/dbus/abrt-dbus.c:595 + msgid "No problem space left" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:627 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" ++msgstr "No es pot eliminar l'element '%s' del directori del problema '%s'" + + #: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 + #, c-format +@@ -394,23 +507,32 @@ msgid "" + "is not running.\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" +-msgstr "" ++msgstr "Surt després de NUM segons d'inactivitat" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." +-msgstr "" ++msgstr "Aquest programa cal executar-lo com a root." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"Les dades del problema estan incompletes. Això normalment passa quan es " ++"detecta un problema mentre l'ordinador s'està apagant o l'usuari està " ++"sortint del sistema. Per obtenir informes de problema valuosos, l'ABRT no " ++"permet que envieu aquest problema. Si teniu temps i voleu ajudar als " ++"desenvolupadors en la seva tasca de posar en ordre aquest problema, " ++"contacteu-hi directament." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -420,17 +542,20 @@ msgstr "No fer-ho dimoni" + msgid "Log to syslog even with -d" + msgstr "Enregistra a syslog inclús amb -d" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-event.c:388 + msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" ++msgstr "& [-v -i] -e|--event EVENT DIR..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:396 + msgid "Run EVENT on DIR" +-msgstr "" ++msgstr "Executa EVENT a DIR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:397 + msgid "Communicate directly to the user" +-msgstr "" ++msgstr "Comuniqueu-vos directament amb l'usuari" + + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format +@@ -449,31 +574,91 @@ msgid "" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +-msgstr "" ++msgstr "Endimonia" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "" ++msgstr "El nombre de treballs concurrents. Per defecte són " + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "" ++msgstr "La mida màxima de la memòria cau en MiB. Per defecte són " + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " ++msgstr "& [" ++ ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch ++#: ../src/daemon/abrt-auto-reporting.c:251 ++msgid "Invalid number of arguments" ++msgstr "El nombre d'arguments no és vàlid" ++ ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" ++msgstr "Valor d'opció desconeguda: '%s'\n" ++ ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -485,120 +670,155 @@ msgid "" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" + msgstr "" ++"Ús: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbós\n" ++" -d - Elimina l'arxiu pujat\n" ++" ABRT_SPOOL_DIR - Directori on els arxius vàlids pujats són desempaquetats\n" ++" UPLOAD_DIR - Directori on són emmagatzemats els arxius pujats\n" ++" FILENAME - Nom del fitxer de l'arxiu pujat\n" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "No és un directori: '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "S'està ometent: ''{0}'' (comença amb barra invertida)" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "S'està ometent: ''{0}'' (comença amb punt)" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "S'està ometent: ''{0}'' (conté ..)" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "S'està ometent: ''{0}'' (conté espai)" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "S'està ometent: ''{0}'' (conté tabulador)" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "No es pot canviar el directori '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Tipus de fitxer desconegut: '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "No es pot crear el directori de treball en '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "No es pot moure '{0}' a '{1}'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "No es pot copiar '{0}' a '{1}'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "Error de verificació en '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "S'està desempaquetant '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "No es pot crear el directori '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "No es pot desempaquetar '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' s'ha processat amb èxit" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" +-msgstr "" ++msgstr "S'està generant la traça inversa" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/lib/problem_api_dbus.c:42 + #, c-format + msgid "Can't connect to system DBus: %s" +-msgstr "" ++msgstr "No es pot connectar al DBus del sistema: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" +-msgstr "" ++msgstr "No es pot canviar el propietari '%s': %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" +-msgstr "" ++msgstr "Error en eliminar el directori del problema: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" ++msgstr "No es poden obtenir les dades del problema des de l'abrt-dbus: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" ++msgstr "No es pot obtenir el llistat de problemes des de l'abrt-dbus: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +-msgstr "" ++msgstr "No es pot crear el fitxer temporal '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" ++"No es pot escriure en '%s'. El problema '%s' no es traurà dels problemes " ++"ignorats '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" ++msgstr "No es pot reanomenar '%s' a '%s'. Error en eliminar el problema '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" + "& [options] -d DIR\n" +@@ -606,96 +826,132 @@ msgid "" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" + msgstr "" ++"& [opcions] -d DIR\n" ++"\n" ++"Analitza la traça inversa de C/C++, genera la dispersió de duplicats, la " ++"puntuació de la traça inversa,\n" ++"i identifica la funció de fallida en el directori del problema DIR" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch ++#. + #. * 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 "" ++msgstr "Error en analitzar la traça inversa per %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" +-msgstr "" ++msgstr "No s'ha trobat el fil d'execució de la fallida" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-c.c:67 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcula i desa el UUID del bolcatge de memòria en el directori del problema " ++"DIR" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "S'està analitzant el bolcatge de memòria '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "Falta l'id de contrucció: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "Ús: %s [-v] [-o OUTFILE] -c COREFILE" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "no s'ha especificat COREFILE" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcula i desa el UUID i el DUPHASH per al directori del problema oops DIR" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../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" ++"\n" ++"Calcula i desa el UUID i el DUPHASH per al directori del problema xorg DIR" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" ++msgstr "El mòdul '%s' estava carregat - no s'informarà d'aquesta fallida" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcula i desa el UUID i el DUPHASH dels bolcatges de fallida de Python" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" ++msgstr "Ús: {0} [-v[v]] [--core=VMCORE]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" +-msgstr "" ++msgstr "El fitxer {0} no existeix" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "No es pot processar {0}:\n" + "{1}" +-msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +-msgstr "" ++msgstr "No es pot extraure el missatge oops: '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" +-msgstr "" ++msgstr "El text dels oop s'ha extret am èxit" + + #: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" +@@ -703,62 +959,80 @@ msgid "" + "This is most likely not a software problem.\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" + msgstr "" ++"& [opcions] -d DIR\n" ++"\n" ++"Analitza el bolcatge de memòria en el directori del problema DIR, genera i " ++"desa la traça inversa" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" + msgstr "Directoris debuginfo addicionals" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "" ++msgstr "Mata al gdb si s'executa més de NUM segons" + + #. 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 "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" + msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"Crea una traça inversa a nivell de bolcatge de memòria des del bolcatge de " ++"memòria i el corresponent binari" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +-msgstr "" ++msgstr "No dispersis les empremtes" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. Let user know what's going on + #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 + msgid "Generating core_backtrace" +-msgstr "" ++msgstr "S'està generant el core_backtrace" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" +-msgstr "" ++msgstr "Error: GDB no va retornar cap dada" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" +-msgstr "" ++msgstr "Error: %s" + + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" + msgstr "Sortint amb l'ordre de l'usuari" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-install-debuginfo.in:88 + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -768,37 +1042,66 @@ msgid "" + " -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" ++" --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" + msgstr "" +- ++"Ús: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Instal·la els debuginfo per a tots els build-id llistats en BUILD_IDS_FILE\n" ++"a CACHEDIR, mitjançant TMPDIR com l'àrea de l'etapa temporal.\n" ++"Els fitxers antics en CACHEDIR són eliminats fins que la seva mida és més " ++"perita que SIZE.\n" ++"\n" ++" -v Siguis verbós\n" ++" -y No interactiu, assumeix 'Si' a totes les qüestions\n" ++" --ids Per defecte: els build_id\n" ++" --tmpdir Per defecte: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Per defecte: /var/cache/abrt-di\n" ++" --size_mb Per defecte: 4096\n" ++" -e,--exact Baixa únicament els fitxers especificats\n" ++" --repo Patro a utilitzar quan es cerqui als dipòsits.\n" ++" Per defecte: *debug*\n" ++ ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +-msgstr "" ++msgstr "No es pot obrir {0}: {1}" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "" ++"El bolcatge de memòria fa referència a {0} fitxers debuginfo, {1} d''ells no " ++"estan instal·lats." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} dels fitxers debuginfo no estan instal·lats" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Falta el fitxer sol·licitat: {0}" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +-msgstr "" ++msgstr "Falta el fitxer debuginfo: {0}" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-install-debuginfo.in:231 + msgid "All debuginfo files are available" +-msgstr "" ++msgstr "Tots els fitxers debuginfo estan disponibles" + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" +@@ -813,97 +1116,121 @@ msgid "" + "amount of data but reporting can't continue without stack trace)." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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" ++"Elimina els directoris (-d) o els fitxers (-f) dels problemes en DIRs fins " ++"que siguin més petits que SIZE.\n" ++"FILEs són preservats (mai eliminats)." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +-msgstr "" ++msgstr "Elimina els directoris sencers dels problemes" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-trim-files.c:237 + msgid "Delete files inside this directory" +-msgstr "" ++msgstr "Elimina els fitxers dins d'aquest directori" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" +-msgstr "" ++msgstr "Preserva aquest directori" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "Incapaç d'iniciar '%s', el missatge d'error va ser: '%s'" + + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Ús: %s [-v]" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" ++"No s'ha pogut obtenir el directori de treball actual com probablement hagi " ++"estat eliminat" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "Ja es va emplenar un error quant a aquest problema:" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "L'uReport ja es va enviar, no s'enviarà un altre cop" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "El reporter-ureport va fer fallida amb el codi de sortida %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" +-msgstr "" ++msgstr "Senyal enviada per l'esdeveniment timer/IO/async" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" ++msgstr "La senyal té siginfo.si_code = SI_USER" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" +-msgstr "" ++msgstr "Senyal a causa de l'escriptura en una canonada tancada" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" +-msgstr "" ++msgstr "Senyal enviada pel tecla" + + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" +-msgstr "" ++msgstr "Senyal enviada pel redimensionament de la finestra" + + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" +-msgstr "" ++msgstr "Senyal a causa de l'escriptura en una canonada trencada" + + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" +@@ -925,13 +1252,15 @@ msgstr "" + msgid "SYS signal (unknown syscall was called?)" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" +-msgstr "" ++msgstr "Excepció aritmètica" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" +-msgstr "" ++msgstr "Divisió per zero" + + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" +@@ -941,22 +1270,26 @@ msgstr "" + msgid "Non-crash related signal" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" +-msgstr "" ++msgstr "Sobrecàrrega de la pila" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:656 + msgid "Write to an invalid address" +-msgstr "" ++msgstr "Escriptura a una adreça no vàlida" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" ++msgstr "La subrutina va retornar a una adreça no vàlida (pila malmesa?)" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 + msgid "Jump to an invalid address" +-msgstr "" ++msgstr "Salt a una adreça no vàlida" + + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" +@@ -975,24 +1308,31 @@ msgstr "" + msgid "Exploitable rating (0-9 scale): " + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "Instrucció actual:" + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" + msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Observa el fitxer de registre FILE, executa PROG quan creixi o sigui " ++"substituït" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +-msgstr "" ++msgstr "No executis PROG si no es troben STRs" + + #: ../src/plugins/abrt-dump-oops.c:125 + msgid "" +@@ -1013,89 +1353,119 @@ msgid "" + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." +-msgstr "" ++msgstr "Mòduls contaminats: %s." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../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" ++"Extreu els oop des de FILE (o entrada estàndard)" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +-msgstr "" ++msgstr "Imprimeix els oop que s'han trobat en la sortida estàndard" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" ++"Crea el nou directori del problema en DIR per a cadascun dels oop trobats" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../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 "" ++msgstr "El mateix que -d DumpLocation, DumpLocation s'especifica en abrt.conf" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +-msgstr "" ++msgstr "Desa la informació extreta en PROBLEM" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" +-msgstr "" ++msgstr "Fes que el directori del problema el pugui llegir tot el món" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" +-msgstr "" ++msgstr "Regula la creació del directori del problema a 1 per segon" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" +-msgstr "" ++msgstr "Imprimeix les cadenes de text de cerca a l'stdout i surt" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "Error en compilar l'expressió regular" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" +-msgstr "" ++msgstr "S'està dormint durant %d segons" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-dump-xorg.c:237 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extreu la fallida d'Xorg des de FILE (o entrada estàndard)" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" + msgstr "" ++"Imprimeix les dades de les fallides que s'han trobat en la sortida estàndard" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-dump-xorg.c:246 + msgid "Create problem directory in DIR for every crash found" + msgstr "" ++"Crea el directori del problema en DIR per a cadascuna de les fallides que es " ++"trobin" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." + msgstr "" ++"No es pot utilitzar el servidor de resseguiment, a causa de que la mida del " ++"fitxer de la fallida és massa gran. Proveu amb un resseguiment local." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. 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 "No es pot crear el fitxer temporal a " + + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 +@@ -1113,8 +1483,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1127,30 +1496,38 @@ msgstr "" + msgid "Invalid response from server: missing HTTP message body." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" + msgstr "" ++"El servidor de resseguiment no es capaç de processar el paquet '%s.%s'.\n" ++"Forma part dels dipòsits oficials de '%s'?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." +-msgstr "" ++msgstr "El servidor està completament enfeinat. Proveu-ho més tard." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." +-msgstr "" ++msgstr "El servidor ha rebutjat la vostra sol·licitud." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:484 + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." + msgstr "" ++"'%s' ha de ser un fitxer normal per a poder utilitzar un servidor de " ++"resseguiment." + + #: ../src/plugins/abrt-retrace-client.c:514 + #, c-format +@@ -1163,22 +1540,26 @@ msgstr "" + msgid "The server does not support xz-compressed tarballs." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:571 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" ++msgstr "El llançament '%s' no està suportat pel servidor de resseguiment." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:575 + msgid "The server is not able to handle your request." +-msgstr "" ++msgstr "El servidor no és capaç de tractar la vostra petició." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:594 + msgid "Unknown package sent to Retrace server." +-msgstr "" ++msgstr "Es va enviar un paquet desconegut al servidor de resseguiment." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:603 + msgid "Preparing an archive to upload" +-msgstr "" ++msgstr "S'està preparant un arxiu per a la pujada" + + #: ../src/plugins/abrt-retrace-client.c:616 + #, c-format +@@ -1192,9 +1573,10 @@ msgstr "" + msgid "You are going to upload %d megabytes. Continue?" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:638 + msgid "Cancelled by user" +-msgstr "" ++msgstr "Es va cancel·lar per l'usuari" + + #: ../src/plugins/abrt-retrace-client.c:673 + #, c-format +@@ -1206,29 +1588,35 @@ msgstr "" + msgid "Uploading %lld bytes\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:699 + #, c-format + msgid "Uploading %d%%\n" +-msgstr "" ++msgstr "S'està pujant %d%%\n" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:711 + msgid "Failed to read from a pipe" +-msgstr "" ++msgstr "Error en llegir de d'una canonada" + + #: ../src/plugins/abrt-retrace-client.c:724 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:735 + msgid "Upload successful" +-msgstr "" ++msgstr "S'ha pujat amb èxit" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:757 + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." + msgstr "" ++"El vostre directori del problema està corromput i no pot ser processat pel " ++"servidor de resseguiment." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" +@@ -1244,27 +1632,30 @@ msgstr "" + msgid "Invalid response from server: missing X-Task-Password." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:785 + msgid "Retrace job started" +-msgstr "" ++msgstr "S'ha iniciat el treball de resseguiment" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "" ++msgstr "Id de la tasca: %s\n" ++"Contrasenya de la tasca: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Estat de la tasca: %s\n" + "%s\n" +-msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1273,163 +1664,217 @@ msgstr "" + msgid "Failed to send HTTP header of length %d: NSS error %d." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1160 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." + msgstr "" ++"Error en el resseguiment. Proveu-ho de nou més tard i si el problema perdura " ++"informeu d'aquesta incidència." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" + msgstr "enregistra a syslog" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1209 + msgid "allow insecure connection to retrace server" +-msgstr "" ++msgstr "permet la connexió insegura al servidor de resseguiment" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1211 + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" + msgstr "" ++"no comprovis si el servidor de resseguiment és capaç de processar un " ++"determinat paquet abans de pujar l'arxiu" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +-msgstr "" ++msgstr "URL del servidor de resseguiment" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1216 + msgid "retrace server port" +-msgstr "" ++msgstr "port del servidor de resseguiment" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1218 + msgid "(debug) show received HTTP headers" +-msgstr "" ++msgstr "(depuració) mostra les capçaleres HTTP rebudes" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1219 + msgid "For create and batch operations" +-msgstr "" ++msgstr "Per a les operacions create i batch" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1221 + msgid "read data from ABRT problem directory" +-msgstr "" ++msgstr "llegeix les dades des del directori del problema de l'ABRT" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1223 + msgid "read data from coredump" +-msgstr "" ++msgstr "llegeix les dades des del bolcatge de memòria" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1225 + msgid "Delay for polling operations" +-msgstr "" ++msgstr "Retard per a les operacions de sondeig" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " + msgstr "" ++"(depuració) no eliminis els arxius temporals que s'hagin creat des del " ++"directori del bolcat en " + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +-msgstr "" ++msgstr "Per a les operacions status, backtrace i log" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1231 + msgid "id of your task on server" +-msgstr "" ++msgstr "id de la vostra tasca en el servidor" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1233 + msgid "password of your task on server" +-msgstr "" ++msgstr "contrasenya de la vostra tasca en el servidor" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1237 + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" + msgstr "" ++"abrt-retrace-client [opcions]\n" ++"Operacions: create/status/backtrace/log/batch/exploitable" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 + msgid "Either problem directory or coredump is needed." +-msgstr "" ++msgstr "Es necessita el directori del problema o bé el bolcatge de memòria." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1294 + #: ../src/plugins/abrt-retrace-client.c:1302 + #: ../src/plugins/abrt-retrace-client.c:1310 + #: ../src/plugins/abrt-retrace-client.c:1318 + msgid "Task id is needed." +-msgstr "" ++msgstr "Es necessita l'id de la tasca." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../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 "" ++msgstr "Es necessita la contrasenya de la tasca." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1324 + #, c-format + msgid "Unknown operation: %s." +-msgstr "" ++msgstr "Operació desconeguda: %s." + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" + msgstr "Depurador GNU Local" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" + msgstr "" ++"Baixa els paquets debuginfo i genera localment la traça inversa mitjançant " ++"GDB" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" ++"Necessita baixar els paquets debuginfo, els quals prenen un temps " ++"significant i espai de de disc. No obstant, a diferència dels servidors de " ++"resseguiment, no envia els bolcatges de memòria a màquines remotes." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" + msgstr "" ++"Envia el bolcatge de memòria al servidor remot de resseguiment per a " ++"l'anàlisi" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" ++"Puja el bolcatge de memòria a un servidor que genera una traça inversa i la " ++"retorna. Pros: no hi hi la necessitat de baixar els debuginfo. La base de " ++"dades dels debuginfo del servidor de resseguiment és més completa. El " ++"servidor de resseguiment pot generar millor les traces inverses. Cons: el " ++"bolcatge de memòria que pugeu conté totes les dades del programa que ha fet " ++"fallida, que inclouen les vostres dades privades, si fos el cas." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 + msgid "Retrace server URL" +-msgstr "" ++msgstr "URL del servidor de resseguiment" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 + #: ../src/plugins/analyze_CCpp.xml.in.h:4 + msgid "Address of the retrace server" +-msgstr "" ++msgstr "Adreça del servidor de resseguiment" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 + #: ../src/plugins/analyze_CCpp.xml.in.h:5 + msgid "Insecure" +-msgstr "" ++msgstr "Insegur" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 + #: ../src/plugins/analyze_CCpp.xml.in.h:6 + msgid "Whether or not to use insecure connection" +-msgstr "" ++msgstr "Utilitzar o no utilitzar la connexió insegura" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" ++"Escribiu \"insecure\" per a permetre una connexió insegura <a href=" ++"\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(advertència)</a>" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +-msgstr "" ++msgstr "Recull .xsession-errors" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "" ++msgstr "Desa les línies rellevants del fitxer ~/.xsession-errors" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:3 + msgid "" +@@ -1437,23 +1882,27 @@ msgid "" + "executable's name. The result is saved as 'xsession_errors' element." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +-msgstr "" ++msgstr "S'ha produït un error en el cantó del servidor." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" +-msgstr "" ++msgstr "S'ha produït un error en el cantó del servidor en '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:74 + msgid "An error occurred while connecting to the server" +-msgstr "" ++msgstr "S'ha produït un error mentre es connectava amb el servidor" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:77 + #, c-format + msgid "An error occurred while connecting to '%s'" +-msgstr "" ++msgstr "S'ha produït un error mentre es connectava a '%s'" + + #: ../src/plugins/https-utils.c:97 + #, c-format +@@ -1463,16 +1912,18 @@ msgstr "El certificat de l'emissor no és vàlid: «%s»." + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "El certificat està firmat per un emissor que no és de confiança: «%s»." ++msgstr "" ++"El certificat està firmat per un emissor que no és de confiança: «%s»." + + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +-msgstr "" ++msgstr "El certificat remot ha expirat." + + #: ../src/plugins/https-utils.c:110 + #, c-format +@@ -1494,23 +1945,27 @@ msgstr "" + msgid "Can't resolve host name '%s'. NSS error %d." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. Host exists, but has neither IPv4 nor IPv6?? + #: ../src/plugins/https-utils.c:203 + #, c-format + msgid "Can't resolve host name '%s'." +-msgstr "" ++msgstr "No es pot resoldre el nom de l'equip '%s'." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." +-msgstr "" ++msgstr "Error en establir el mode de bloqueig del sòcol." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:213 + msgid "Failed to wrap TCP socket by SSL." +-msgstr "" ++msgstr "Error en recobrir el sòcol TCP amb SSL." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." +-msgstr "" ++msgstr "Error en habilitar la salutació del client per al sòcol SSL." + + #: ../src/plugins/https-utils.c:220 + msgid "Failed to enable SSL3." +@@ -1520,14 +1975,16 @@ msgstr "" + msgid "Failed to enable TLS." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +-msgstr "" ++msgstr "Error en establir la URL al sòcol SSL." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" +-msgstr "" ++msgstr "No es pot connectar a '%s'" + + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +@@ -1537,18 +1994,20 @@ msgstr "" + msgid "Failed to set handshake callback." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." +-msgstr "" ++msgstr "Error en resetejar la salutació." + + #: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." +-msgstr "" ++msgstr "Error en tancar el sòcol SSL." + + #: ../src/plugins/https-utils.c:332 + #, c-format +@@ -1564,44 +2023,56 @@ msgstr "" + msgid "Malformed chunked response." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." +-msgstr "" ++msgstr "Error en inicialitzar NSS." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." +-msgstr "" ++msgstr "Error en inicialitzar el mòdul de seguretat." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." +-msgstr "" ++msgstr "Error en aturar NSS." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/bodhi.c:375 + msgid "List of bug ids" +-msgstr "" ++msgstr "Llistat dels id dels errors" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/bodhi.c:376 + msgid "Specify a bodhi server url" +-msgstr "" ++msgstr "Especifica un servidor bodhi" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/bodhi.c:377 + msgid "Specify a release" +-msgstr "" ++msgstr "Especifica un llançament" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/bodhi.c:382 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" + msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Cerca si hi ha actualitzacions en el servidor bodhi" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +-msgstr "" ++msgstr "S'està cercant si hi ha actualitzacions" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/bodhi.c:440 + msgid "No updates for this package found" +-msgstr "" ++msgstr "No s'han trobat actualitzacions per aquest paquet" + + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 +@@ -1611,61 +2082,76 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." + msgstr "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"Escaneja els fitxers per a dividir els missatges oop. Pot imprimir-los i/o " ++"eliminar-los." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +-msgstr "" ++msgstr "Imprimeix els oop que s'han trobat" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" +-msgstr "" ++msgstr "Elimina els fitxers amb oop trobats" + + #: ../src/cli/abrt-cli-core.c:91 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "" ++msgstr "Ús: abrt-cli [--version] COMMAND [DIR]..." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "Llista els problemes [en DIRs]" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +-msgstr "" ++msgstr "Elimina el directori del problema DIR" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" +-msgstr "" ++msgstr "Analitza i informa de les dades del problema en DIR" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" +-msgstr "" ++msgstr "Imprimeix informació quant a DIR" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" +-msgstr "" ++msgstr "Imprimeix el compte de les fallides recents" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "Processa múltiples problemes" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "" ++msgstr "Vegeu 'abrt-cli COMMAND --help' per a més informació" + + #: ../src/cli/list.c:127 + #, c-format +@@ -1673,108 +2159,142 @@ msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +-msgstr "" ++msgstr "& list [opcions] [DIR]..." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "Llista únicament els problemes que s'hagin informat" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. deprecate -d option with --pretty=full + #: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" +-msgstr "" ++msgstr "Mostra informes detallats" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "" ++"Llista únicament els problemes que siguin més recents que la marca de temps " ++"especificada" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "" ++"Llista únicament els problemes anteriors a la marca de temps especificada" + + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +-msgstr "" ++msgstr "& info [opcions] DIR..." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" +-msgstr "" ++msgstr "El text que sigui més gran que aquest es mostrarà abreujat" + + #: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/status.c:70 + msgid "& status [DIR]..." +-msgstr "" ++msgstr "& status [DIR]..." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/status.c:78 + msgid "Print only the problem count without any message" +-msgstr "" ++msgstr "Imprimeix únicament el compte dels problemes sense cap missatge" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/status.c:79 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" ++"Imprimeix únicament els problemes que siguin més recents que la marca de " ++"temps especificada" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../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 ha detectat %u problem[a|es]. Per a més informació executeu: abrt-cli " ++"list%s\n" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& report [opcions] DIR..." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "Elimina PROBLEM_DIR després d'informar" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "S'està eliminant '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Accions: remove(rm), info(i), skip(s):" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Accions: remove(rm), report(e), info(i), skip(s):" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "S'està informat '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "Per al següent problema premeu RETORN:" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "Sense l'argument --since, s'itera sobre tots els problemes detectats." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" + msgstr "" ++"Selecciona únicament els problemes que es van detectar després de la marca " ++"de temps" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" + msgstr "" ++"Envia el bolcatge de memòria a un servidor remot de resseguiment per a " ++"l'anàlisi o per a la realització de l'anàlisis local si es produeix un error " ++"en el servidor remot de l'anàlisi" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1782,8 +2302,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1802,56 +2322,73 @@ msgid "" + "time, and take up disk space." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +-msgstr "" ++msgstr "Recull la configuració del GConf" + + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/collect_GConf.xml.in.h:3 + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." + msgstr "" ++"Executa gconftool-2 --recursive-list /apps/executable i desa-ho com element " ++"de 'gconf_subtree'." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +-msgstr "" ++msgstr "Recull els fitxers de configuració del vim de tot el sistema" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" +-msgstr "" ++msgstr "Desa /etc/vimrc i /etc/gvimrc" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../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 "" ++"Comprova si hi ha els fitxers vimrc i gvimrc en /etc i els desa com " ++"system_vimrc i system_gvimrc, respectivament." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +-msgstr "" ++msgstr "Recull els vostres fitxers de configuració del vim" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" +-msgstr "" ++msgstr "Desa .vimrc i .gvimrc del vostre directori d'inici" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" ++"Comprova si hi ha el .vimrc i el .gvimrc en el vostre directori d'usuari i " ++"els desa com user_vimrc i user_gvimrc, respectivament." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +-msgstr "" ++msgstr "Publica l'informe" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/post_report.xml.in.h:2 + msgid "Executed after the reporting is finished" +-msgstr "" ++msgstr "S'ha executat després que l'informador hagi finalitzat" + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/post_report.xml.in.h:3 + msgid "Used for updating of the databases" +-msgstr "" ++msgstr "Utilitzat per a l'actualització de les bases de dades" +diff --git a/po/cs.po b/po/cs.po +index 9f19cf4..bc2e0ad 100644 +--- a/po/cs.po ++++ b/po/cs.po +@@ -10,17 +10,19 @@ + # zdenek , 2013 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Czech (http://www.transifex.com/projects/p/fedora-abrt/language/cs/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Czech (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/cs/)\n" + "Language: cs\n" + "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -93,7 +95,9 @@ msgstr "Nemohu zavřít oznámení: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -109,7 +113,11 @@ msgstr "Applet upozorňující uživatele na chyby nalezené démonem ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "Jiří Moskovčák \nRadek Vokál \nNikola Pajkovsky \nPetr Písař " ++msgstr "" ++"Jiří Moskovčák \n" ++"Radek Vokál \n" ++"Nikola Pajkovsky \n" ++"Petr Písař " + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -132,6 +140,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Otevřít" +@@ -146,6 +155,7 @@ msgstr "Vyskytl se známý problém" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Nahlásit" +@@ -195,7 +205,10 @@ 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" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Applet, který uživatele upozorní, když ABRT detekuje nový problém\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -216,10 +229,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -233,15 +245,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -306,7 +318,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nDotáže databázi balíčků a uloží jméno balíčku a komponenty" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Dotáže databázi balíčků a uloží jméno balíčku a komponenty" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -369,7 +384,9 @@ msgstr "Nemohu zpřístupnit problém ke změně" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Změna vlastníka adresáře selhala. Zkontrolujte logy systému pro více informací." ++msgstr "" ++"Změna vlastníka adresáře selhala. Zkontrolujte logy systému pro více " ++"informací." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -395,7 +412,9 @@ msgstr "Nemohu smazat prvek '%s' z adresáře problému '%s'" + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "Jméno '%s' bylo ztraceno, zkontrolujte prosím, zda-li jiná služba vlastnící toto jméno neběží.\n" ++msgstr "" ++"Jméno '%s' bylo ztraceno, zkontrolujte prosím, zda-li jiná služba vlastnící " ++"toto jméno neběží.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -409,10 +428,10 @@ msgstr "Tento program musí být spuštěn pod root uživatelem." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -464,19 +483,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -594,7 +666,9 @@ msgstr "Nemohu vytvořit dočasný soubor '%s'" + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-msgstr "Nemohu zapisovat do '%s'. Problém '%s' nebude odstraněn z ignorovaných problémů '%s'" ++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:264 +@@ -608,11 +682,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [volby] -d DIR\n\nAnalyzuje výpis volání, generuje duplikát výběru sdělení, hodnotí výpis volání\na identifikuje funkci selhání z adresáře problému DIR" ++msgstr "" ++"& [volby] -d DIR\n" ++"\n" ++"Analyzuje výpis volání, generuje duplikát výběru sdělení, hodnotí výpis " ++"volání\n" ++"a identifikuje funkci selhání z adresáře problému DIR" + ++#. + #. * 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" +@@ -627,7 +708,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nVypočítá a uloží UUID obrazu paměti v adresáři problému DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Vypočítá a uloží UUID obrazu paměti v adresáři problému DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -653,14 +737,20 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\nVypočítá a uloží UUID a DUPHASH pro adresář problému oops DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Vypočítá a uloží UUID a DUPHASH pro adresář problému 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\nVypočítá a uloží UUID a DUPHASH pro adresář problému xorg DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Vypočítá a uloží UUID a DUPHASH pro adresář problému xorg DIR" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -672,7 +762,9 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nSpočítá a uloží UUID a DUPHASH výpisu pádu pythonu" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"Spočítá a uloží UUID a DUPHASH výpisu pádu pythonu" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -687,8 +779,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -711,7 +802,11 @@ msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [volby] -d DIR\n\nAnalyzuje obraz paměti v adresáři problému DIR, generuje a uloží výpis volání" ++msgstr "" ++"& [volby] -d DIR\n" ++"\n" ++"Analyzuje obraz paměti v adresáři problému DIR, generuje a uloží výpis " ++"volání" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -723,6 +818,7 @@ 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" +@@ -761,7 +857,8 @@ msgstr "Činnost ukončena na příkaz uživatele" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -771,7 +868,8 @@ msgid "" + " -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" ++" --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" +@@ -785,7 +883,9 @@ msgstr "Nelze otevřít {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Obraz paměti odkazuje na {0} souborů ladicích údajů, {1} z nich nejsou nainstalovány" ++msgstr "" ++"Obraz paměti odkazuje na {0} souborů ladicích údajů, {1} z nich nejsou " ++"nainstalovány" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -808,21 +908,33 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Souhlasíte s odesláním obrazu paměti? (ten může obsahovat citlivá data). Pokud bude vaše odpověď 'Ne', zásobník volání se vygeneruje lokálně. (to může mít za následek stažení velkého množství dat)." ++msgstr "" ++"Souhlasíte s odesláním obrazu paměti? (ten může obsahovat citlivá data). " ++"Pokud bude vaše odpověď 'Ne', zásobník volání se vygeneruje lokálně. (to " ++"může mít za následek stažení velkého množství dat)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "Přejete si vygenerovat lokální zásobník volání? (to může mít za následek stažení velkého množství dat, ale report problému nemůže bez zásobníku volání pokračovat)." ++msgstr "" ++"Přejete si vygenerovat lokální zásobník volání? (to může mít za následek " ++"stažení velkého množství dat, ale report problému nemůže bez zásobníku " ++"volání pokračovat)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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\nMaže adresáře (-d) nebo soubory (-f) problému v DIR dokud jsou menší než SIZE.\nFILE je zachován (nesmazán)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Maže adresáře (-d) nebo soubory (-f) problému v DIR dokud jsou menší než " ++"SIZE.\n" ++"FILE je zachován (nesmazán)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -991,7 +1103,10 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nSleduje soubor logů FILE, spustí PROG pokud soubor roste nebo je nahrazen" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Sleduje soubor logů FILE, spustí PROG pokud soubor roste nebo je nahrazen" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1014,7 +1129,9 @@ msgstr "" + 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." ++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:153 + #, c-format +@@ -1034,13 +1151,15 @@ 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: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: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" ++msgstr "" ++"Stejné jako -d DumpLocation, DumpLocation je specifikováno v abrt.conf" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1076,7 +1195,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nExtrahuje pád Xorg ze souboru FILE (nebo standardního vstupu)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extrahuje pád Xorg ze souboru FILE (nebo standardního vstupu)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1090,10 +1212,13 @@ msgstr "Vytvoř adresář problému v DIR pro každý nalezený pád" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Stopovací server nemůže být využit, protože je záznam příliš velký. Zkuste použít lokální stopování." ++msgstr "" ++"Stopovací server nemůže být využit, protože je záznam příliš velký. Zkuste " ++"použít lokální stopování." + + #. 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,10 +1241,10 @@ msgstr "Selhalo odeslání hlavičky délky %d: NSS chyba %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Neočekávaná HTTP odpověd od serveru: %d\n" + "%s" +-msgstr "Neočekávaná HTTP odpověd od serveru: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1153,14 +1278,18 @@ msgstr "Server odmítl požadavek." + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "'%s' musí být regulérním souborem tak, aby se použil server pro zpětné stopování." ++msgstr "" ++"'%s' musí být regulérním souborem tak, aby se použil server pro zpětné " ++"stopování." + + #: ../src/plugins/abrt-retrace-client.c:514 + #, c-format + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Velikost záznamu selhání je %lld bajtů, avšak stopovací server akceptuje záznamy do velikosti %lld bajtů." ++msgstr "" ++"Velikost záznamu selhání je %lld bajtů, avšak stopovací server akceptuje " ++"záznamy do velikosti %lld bajtů." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1188,7 +1317,9 @@ msgstr "Příprava archivu pro odeslání" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Velikost archivu je %lld bajtů, ale stopovací server akceptuje maximálně %lld bajtů." ++msgstr "" ++"Velikost archivu je %lld bajtů, ale stopovací server akceptuje maximálně " ++"%lld bajtů." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1207,7 +1338,8 @@ msgstr "Odesílání %d megabajtů\n" + #: ../src/plugins/abrt-retrace-client.c:675 + #, c-format + msgid "Uploading %lld bytes\n" +-msgstr "Odesílání %lld bajtů\n\n" ++msgstr "Odesílání %lld bajtů\n" ++"\n" + + #: ../src/plugins/abrt-retrace-client.c:699 + #, c-format +@@ -1231,13 +1363,16 @@ msgstr "Uspěšně nahráno" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Váš adresář problémů je poškozený and nemůže být zpracován retrace serverem." ++msgstr "" ++"Váš adresář problémů je poškozený and nemůže být zpracován retrace serverem." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Archiv obsahuje špatné soubory (mohou to být symbolické odkazy), takže nemůže být zpracován." ++msgstr "" ++"Archiv obsahuje špatné soubory (mohou to být symbolické odkazy), takže " ++"nemůže být zpracován." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1253,10 +1388,10 @@ msgstr "Stopovací úloha spuštěna" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" ++"Task Password: %s\n" ++msgstr "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Task Id: %s\nTask Password: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1264,10 +1399,10 @@ msgstr "Neplatná odpověď serveru: chybí X-Task-Status." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Task Status: %s\n" + "%s\n" +-msgstr "Task Status: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1280,7 +1415,9 @@ msgstr "Selhalo odeslání HTTP hlavičky délky %d: NSS chyba %d." + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Stopování skončilo chybou. Opakujte akci později. Pokud problém přetrvá, nahlašte jej prosím." ++msgstr "" ++"Stopování skončilo chybou. Opakujte akci později. Pokud problém přetrvá, " ++"nahlašte jej prosím." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1294,7 +1431,9 @@ msgstr "povolit nezabezpečené připojení k retrace serveru" + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "Nezjišťuj zda-li je stopovací server schopen zprocesovat dané balíčky před odesláním archívu." ++msgstr "" ++"Nezjišťuj zda-li je stopovací server schopen zprocesovat dané balíčky před " ++"odesláním archívu." + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1376,14 +1515,18 @@ msgstr "Lokální GNU Debugger" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Stahování balíčku debuginfo a lokální generování backtrace za použití GDB" ++msgstr "" ++"Stahování balíčku debuginfo a lokální generování backtrace za použití GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Potřebuje stáhnout balíčky s ladicími údaji, což může trvat značnou dobu a zabrat jistý prostor na disku. Avšak, na rozdíl od RetraceServeru, neodesílá obrazy paměti na vzdálené stroje." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Potřebuje stáhnout balíčky s ladicími údaji, což může trvat značnou dobu a " ++"zabrat jistý prostor na disku. Avšak, na rozdíl od RetraceServeru, neodesílá " ++"obrazy paměti na vzdálené stroje." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1391,12 +1534,18 @@ msgstr "Odešle obraz paměti k analýze na vzdálený retrace server" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Nahraje obraz paměti na server, který vytvoří výpis volání a vrátí jej. Výhody: Netřeba stahovat balíčky s ladicími údaji. Databáze retrace serveru již obsahuje většinu těchto balíčků. Retrace server může vytvořit lepší výpis volání.Nevýhody: obraz paměti, který nahrajete na server, obsahuje všechny údaje z havarovaného programu včetně soukromých údajů, byly-li přítomny." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Nahraje obraz paměti na server, který vytvoří výpis volání a vrátí jej. " ++"Výhody: Netřeba stahovat balíčky s ladicími údaji. Databáze retrace serveru " ++"již obsahuje většinu těchto balíčků. Retrace server může vytvořit lepší " ++"výpis volání.Nevýhody: obraz paměti, který nahrajete na server, obsahuje " ++"všechny údaje z havarovaného programu včetně soukromých údajů, byly-li " ++"přítomny." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1421,10 +1570,13 @@ msgstr "Použít nezabezpečeného připojení?" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "K povolení nezabezpečeného spojení použijte pole Nezabezpečený" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"K povolení nezabezpečeného spojení použijte pole Nezabezpečený" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1438,7 +1590,9 @@ msgstr "Uložit relevantní řádky ze souboru ~/.xsession-errors" + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Prohlédnout soubor ~/.xsession-errors a uložit řádky, které obsahují jméno spustitelného souboru. Výsledek je uložen jako položka 'xsession_errors'." ++msgstr "" ++"Prohlédnout soubor ~/.xsession-errors a uložit řádky, které obsahují jméno " ++"spustitelného souboru. Výsledek je uložen jako položka 'xsession_errors'." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1596,7 +1750,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]...\n\nHledej aktualizace na serveru bodhi" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]...\n" ++"\n" ++"Hledej aktualizace na serveru bodhi" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1614,9 +1771,11 @@ msgstr "Lokální verze balíčku je novější než verze dostupná v aktualiza + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Existuje aktualizace, která by mohla opravit váš problém. Můžete ji nainstalovat spuštěním: %s. Přejete si pokračovat s reportováním problému?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Existuje aktualizace, která by mohla opravit váš problém. Můžete ji " ++"nainstalovat spuštěním: %s. Přejete si pokračovat s reportováním problému?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" +@@ -1700,7 +1859,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1777,7 +1937,9 @@ msgstr "" + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Odešle obraz paměti k analýze na vzdálený retrace server, nebo spustí lokální analýzu pokud vzdálená analýza selže" ++msgstr "" ++"Odešle obraz paměti k analýze na vzdálený retrace server, nebo spustí " ++"lokální analýzu pokud vzdálená analýza selže" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1785,10 +1947,17 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Odesílá obraz paměti na server, který vygeneruje backtrace a vrátí jej. Pokud si uživatel nepřeje odeslat svůj obraz paměti, událost provede lokální analýzu. Lokální analýza probíhá i v případě selhání vzdálené analýzy. Klady: Odpadá nutnost stahovat ladící údaje. Databáze ladících údajů je mnohem více kompletní přímo na serveru pro zpětné stopování. Ten je schopen generovat lepší backtrace. Zápory: odeslaný obraz paměti obsahuje všechna data selhaného programu včetně vašich soukromých dat, pokud zde nějaká jsou." ++msgstr "" ++"Odesílá obraz paměti na server, který vygeneruje backtrace a vrátí jej. " ++"Pokud si uživatel nepřeje odeslat svůj obraz paměti, událost provede lokální " ++"analýzu. Lokální analýza probíhá i v případě selhání vzdálené analýzy. Klady:" ++" Odpadá nutnost stahovat ladící údaje. Databáze ladících údajů je mnohem " ++"více kompletní přímo na serveru pro zpětné stopování. Ten je schopen " ++"generovat lepší backtrace. Zápory: odeslaný obraz paměti obsahuje všechna " ++"data selhaného programu včetně vašich soukromých dat, pokud zde nějaká jsou." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1797,13 +1966,16 @@ msgstr "Analyzovat jádro VM" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Nainstalujte balíček kernel debuginfo a vygenerujte kernel log a oops zprávu" ++msgstr "" ++"Nainstalujte balíček kernel debuginfo a vygenerujte kernel log a oops zprávu" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Je třeba nainstalovat ladící balíčky jádra, což může chvíli trvat a zabere část místa na pevném disku." ++msgstr "" ++"Je třeba nainstalovat ladící balíčky jádra, což může chvíli trvat a zabere " ++"část místa na pevném disku." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1817,7 +1989,9 @@ msgstr "Uložit konfiguraci z adresáře aplikace GConf" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Spustí gconftool-2 --recursive-list /apps/executable a uloží jako element 'gconf_subtree'." ++msgstr "" ++"Spustí gconftool-2 --recursive-list /apps/executable a uloží jako element " ++"'gconf_subtree'." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1831,7 +2005,9 @@ msgstr "Uložit /etc/vimrc a /etc/gvimrc" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Zkontroluje existenci souborů \"vimrc\" a \"gvimrc\" v adresáři \"/etc\" a uloží je jako \"system_vimrc\" resp. \"system_gvimrc\"" ++msgstr "" ++"Zkontroluje existenci souborů \"vimrc\" a \"gvimrc\" v adresáři \"/etc\" a " ++"uloží je jako \"system_vimrc\" resp. \"system_gvimrc\"" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1843,9 +2019,11 @@ msgstr "Ulož \".vimrc\" a \".gvimrc\" z domácího adresáře" + + #: ../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 "Zkontroluje existenci souborů \".vimrc\" a \".gvimrc\" v domácím adresáři a uloží je jako \"user_vimrc\" resp. \"user_gvimrc\"" ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Zkontroluje existenci souborů \".vimrc\" a \".gvimrc\" v domácím adresáři a " ++"uloží je jako \"user_vimrc\" resp. \"user_gvimrc\"" + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/cy.po b/po/cy.po +index e053817..aeb3a60 100644 +--- a/po/cy.po ++++ b/po/cy.po +@@ -5,17 +5,20 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Welsh (http://www.transifex.com/projects/p/fedora-abrt/language/cy/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Welsh (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/cy/)\n" + "Language: cy\n" +-"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" ++"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " ++"11) ? 2 : 3;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +91,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +132,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +147,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +218,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +234,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +410,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +465,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +664,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +743,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +778,7 @@ 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" +@@ -756,7 +817,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +828,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +878,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1093,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1154,7 @@ 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,8 +1177,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1313,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1323,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1439,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1449,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1479,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1672,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1758,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1844,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1902,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/da.po b/po/da.po +index 0eb0ed3..d79e6a2 100644 +--- a/po/da.po ++++ b/po/da.po +@@ -6,17 +6,19 @@ + # Jiří Moskovčák , 2011 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Danish (http://www.transifex.com/projects/p/fedora-abrt/language/da/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Danish (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/da/)\n" + "Language: da\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -89,7 +91,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -101,11 +105,17 @@ msgstr "Advarsel" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "Notificeringspanelprogram som giver brugere besked om problemer opdaget af ABRT" ++msgstr "" ++"Notificeringspanelprogram som giver brugere besked om problemer opdaget af " ++"ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "Kris Thomsen\n\nDansk-gruppen \nMere info: http://www.dansk-gruppen.dk" ++msgstr "" ++"Kris Thomsen\n" ++"\n" ++"Dansk-gruppen \n" ++"Mere info: http://www.dansk-gruppen.dk" + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -128,6 +138,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -142,6 +153,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Rapportér" +@@ -191,7 +203,11 @@ 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" ++msgstr "" ++"& [-v] [MAPPE]...\n" ++"\n" ++"Panelprogram som giver brugeren besked, når nye problemet er fundet af " ++"ABRT\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -212,10 +228,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +244,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -302,7 +317,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c KONFIGFIL] -d MAPPE\n\nForespørg pakkedatabase og gem pakke og komponent-navn" ++msgstr "" ++"& [-v] [-c KONFIGFIL] -d MAPPE\n" ++"\n" ++"Forespørg pakkedatabase og gem pakke og komponent-navn" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -405,10 +423,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -460,19 +478,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -606,9 +677,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -668,7 +741,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d MAPPE\n\nUdregner og gemmer UUID og DUPHASH af python-nedbrudsdumps" ++msgstr "" ++"& [-v] -d MAPPE\n" ++"\n" ++"Udregner og gemmer UUID og DUPHASH af python-nedbrudsdumps" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -683,8 +759,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -719,6 +794,7 @@ 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" +@@ -757,7 +833,8 @@ msgstr "Afslutter på brugerkommando" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +844,8 @@ msgid "" + " -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" ++" --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" +@@ -816,7 +894,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1030,6 +1109,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1086,10 +1166,13 @@ msgstr "" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Sporingsserveren kan ikke bruges fordi nedbruddet er for stort. Prøv lokal sporing." ++msgstr "" ++"Sporingsserveren kan ikke bruges fordi nedbruddet er for stort. Prøv lokal " ++"sporing." + + #. 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 +@@ -1112,10 +1195,10 @@ msgstr "Kunne ikke sende HTTP-header af længde %d: NSS-fejl %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Uventet HTTP-svar fra server: %d\n" + "%s" +-msgstr "Uventet HTTP-svar fra server: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1156,7 +1239,9 @@ msgstr "" + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Størrelsen af dit nedbrud er %lld byte, men sporingsserveren accepterer kun nedbrud mindre end eller lig med %lld byte." ++msgstr "" ++"Størrelsen af dit nedbrud er %lld byte, men sporingsserveren accepterer kun " ++"nedbrud mindre end eller lig med %lld byte." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1184,7 +1269,9 @@ msgstr "Forbereder et arkiv til oploadning" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Størrelsen af dit arkiv er %lld byte, men sporingsserveren accepterer kun arkiv mindre end eller lig med %lld byte." ++msgstr "" ++"Størrelsen af dit arkiv er %lld byte, men sporingsserveren accepterer kun " ++"arkiv mindre end eller lig med %lld byte." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1227,13 +1314,16 @@ msgstr "Opload successfuld" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Din problemmappe er korrupt og kan ikke behandles af sporingsserveren." ++msgstr "" ++"Din problemmappe er korrupt og kan ikke behandles af sporingsserveren." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Arkivet indeholder potentielt farlige filer (f.eks. symbolske henvisninger) og kan derfor ikke behandles." ++msgstr "" ++"Arkivet indeholder potentielt farlige filer (f.eks. symbolske henvisninger) " ++"og kan derfor ikke behandles." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1249,10 +1339,10 @@ msgstr "Sporingsjob startet" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Opgave-id: %s\nOpgaveadgangskode: %s\n" ++msgstr "Opgave-id: %s\n" ++"Opgaveadgangskode: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1260,10 +1350,10 @@ msgstr "Ugyldigt svar fra server: mangler X-Task-Status." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Opgavestatus: %s\n" + "%s\n" +-msgstr "Opgavestatus: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1276,7 +1366,9 @@ msgstr "Kunne ikke sende HTTP-header med længden %d: NSS-fejl %d." + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Sporing mislykkedes. Prøv igen senere og hvis problemet fortsætter, må du meget gerne rapportere dette problem." ++msgstr "" ++"Sporing mislykkedes. Prøv igen senere og hvis problemet fortsætter, må du " ++"meget gerne rapportere dette problem." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1377,9 +1469,11 @@ msgstr "Hent debuginfo-pakker og generér backtrace lokalt med GDB" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Skal hente debuginfo-pakker, som kan tage ret lang tid og optage diskplads. Men som, ulig RetraceServer, ikke sender kernedump til fjernmaskiner." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Skal hente debuginfo-pakker, som kan tage ret lang tid og optage diskplads. " ++"Men som, ulig RetraceServer, ikke sender kernedump til fjernmaskiner." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1387,12 +1481,18 @@ msgstr "Send kerne-dump til fjern-retraceserver for analysering" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Oploader kernedump til en server, som genererer backtracen og returnerer den. Fordele: ingen grund til at hente fejlsøgningsinfo. Retraceserverens database over fejlsøgningsinformationer er mere komplet. Retraceserveren genererer muligvis bedre backtraces. Ulemper: kernedumpninger du oploader indeholder alle data fra det nedbrudte program, inklusiv eventuelle private data." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Oploader kernedump til en server, som genererer backtracen og returnerer den." ++" Fordele: ingen grund til at hente fejlsøgningsinfo. Retraceserverens " ++"database over fejlsøgningsinformationer er mere komplet. Retraceserveren " ++"genererer muligvis bedre backtraces. Ulemper: kernedumpninger du oploader " ++"indeholder alle data fra det nedbrudte program, inklusiv eventuelle private " ++"data." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1417,10 +1517,13 @@ msgstr "Om der skal bruges usikker forbindelse eller ej" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Skriv \"insecure\" for at tillade en usikker forbindelse <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(advarsel)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Skriv \"insecure\" for at tillade en usikker forbindelse <a href=\"https:/" ++"/fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(advarsel)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1434,7 +1537,9 @@ msgstr "Gem relevante linjer fra filen ~/.xsession-errors" + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Skanner gennem filen ~/.xsession-errors og gemmer de linjer som indeholder kørbares navne. Resultatet bliver gemt som \"xsession_errors\"-element." ++msgstr "" ++"Skanner gennem filen ~/.xsession-errors og gemmer de linjer som indeholder " ++"kørbares navne. Resultatet bliver gemt som \"xsession_errors\"-element." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1610,8 +1715,8 @@ msgstr "Lokal version af pakken er nyere end tilgængelige opdateringer" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1696,7 +1801,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1781,8 +1887,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1799,7 +1905,9 @@ msgstr "Installér kerne-debuginfo pakkerne, generér kernelog og oops-besked" + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Mangler at installere kerne debuginfo-pakker, kan tage ret lang tid og optage diskplads." ++msgstr "" ++"Mangler at installere kerne debuginfo-pakker, kan tage ret lang tid og " ++"optage diskplads." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1813,7 +1921,9 @@ msgstr "Gem konfiguration fra programmets GConf-mappe" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Kører gconftool-2 --recursive-list /apps/executable og gemmer det som \"gconf_subtree\"-element." ++msgstr "" ++"Kører gconftool-2 --recursive-list /apps/executable og gemmer det som " ++"\"gconf_subtree\"-element." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1827,7 +1937,9 @@ msgstr "Gem /etc/vimrc og /etc/gvimrc" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Kontrollér om der er en vimrc og gvimrc i /etc og gem dem som system_vimrc system_gvimrc." ++msgstr "" ++"Kontrollér om der er en vimrc og gvimrc i /etc og gem dem som system_vimrc " ++"system_gvimrc." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1839,9 +1951,11 @@ msgstr "Gem .vimrc og .gvimrc fra din hjemmemappe" + + #: ../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 "Kontrollér om der er en .vimrc og .gvimrc i din hjemmemappe og gem dem som user_vimrc og user_gvimrc." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Kontrollér om der er en .vimrc og .gvimrc i din hjemmemappe og gem dem som " ++"user_vimrc og user_gvimrc." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/de.po b/po/de.po +index 983b421..ba82218 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -15,17 +15,19 @@ + # Roman Spirgi , 2011-2012 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: German (http://www.transifex.com/projects/p/fedora-abrt/language/de/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: German (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/de/)\n" + "Language: de\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -40,15 +42,21 @@ 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" +-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" ++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?" ++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?" ++msgstr "" ++"Möchten Sie die automatische Übermittlung von anonymen Absturzberichten " ++"aktivieren?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -98,10 +106,18 @@ msgstr "Benachrichtigung kann nicht geschlossen werden: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "Sie sind im Begriff, Benachrichtigungen für ein bestimmtes Problem zu unterdrücken. Sie werden in Zukunft keine Benachrichtigungen für dieses Problem erhalten, ABRT wird es jedoch weiterhin aufzeichnen und Sie haben die Möglichkeit, das Problem über die ABRT-Oberfläche zu berichten.\n\nMöchten Sie fortfahren?" ++msgstr "" ++"Sie sind im Begriff, Benachrichtigungen für ein bestimmtes Problem zu " ++"unterdrücken. Sie werden in Zukunft keine Benachrichtigungen für dieses " ++"Problem erhalten, ABRT wird es jedoch weiterhin aufzeichnen und Sie haben " ++"die Möglichkeit, das Problem über die ABRT-Oberfläche zu berichten.\n" ++"\n" ++"Möchten Sie fortfahren?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -110,11 +126,15 @@ msgstr "Warnung" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "Info-Applet, das Benutzer über die von ABRT entdeckten Probleme benachrichtigt" ++msgstr "" ++"Info-Applet, das Benutzer über die von ABRT entdeckten Probleme " ++"benachrichtigt" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "Mario Blättermann\nFabian Affolter\nRoman Spirgi" ++msgstr "Mario Blättermann\n" ++"Fabian Affolter\n" ++"Roman Spirgi" + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -137,6 +157,7 @@ msgid "Ignore forever" + msgstr "Für immer ignorieren" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Öffnen" +@@ -151,6 +172,7 @@ msgstr "Ein bekannter Fehler ist aufgetreten" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Melden" +@@ -193,14 +215,20 @@ msgstr "Nichtblockier-Modus kann für gio channel nicht gesetzt werden: %s" + 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" ++msgstr "" ++"Es konnte keine Verbindung mit dem Sitzungsmanager aufgebaut werden: '%s', " ++"eine Benachrichtigung wird beim nächsten anmelden angezeigt" + + #: ../src/applet/applet.c:1635 + 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" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Applet zur Benachrichtigung des Benutzers, wenn neue Abstürze durch ABRT " ++"entdeckt werden\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -221,11 +249,15 @@ msgstr "Verkürzte Berichterstattung (silent)" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "Die Coredump-Datei ist notwendig zur Generierung eines Stack Trace – eine Operation, die viel Zeit und Speicherplatz in Anspruch nimmt. ABRT bietet einen Service, der den Stack Trace aus dem Coredump erstellt, allerdings müssen Sie den Coredump für diesen Service hochladen. Ist diese Option deaktiviert, lädt ABRT den Coredump ohne Nachfrage hoch." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"Die Coredump-Datei ist notwendig zur Generierung eines Stack Trace – eine " ++"Operation, die viel Zeit und Speicherplatz in Anspruch nimmt. ABRT bietet " ++"einen Service, der den Stack Trace aus dem Coredump erstellt, allerdings " ++"müssen Sie den Coredump für diesen Service hochladen. Ist diese Option " ++"deaktiviert, lädt ABRT den Coredump ohne Nachfrage hoch." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -233,28 +265,45 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT speichert Fehlerdaten in Verzeichnissen. Wenn ABRT ein schreibbares Verzeichnis benötigt, wird das Verzeichnis von seinem Speicherort in Ihr Benutzerverzeichnis verlegt. Ist diese Option deaktiviert, verlegt ABRT das Fehlerverzeichnis ohne Nachfrage." ++msgstr "" ++"ABRT speichert Fehlerdaten in Verzeichnissen. Wenn ABRT ein schreibbares " ++"Verzeichnis benötigt, wird das Verzeichnis von seinem Speicherort in Ihr " ++"Benutzerverzeichnis verlegt. Ist diese Option deaktiviert, verlegt ABRT das " ++"Fehlerverzeichnis ohne Nachfrage." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport ist eine kurze und vollständig anonyme Beschreibung eines Fehlers. ABRT nutzt uReports für eine schnelle und globale Erkennung von Duplikaten. In der Standardkonfiguration wird ein uReport zu Beginn der Berichterstattung gesendet. Ist diese Option aktiviert, werden uReports automatisch gesendet, sobald ein Fehler erkannt wird." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport ist eine kurze und vollständig anonyme Beschreibung eines Fehlers. " ++"ABRT nutzt uReports für eine schnelle und globale Erkennung von Duplikaten. " ++"In der Standardkonfiguration wird ein uReport zu Beginn der " ++"Berichterstattung gesendet. Ist diese Option aktiviert, werden uReports " ++"automatisch gesendet, sobald ein Fehler erkannt wird." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "Ist diese Option aktiviert, wird die Berichterstattung, die durch einen Klick auf die Schaltfläche »Melden« im Benachrichtigungsdialog begonnen wurde, nach dem Senden des uReports unterbrochen. Sie können jederzeit den standardmäßigen Fehlerbrowser verwenden, um einen vollständigen Bericht einzureichen." ++msgstr "" ++"Ist diese Option aktiviert, wird die Berichterstattung, die durch einen " ++"Klick auf die Schaltfläche »Melden« im Benachrichtigungsdialog begonnen " ++"wurde, nach dem Senden des uReports unterbrochen. Sie können jederzeit den " ++"standardmäßigen Fehlerbrowser verwenden, um einen vollständigen Bericht " ++"einzureichen." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "Ist diese Option aktiviert, zeigt ABRT keine Benachrichtigungen über gemeldete Fehler. Dies ist nur wirksam, wenn die verkürzte Berichterstattung aktiviert ist." ++msgstr "" ++"Ist diese Option aktiviert, zeigt ABRT keine Benachrichtigungen über " ++"gemeldete Fehler. Dies ist nur wirksam, wenn die verkürzte Berichterstattung " ++"aktiviert ist." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -264,7 +313,10 @@ msgstr "Vor dem Hochladen des Coredumps nachfragen" + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "Ist diese Option aktiviert, erstellt ABRT immer Fehlerberichte mit eingeschränktem Zugriff, falls möglicherweise sensible Daten entdeckt wurden." ++msgstr "" ++"Ist diese Option aktiviert, erstellt ABRT immer Fehlerberichte mit " ++"eingeschränktem Zugriff, falls möglicherweise sensible Daten entdeckt wurden." ++"" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -279,7 +331,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "Beim Herunterfahren des Rechners oder beim Abmelden des Benutzers können gegebenenfalls unvollständige Fehler erkannt werden. Um nur nützliche Fehlerberichte einzureichen, lässt ABRT das Melden dieser Fehler nicht zu." ++msgstr "" ++"Beim Herunterfahren des Rechners oder beim Abmelden des Benutzers können " ++"gegebenenfalls unvollständige Fehler erkannt werden. Um nur nützliche " ++"Fehlerberichte einzureichen, lässt ABRT das Melden dieser Fehler nicht zu." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -311,7 +366,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nPaketdatenbank durchsuchen und Paket- und Komponentennamen speichern" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Paketdatenbank durchsuchen und Paket- und Komponentennamen speichern" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -374,7 +432,9 @@ msgstr "Der Fehlerbericht kann nicht für die Bearbeitung geöffnet werden" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Ordnerrechte konnten nicht angepasst werden. Für detaillierte Hinweise die System-Logdateien überprüfen." ++msgstr "" ++"Ordnerrechte konnten nicht angepasst werden. Für detaillierte Hinweise die " ++"System-Logdateien überprüfen." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -400,7 +460,9 @@ msgstr "Element »%s« kann nicht vo Fehlerverzeichnis »%s« entfernt werden" + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "Der Name »%s« ist verloren gegangen. Bitte stellen Sie sicher, dass kein anderer Dienst unter dem gleichen Namen läuft.\n" ++msgstr "" ++"Der Name »%s« ist verloren gegangen. Bitte stellen Sie sicher, dass kein " ++"anderer Dienst unter dem gleichen Namen läuft.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -414,11 +476,17 @@ msgstr "Die Anwendung muss mit Root-Rechten ausgeführt werden." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "Die Fehlerdaten sind unvollständig. Dies geschieht normalerweise, wenn der Rechner beim Auftreten des Fehlers gerade heruntergefahren wird oder während eines Abmeldevorgangs. Dieser Fehlerbericht wird nicht übermittelt, da er zu wenig auswertbare Daten enthält. Falls Sie etwas Zeit haben und Sie den Entwicklern helfen wollen, dieses Problem zu lösen, kontaktieren Sie die Entwickler bitte direkt." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"Die Fehlerdaten sind unvollständig. Dies geschieht normalerweise, wenn der " ++"Rechner beim Auftreten des Fehlers gerade heruntergefahren wird oder während " ++"eines Abmeldevorgangs. Dieser Fehlerbericht wird nicht übermittelt, da er zu " ++"wenig auswertbare Daten enthält. Falls Sie etwas Zeit haben und Sie den " ++"Entwicklern helfen wollen, dieses Problem zu lösen, kontaktieren Sie die " ++"Entwickler bitte direkt." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -443,7 +511,8 @@ msgstr "Direkt mit dem Benutzer kommunizieren" + #: ../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" ++msgstr "" ++"Kein freier Dienst vorhanden und Puffer voll. Archiv »%s« wird ausgelassen" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -455,7 +524,16 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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." ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Beobachtet das Verzeichnis UPLOAD_DIRECTORY und entpackt eingehende Archive " ++"in den Ordner DumpLocation\n" ++"welcher in abrt.conf festgelegt wird.\n" ++"\n" ++"Sollte UPLOAD_DIRECTORY nicht spezifiziert worden sein, wird eine Ordner aus\n" ++"WatchCrashdumpArchiveDir festgelegt in abrt.conf ausgewählt." + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -469,19 +547,73 @@ msgstr "Anzahl der gleichzeitig laufenden Dienste. Standard ist " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximale Cache-Größe in MB. Standard ist " + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "Ungültige Parameteranzahl" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Unbekannter Optionswert: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++#, fuzzy ++msgid "SSL Client Authenticated auto reporting" ++msgstr "Verkürzte Berichterstattung (silent)" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -492,7 +624,16 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "Verwendung: %s [-vd] ABRT_SPOOL_VERZ UPLOAD_VERZ DATEINAME\n\n -v - Ausführliche Ausgabe\n -d - Hochgeladenes Archiv löschen\n ABRT_SPOOL_VERZ - Verzeichnis, in das gültige hochgeladene Archive entpackt werden\n UPLOAD_VERZ - Verzeichnis, in dem hochgeladene Archive gespeichert werden\n DATEINAME - Name der Archivdatei\n" ++msgstr "" ++"Verwendung: %s [-vd] ABRT_SPOOL_VERZ UPLOAD_VERZ DATEINAME\n" ++"\n" ++" -v - Ausführliche Ausgabe\n" ++" -d - Hochgeladenes Archiv löschen\n" ++" ABRT_SPOOL_VERZ - Verzeichnis, in das gültige hochgeladene Archive " ++"entpackt werden\n" ++" UPLOAD_VERZ - Verzeichnis, in dem hochgeladene Archive gespeichert " ++"werden\n" ++" DATEINAME - Name der Archivdatei\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -599,13 +740,17 @@ msgstr " Temporäre Datei »%s« konnte nicht erstellt werden" + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-msgstr "Auf »%s« konnte nicht geschrieben werden. Fehlerbericht »%s« wird nicht aus den ignorierten Fehlerberichten »%s« entfernt" ++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:264 + #, 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." ++msgstr "" ++"Umbenennen von »%s« zu »%s« nicht möglich. Fehlerbericht »%s« konnte " ++"nicht entfernt werden." + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" +@@ -613,11 +758,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "\\b [options] -d DIR\n\nAnalysiert C/C++-Ablaufverfolgung, generiert Duplizierungs-Hash, Backtrace-Wertung und identifiziert Absturzfunktion in Dump-Verzeichnis DIR" ++msgstr "" ++"\\b [options] -d DIR\n" ++"\n" ++"Analysiert C/C++-Ablaufverfolgung, generiert Duplizierungs-Hash, Backtrace-" ++"Wertung und identifiziert Absturzfunktion in Dump-Verzeichnis DIR" + ++#. + #. * 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" +@@ -632,7 +783,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nBerechnet und speichert UUID des Speicherauszugs in Problem-Verzeichnis DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Berechnet und speichert UUID des Speicherauszugs in Problem-Verzeichnis DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -658,14 +812,21 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\nBerechnet und speichert UUID und DUPHASH für Kernelabsturz-Fehlerverzeichnis DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Berechnet und speichert UUID und DUPHASH für Kernelabsturz-Fehlerverzeichnis " ++"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\nBerechnet und speichert UUID und DUPHASH für Xorg-Problemverzeichnis DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Berechnet und speichert UUID und DUPHASH für Xorg-Problemverzeichnis DIR" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -677,7 +838,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nBerechnet und speichert UUID und DUPHASH von Python Crash-Dumps" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Berechnet und speichert UUID und DUPHASH von Python Crash-Dumps" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -692,10 +856,10 @@ msgid "Extracting the oops text from core" + msgstr "Oops-Text aus Core auslesen" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "{0} kann nicht verarbeitet werden:\n" + "{1}" +-msgstr "{0} kann nicht verarbeitet werden:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -709,14 +873,21 @@ msgstr "Oops-Text erfolgreich ausgelesen" + 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" ++msgstr "" ++"Das Kernel-Protokoll weist darauf hin, dass Hardware-Fehler entdeckt wurden.\n" ++"Hö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" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nAnalysiert Speicherauszug in Problem-Verzeichnis DIR, generiert und speichert Ablaufverfolgung" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analysiert Speicherauszug in Problem-Verzeichnis DIR, generiert und " ++"speichert Ablaufverfolgung" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -728,6 +899,7 @@ 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" +@@ -738,7 +910,11 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\nErstellt backtrace auf Arbeitsspeicherauszug-Ebene vom Arbeitsspeicherauszug und der entsprechenden Programmdatei" ++msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"Erstellt backtrace auf Arbeitsspeicherauszug-Ebene vom Arbeitsspeicherauszug " ++"und der entsprechenden Programmdatei" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -766,7 +942,8 @@ msgstr "Abbruch durch Benutzerbefehl" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -776,13 +953,34 @@ msgid "" + " -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" ++" --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" +-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" ++msgstr "" ++"Verwendung: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Installiert Debuginfos für alle Build-IDs, die in BUILD_IDS_FILE auf\n" ++"CACHEDIR gelistet sind, unter Verwendung von TMPDIR als temporäre\n" ++"Bereitstellungszone. Ältere Dateien in CACHEDIR werden gelöscht, bis\n" ++"die 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}" +@@ -790,7 +988,9 @@ msgstr "{0} kann nicht geöffnet werden: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Speicherauszug referenziert {0} Debuginfo-Dateien, {1} davon sind nicht installiert" ++msgstr "" ++"Speicherauszug referenziert {0} Debuginfo-Dateien, {1} davon sind nicht " ++"installiert" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -813,21 +1013,34 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Sind Sie damit einverstanden, den Speicherauszug hochzuladen? Möglicherweise sind vertrauliche Daten darin enthalten. Falls Sie mit »Nein« bestätigen, wird eine lokale Stapelüberwachung erstellt - und damit unter Umständen ein große Datenmenge heruntergeladen." ++msgstr "" ++"Sind Sie damit einverstanden, den Speicherauszug hochzuladen? Möglicherweise " ++"sind vertrauliche Daten darin enthalten. Falls Sie mit »Nein« bestätigen, " ++"wird eine lokale Stapelüberwachung erstellt - und damit unter Umständen ein " ++"große Datenmenge heruntergeladen." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "Möchten Sie eine lokale Stapelverarbeitung erstellen? (Möglicherweise wird damit eine große Datenmenge heruntergeladen. Dies ist jedoch nötig, um den Fehler zu melden)." ++msgstr "" ++"Möchten Sie eine lokale Stapelverarbeitung erstellen? (Möglicherweise wird " ++"damit eine große Datenmenge heruntergeladen. Dies ist jedoch nötig, um den " ++"Fehler zu melden)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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 GRÖSSE:VERZ]... [-f GRÖSSE:VERZ]... [-p VERZ] [DATEI]...\n\nLöscht Problem-Verzeichnisse (-d) oder -Dateien (-f) in VERZ, bis diese kleiner als GRÖSSE sind.\nDATEIen bleiben erhalten (werden nie gelöscht)." ++msgstr "" ++"& [-v] [-d GRÖSSE:VERZ]... [-f GRÖSSE:VERZ]... [-p VERZ] [DATEI]...\n" ++"\n" ++"Löscht Problem-Verzeichnisse (-d) oder -Dateien (-f) in VERZ, bis diese " ++"kleiner als GRÖSSE sind.\n" ++"DATEIen bleiben erhalten (werden nie gelöscht)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -858,7 +1071,9 @@ msgstr "Verwendung: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "Aktuelles Arbeitsverzeichnis konnte nicht bestimmt werden, womöglich wurde es gelöscht" ++msgstr "" ++"Aktuelles Arbeitsverzeichnis konnte nicht bestimmt werden, womöglich wurde " ++"es gelöscht" + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +@@ -959,7 +1174,8 @@ msgstr "Schreiben an eine ungültige Adresse" + + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "Unterprogramm kehrt an eine ungültige Adresse zurück (beschädigter Stack?)" ++msgstr "" ++"Unterprogramm kehrt an eine ungültige Adresse zurück (beschädigter Stack?)" + + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 +@@ -969,7 +1185,9 @@ msgstr "Sprung zu einer ungültigen Adresse" + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "Zugriff über das Ende der zugeordneten Datei hinaus, ungültige Adresse, unausgerichteter Zugriff, etc" ++msgstr "" ++"Zugriff über das Ende der zugeordneten Datei hinaus, ungültige Adresse, " ++"unausgerichteter Zugriff, etc" + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +@@ -996,7 +1214,11 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nLog-Datei FILE anschauen, PROG ausführen, wenn die Datei grösser oder ersetzt wird" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Log-Datei FILE anschauen, PROG ausführen, wenn die Datei grösser oder " ++"ersetzt wird" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1006,20 +1228,26 @@ msgstr "PROG nicht ausführen, wenn keine STRs gefunden wurden" + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "Ein Kernel-Problem ist aufgetreten aufgrund eines beschädigten BIOS. Leider können derartige Probleme nicht von Kernel-Maintainern behoben werden." ++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:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "Ein Kernel-Problem ist aufgetreten, aber Ihre Hardware wird nicht unterstützt, weshalb Kernel-Maintainer dieses Problem nicht beheben können." ++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: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." ++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:153 + #, c-format +@@ -1031,7 +1259,10 @@ 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)" ++msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Oops aus FILE extrahieren (oder Standard-Eingabe)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1039,13 +1270,17 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" +-msgstr "Neues Fehlerverzeichnis in DIR erstellen für jede gefundene Kernelabsturz-Meldung" ++msgstr "" ++"Neues Fehlerverzeichnis in DIR erstellen für jede gefundene Kernelabsturz-" ++"Meldung" + + #: ../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" ++msgstr "" ++"Entspricht -d DumpLocation, DumpLocation ist in abrt.conf spezifiziert" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1081,7 +1316,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nXorg-Absturz aus FILE extrahieren (oder Standard-Eingabe)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Xorg-Absturz aus FILE extrahieren (oder Standard-Eingabe)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1095,10 +1333,13 @@ msgstr "Neues Fehlerverzeichnis in DIR erstellen für jeden gefundenen Absturz" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Retrace-Server kann nicht verwendet werden, da der Absturz zu umfangreich ist. Versuchen Sie lokales Retracing." ++msgstr "" ++"Retrace-Server kann nicht verwendet werden, da der Absturz zu umfangreich " ++"ist. Versuchen Sie lokales Retracing." + + #. 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,10 +1362,10 @@ msgstr "HTTP-Header der Länge %d konnte nicht gesendet werden: NSS-Fehler %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" +-msgstr "Unerwartete HTTP-Antwort vom Server: %d\n%s " ++msgstr "Unerwartete HTTP-Antwort vom Server: %d\n" ++"%s " + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1140,7 +1381,9 @@ msgstr "Ungültige Antwort vom Server: HTTP-Nachrichtenrumpf fehlt." + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "Der Analyse-Server kann das Paket '%s.%s' nicht verarbeiten.\nIst es Bestandteil der offiziellen '%s' Paketquellen?" ++msgstr "" ++"Der Analyse-Server kann das Paket '%s.%s' nicht verarbeiten.\n" ++"Ist es Bestandteil der offiziellen '%s' Paketquellen?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1148,7 +1391,8 @@ msgstr "Servereinstellungen werden abgefragt" + + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." +-msgstr "Der Server ist derzeit ausgelastet. Bitte versuchen Sie es später erneut." ++msgstr "" ++"Der Server ist derzeit ausgelastet. Bitte versuchen Sie es später erneut." + + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." +@@ -1165,7 +1409,9 @@ msgstr "»%s« muss eine reguläre Datei sein, um Retrace-Server zu benutzen." + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Die Absturzdateien sind größer als %lld Byte, aber der Retrace-Server akzeptiert maximal %lld Byte." ++msgstr "" ++"Die Absturzdateien sind größer als %lld Byte, aber der Retrace-Server " ++"akzeptiert maximal %lld Byte." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1193,7 +1439,9 @@ msgstr "Archiv wird zur Übertragung vorbereitet" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Das Archiv ist größer als %lld Byte, aber der Retrace-Server akzeptiert maximal %lld Byte." ++msgstr "" ++"Das Archiv ist größer als %lld Byte, aber der Retrace-Server akzeptiert " ++"maximal %lld Byte." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1236,13 +1484,17 @@ msgstr "Übertragung war erfolgreich" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Das Fehler-Verzeichnis ist beschädigt und kann vom Retrace-Server nicht verarbeitet werden." ++msgstr "" ++"Das Fehler-Verzeichnis ist beschädigt und kann vom Retrace-Server nicht " ++"verarbeitet werden." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Das Archiv enthält potenziell bösartige Dateien (z. B. Symlinks) und kann deshalb nicht verarbeitet werden." ++msgstr "" ++"Das Archiv enthält potenziell bösartige Dateien (z. B. Symlinks) und kann " ++"deshalb nicht verarbeitet werden." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1258,10 +1510,10 @@ msgstr "Retrace-Vorgang wurde gestartet" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Task-Kennung: %s\nTask-Passwort: %s\n" ++msgstr "Task-Kennung: %s\n" ++"Task-Passwort: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1269,10 +1521,10 @@ msgstr "Ungültige Antwort vom Server: X-Task-Status fehlt." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Task-Status: %s\n" + "%s\n" +-msgstr "Task-Status: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1285,7 +1537,9 @@ msgstr "HTTP-Header der Länge %d konnte nicht gesendet werden: NSS-Fehler %d." + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Retrace ist fehlgeschlagen. Bitte versuchen Sie es später erneut und reichen Sie einen Fehlerbericht ein, falls das Problem weiterhin besteht." ++msgstr "" ++"Retrace ist fehlgeschlagen. Bitte versuchen Sie es später erneut und reichen " ++"Sie einen Fehlerbericht ein, falls das Problem weiterhin besteht." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1299,7 +1553,9 @@ msgstr "Unsichere Verbindung zum Retrace-Server zulassen" + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "Vor dem Hochladen des Archives nicht überprüfen, ob der Retrace-Server in der Lage ist, das bestimmte Paket zu verarbeiten" ++msgstr "" ++"Vor dem Hochladen des Archives nicht überprüfen, ob der Retrace-Server in " ++"der Lage ist, das bestimmte Paket zu verarbeiten" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1349,7 +1605,9 @@ msgstr "Passwort Ihres Tasks auf dem Server" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [Optionen]\nOperationen: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client [Optionen]\n" ++"Operationen: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1381,14 +1639,18 @@ msgstr "Lokaler GNU-Debugger" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Debuginfo-Pakete herunterladen und Ablaufverfolgung lokal mit GDB erstellen" ++msgstr "" ++"Debuginfo-Pakete herunterladen und Ablaufverfolgung lokal mit GDB erstellen" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Es ist nötig, Debuginfo-Pakete herunterzuladen, was einige Zeit in Anspruch nehmen kann und zusätzlichen Speicherplatz belegt. Jedoch wird nicht wie bei RetraceServer ein Speicherauszug an entfernte Rechner gesendet." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Es ist nötig, Debuginfo-Pakete herunterzuladen, was einige Zeit in Anspruch " ++"nehmen kann und zusätzlichen Speicherplatz belegt. Jedoch wird nicht wie bei " ++"RetraceServer ein Speicherauszug an entfernte Rechner gesendet." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1396,12 +1658,17 @@ msgstr "Speicherauszug an entfernten Server zur Untersuchung senden" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Überträgt einen Speicherauszug an einen Retrace-Server, der eine Ablaufverfolgung erstellt und zurücksendet. Die Debuginfo-Datenbank des Retrace-Servers ist in der Regel vollständiger. Dagegen spricht, dass der zu übertragende Speicherauszug alle Daten der abgestürzten Anwendung enthält, eventuell auch vertrauliche Daten." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Überträgt einen Speicherauszug an einen Retrace-Server, der eine " ++"Ablaufverfolgung erstellt und zurücksendet. Die Debuginfo-Datenbank des " ++"Retrace-Servers ist in der Regel vollständiger. Dagegen spricht, dass der zu " ++"übertragende Speicherauszug alle Daten der abgestürzten Anwendung enthält, " ++"eventuell auch vertrauliche Daten." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1426,10 +1693,13 @@ msgstr "Ob eine unsichere Verbindung verwendet werden soll" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Tragen Sie »insecure« ein, um unsichere Verbindungen zu erlauben <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(Warnung)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Tragen Sie »insecure« ein, um unsichere Verbindungen zu erlauben <a href=" ++"\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(Warnung)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1443,7 +1713,10 @@ msgstr "Relevante Zeilen der Datei ~/.xsession-errors speichern" + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Liest die Datei ~/.xsession-errors ein und speichert die Zeilen, die Namen ausführbarer Dateien enthalten. Das Ergebnis wird als »xsession_errors«-Element gespeichert." ++msgstr "" ++"Liest die Datei ~/.xsession-errors ein und speichert die Zeilen, die Namen " ++"ausführbarer Dateien enthalten. Das Ergebnis wird als »xsession_errors«-" ++"Element gespeichert." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1471,12 +1744,16 @@ msgstr "Ausgabestelle des Zertifikats ist ungültig: »%s«" + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "Zertifikat wurde von einer nicht vertrauenswürdigen Ausgabestelle signiert: »%s«" ++msgstr "" ++"Zertifikat wurde von einer nicht vertrauenswürdigen Ausgabestelle signiert: " ++"»%s«" + + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "Betreffname des Zertifikats »%s« stimmt nicht mit dem Namen des Zielrechners überein: »%s«." ++msgstr "" ++"Betreffname des Zertifikats »%s« stimmt nicht mit dem Namen des Zielrechners " ++"überein: »%s«." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1601,7 +1878,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nNach Aktualisierungen auf dem Bodhi-Server suchen" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Nach Aktualisierungen auf dem Bodhi-Server suchen" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1619,16 +1899,23 @@ msgstr "Die lokale Version ist aktueller als die verfügbaren Aktualisierungen" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Es liegt bereits eine Aktualisierung vor, die Ihr Problem beheben könnte. Sie können sie installieren, indem Sie folgendes ausführen: %s. Möchten Sie mit dem Melden des Fehlers fortfahren?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Es liegt bereits eine Aktualisierung vor, die Ihr Problem beheben könnte. " ++"Sie können sie installieren, indem Sie folgendes ausführen: %s. Möchten Sie " ++"mit dem Melden des Fehlers fortfahren?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\nDurchsucht Dateien nach geteilter oops Nachricht. Kann sie ausdrucken und/oder löschen." ++msgstr "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"Durchsucht Dateien nach geteilter oops Nachricht. Kann sie ausdrucken und/" ++"oder löschen." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1696,18 +1983,24 @@ msgstr "Detaillierten Bericht anzeigen" + + #: ../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" ++msgstr "" ++"Nur die Probleme anzeigen, welcher vor dem festgelegten Zeitpunkt auftraten" + + #: ../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" ++msgstr "" ++"Nur die Probleme anzeigen, welcher nach dem festgelegten Zeitpunkt auftraten" + + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-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" ++msgstr "" ++"Die automatische Berichtsfunktion ist deaktiviert. Bitte ziehen Sie in " ++"Betracht, sie\n" ++"zu aktivieren, indem Sie 'abrt-auto-reporting enabled' als Root ausführen\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1732,12 +2025,16 @@ msgstr "Nur die Fehleranzahl ohne Mitteilung ausgeben" + + #: ../src/cli/status.c:79 + msgid "Print only the problems more recent than specified timestamp" +-msgstr "Das aktuellste Auftreten des Fehlers anstatt des angegebenen Zeitstempel ausgeben" ++msgstr "" ++"Das aktuellste Auftreten des Fehlers anstatt des angegebenen Zeitstempel " ++"ausgeben" + + #: ../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 hat %u Fehler festgestellt. (Für weitere Informationen: abrt-cli list%s)\n" ++msgstr "" ++"ABRT hat %u Fehler festgestellt. (Für weitere Informationen: abrt-cli " ++"list%s)\n" + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1782,7 +2079,9 @@ msgstr "Nur Fehler auswählen, die nach diesem Zeitpunkt auftraten" + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Speicherauszug an entfernten Retrace-Server zur Untersuchung senden oder lokale Analyse durchführen, falls die entfernte Analyse fehlschlägt" ++msgstr "" ++"Speicherauszug an entfernten Retrace-Server zur Untersuchung senden oder " ++"lokale Analyse durchführen, falls die entfernte Analyse fehlschlägt" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1790,10 +2089,15 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Überträgt den Speicherauszug an einen Retrace-Server, der eine Ablaufverfolgung erstellt und zurücksendet. Die Debuginfo-Datenbank des Retrace-Servers ist in der Regel vollständiger. Dagegen spricht, dass der zu übertragende Speicherauszug alle Daten des abgestürzten Programms enthält, eventuell auch vertrauliche Daten." ++msgstr "" ++"Überträgt den Speicherauszug an einen Retrace-Server, der eine " ++"Ablaufverfolgung erstellt und zurücksendet. Die Debuginfo-Datenbank des " ++"Retrace-Servers ist in der Regel vollständiger. Dagegen spricht, dass der zu " ++"übertragende Speicherauszug alle Daten des abgestürzten Programms enthält, " ++"eventuell auch vertrauliche Daten." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1802,13 +2106,17 @@ msgstr "VM-Core analysieren" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Kernel-Debuginfo-Pakete installieren, Kernel-Protokoll und Kernelabsturz-Nachricht erzeugen" ++msgstr "" ++"Kernel-Debuginfo-Pakete installieren, Kernel-Protokoll und Kernelabsturz-" ++"Nachricht erzeugen" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Kernel-Debuginfo-Pakete müssen installiert werden, dies kann einige Zeit in Anspruch nehmen und benötigt Speicherplatz." ++msgstr "" ++"Kernel-Debuginfo-Pakete müssen installiert werden, dies kann einige Zeit in " ++"Anspruch nehmen und benötigt Speicherplatz." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1822,7 +2130,9 @@ msgstr "Konfiguration aus GConf-Verzeichnis der Anwendung speichern" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Führt gconftool-2 --recursive-list /apps/executable aus und speichert es als »gconf_subtree«-Element." ++msgstr "" ++"Führt gconftool-2 --recursive-list /apps/executable aus und speichert es als " ++"»gconf_subtree«-Element." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1836,7 +2146,9 @@ msgstr "/etc/vimrc und /etc/gvimrc speichern" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Prüft, ob vimrc- und gvimrc-Dateien in /etc vorhanden sind und speichert diese als system_vimrc bzw. system_gvimrc." ++msgstr "" ++"Prüft, ob vimrc- und gvimrc-Dateien in /etc vorhanden sind und speichert " ++"diese als system_vimrc bzw. system_gvimrc." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1848,9 +2160,11 @@ msgstr "Speichert .vimrc und .gvimrc aus Ihrem Benutzerverzeichnis" + + #: ../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 "Prüft, ob .vimrc und .gvimrc in Ihrem Benutzerverzeichnis vorhanden sind und speichert diese als user_vimrc bzw. user_gvimrc." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Prüft, ob .vimrc und .gvimrc in Ihrem Benutzerverzeichnis vorhanden sind und " ++"speichert diese als user_vimrc bzw. user_gvimrc." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/de_CH.po b/po/de_CH.po +index 49832e2..76e01ae 100644 +--- a/po/de_CH.po ++++ b/po/de_CH.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/fedora-abrt/language/de_CH/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: de_CH\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/" ++"fedora-abrt/language/de_CH/)\n" ++"Language: de-CH\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/dz.po b/po/dz.po +index a6cbe89..a293e39 100644 +--- a/po/dz.po ++++ b/po/dz.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Dzongkha (http://www.transifex.com/projects/p/fedora-abrt/language/dz/)\n" ++"Language-Team: Dzongkha (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/dz/)\n" ++"Language: dz\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: dz\n" + "Plural-Forms: nplurals=1; plural=0;\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/el.po b/po/el.po +index 88baffc..fd630b0 100644 +--- a/po/el.po ++++ b/po/el.po +@@ -9,17 +9,19 @@ + # skaftanis , 2011 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Greek (http://www.transifex.com/projects/p/fedora-abrt/language/el/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Greek (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/el/)\n" + "Language: el\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -92,7 +94,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -104,7 +108,9 @@ msgstr "Προειδοποίηση" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "Μικρο εφαρμογή η οποία ειδοποιηεί το χρήστη για κατάρευση εντοπίστηκε από το ABRT" ++msgstr "" ++"Μικρο εφαρμογή η οποία ειδοποιηεί το χρήστη για κατάρευση εντοπίστηκε από το " ++"ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -131,6 +137,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Ανοιγμα" +@@ -145,6 +152,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Αναφορά" +@@ -215,10 +223,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -232,15 +239,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -408,10 +415,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -463,19 +470,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -609,9 +669,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -686,8 +748,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -722,6 +783,7 @@ 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" +@@ -760,7 +822,8 @@ msgstr "Έξοδος μετά από εντολή χρήστη" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -770,7 +833,8 @@ msgid "" + " -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" ++" --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" +@@ -819,7 +883,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1033,6 +1098,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1093,6 +1159,7 @@ 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 +@@ -1115,8 +1182,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1252,8 +1318,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1263,8 +1328,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1375,14 +1439,20 @@ msgstr "Τοπικός GNU αποσφαλματωτής" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Κατέβασε πακέτα πληροφοριών αποσφαλμάτωσης και δημιούργησε backtrace χρησιμοποιώντας τοπικά το GDB" ++msgstr "" ++"Κατέβασε πακέτα πληροφοριών αποσφαλμάτωσης και δημιούργησε backtrace " ++"χρησιμοποιώντας τοπικά το GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Χρειάζεται να κατεβούν πακέτα πληροφοριών αποσφαλμάτωσης, που ίσως να πάρει αρκετή ώρα, και θα πιάσουν χώρο στον δίσκο. Ωστόσο, αντίθετα με τον Εξυπηρετητή Επανανίχνευσης, δεν στέλνει αναφορά σφάλματος σε απομακρυσμένους υπολογιστές." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Χρειάζεται να κατεβούν πακέτα πληροφοριών αποσφαλμάτωσης, που ίσως να πάρει " ++"αρκετή ώρα, και θα πιάσουν χώρο στον δίσκο. Ωστόσο, αντίθετα με τον " ++"Εξυπηρετητή Επανανίχνευσης, δεν στέλνει αναφορά σφάλματος σε απομακρυσμένους " ++"υπολογιστές." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1390,12 +1460,21 @@ msgstr "Στείλε αναφορά σφάλματος στον απομακρυ + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Ανεβάζει πληροφορίες σφάλματος σε εναν εξυπηρετητή, που παράγει backtrace και το επιστρέφει.\nΠλεονεκτήματα: Δεν χρειάζεται κατέβασμα πληροφοριών αποσφαλμάτωσης. Η βάση δεδομένων πληροφοριών αποσφαλμάτωσης του εξυπηρετητή επανανίχνευσης ειναι πιο πλήρης. Ο εξυπηρετητής επανανίχνευσης μπορεί να φτιάξει καλύτερα backtraces.\nΜειωνεκτήματα: Οι πληροφορίες σφάλματος που ανεβάζετε περιέχουν όλα τα δεδομένα του σπασμένου προγράμματος, συμπεριλαμβανομένων και των προσωπικών σας δεδομένων. " ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Ανεβάζει πληροφορίες σφάλματος σε εναν εξυπηρετητή, που παράγει backtrace " ++"και το επιστρέφει.\n" ++"Πλεονεκτήματα: Δεν χρειάζεται κατέβασμα πληροφοριών αποσφαλμάτωσης. Η βάση " ++"δεδομένων πληροφοριών αποσφαλμάτωσης του εξυπηρετητή επανανίχνευσης ειναι " ++"πιο πλήρης. Ο εξυπηρετητής επανανίχνευσης μπορεί να φτιάξει καλύτερα " ++"backtraces.\n" ++"Μειωνεκτήματα: Οι πληροφορίες σφάλματος που ανεβάζετε περιέχουν όλα τα " ++"δεδομένα του σπασμένου προγράμματος, συμπεριλαμβανομένων και των προσωπικών " ++"σας δεδομένων. " + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1420,9 +1499,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1613,8 +1692,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1699,7 +1778,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1784,8 +1864,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1842,8 +1922,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/en_GB.po b/po/en_GB.po +index eaecf3a..8a667b9 100644 +--- a/po/en_GB.po ++++ b/po/en_GB.po +@@ -9,22 +9,26 @@ + # Roy Jamison , 2013 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/fedora-abrt/language/en_GB/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: en_GB\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/" ++"fedora-abrt/language/en_GB/)\n" ++"Language: en-GB\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" + msgstr "Automatic Bug Reporting Tool" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "ABRT notification applet" + msgstr "ABRT notification applet" +@@ -44,31 +48,37 @@ msgstr "" + msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #. The NetworkManager DBus service is not available. + #: ../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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:342 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Can't take ownership of '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:350 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Can't open directory for writing '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "A problem has been detected" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" +@@ -79,12 +89,14 @@ msgstr "A problem in the %s package has been detected" + msgid "%s and the diagnostic data has been submitted" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:589 ../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'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" +@@ -92,20 +104,26 @@ msgstr "Can't close notification: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Warning" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "Notification area applet that notifies users about issues detected by ABRT" ++msgstr "" ++"Notification area applet that notifies users about issues detected by ABRT" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "Bruce Cowan " +@@ -114,6 +132,7 @@ msgstr "Bruce Cowan " + msgid "_Quit" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Hide" +@@ -122,6 +141,7 @@ msgstr "Hide" + msgid "_About" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Problem detected" +@@ -130,7 +150,9 @@ msgstr "Problem detected" + msgid "Ignore forever" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Open" +@@ -139,16 +161,20 @@ msgstr "Open" + msgid "The Problem has already been Reported" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "A Known Problem has Occurred" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Report" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "A Problem has Occurred" +@@ -157,26 +183,31 @@ msgstr "A Problem has Occurred" + msgid "A Problem has been Reported" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "A New Problem has Occurred" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Can't show notification: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #. TODO: Terminate child's process? + #: ../src/applet/applet.c:1098 ../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'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Can't set encoding on gio channel: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" +@@ -189,12 +220,16 @@ msgid "" + "reappear on the next login" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1635 + 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" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Applet which notifies user when new problems are detected by ABRT\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -215,10 +250,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -232,15 +266,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -300,13 +334,18 @@ msgstr "" + msgid "Quit" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:382 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nQuery package database and save package and component name" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Query package database and save package and component name" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 +@@ -318,43 +357,52 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n\nQuery package database and save package a + msgid "Problem directory" + msgstr "Problem directory" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:395 + msgid "Configuration file" + msgstr "Configuration file" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:797 + msgid "Use NUM as client uid" + msgstr "Use NUM as client uid" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Add program names to log" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:123 + msgid "Unknown error" + msgstr "Unknown error" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:188 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' is not a valid problem directory" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:223 + #, c-format + msgid "'%s' element can't be modified" + msgstr "'%s' element can't be modified" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 + #: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 +@@ -362,6 +410,7 @@ msgstr "'%s' element can't be modified" + msgid "Not Authorized" + msgstr "Not Authorised" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:256 + msgid "Can't access the problem for modification" + msgstr "Can't access the problem for modification" +@@ -370,37 +419,46 @@ msgstr "Can't access the problem for modification" + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:559 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' is not a valid element name" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:580 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Can't get size of '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:595 + msgid "No problem space left" +-msgstr "" ++msgstr "No problem space left" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:627 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Can't delete the element '%s' from the problem directory '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:763 ../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 "The name '%s' has been lost, please check if other service owning the name is not running.\n" ++msgstr "" ++"The name '%s' has been lost, please check if other service owning the name " ++"is not running.\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Exit after NUM seconds of inactivity" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "This program must be run as root." +@@ -408,28 +466,33 @@ msgstr "This program must be run as root." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" + msgstr "Do not daemonise" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:498 + msgid "Log to syslog even with -d" + msgstr "Log to syslog even with -d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:388 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:396 + msgid "Run EVENT on DIR" + msgstr "Run EVENT on DIR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:397 + msgid "Communicate directly to the user" + msgstr "Communicate directly to the user" +@@ -463,19 +526,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -553,31 +669,37 @@ msgstr "" + msgid "'{0}' processed successfully" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Generating backtrace" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:42 + #, c-format + msgid "Can't connect to system DBus: %s" + msgstr "Can't connect to system DBus: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Can't chown '%s': %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Deleting problem directory failed: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Can't get problem data from abrt-dbus: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" +@@ -601,17 +723,25 @@ msgstr "" + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nAnalyses C/C++ backtrace, generates duplication hash, backtrace rating,\nand identifies crash function in problem directory DIR" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analyses C/C++ backtrace, generates duplication hash, backtrace rating,\n" ++"and identifies crash function in problem directory DIR" + ++# translation auto-copied from project abrt, version master, document abrt ++#. + #. * 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" +@@ -621,12 +751,16 @@ msgstr "Backtrace parsing failed for %s" + msgid "Crash thread not found" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-c.c:67 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nCalculates and saves UUID of coredump in problem directory DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calculates and saves UUID of coredump in problem directory DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -666,17 +800,22 @@ msgstr "" + msgid "Module '%s' was loaded - won't report this crash" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nCalculates and saves UUID and DUPHASH of python crash dumps" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calculates and saves UUID and DUPHASH of python crash dumps" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "File {0} doesn't exist" +@@ -686,8 +825,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -705,23 +843,31 @@ msgid "" + "This is most likely not a software problem.\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nAnalyses coredump in problem directory DIR, generates and saves backtrace" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analyses coredump in problem directory DIR, generates and saves backtrace" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" + msgstr "Additional debuginfo directories" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" + msgstr "Kill gdb if it runs for more than NUM seconds" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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" +@@ -734,6 +880,7 @@ msgid "" + "Creates coredump-level backtrace from core dump and corresponding binary" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" + msgstr "Do not hash fingerprints" +@@ -752,15 +899,18 @@ msgstr "" + msgid "Error: %s" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" + msgstr "Exiting on user command" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:88 + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -770,21 +920,44 @@ msgid "" + " -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" ++" --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" + msgstr "" ++"Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" ++"to CACHEDIR, using TMPDIR as temporary staging area.\n" ++"Old 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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" + msgstr "Can't open {0}: {1}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Coredump references {0} debuginfo files, {1} of them are not installed" ++msgstr "" ++"Coredump references {0} debuginfo files, {1} of them are not installed" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -794,20 +967,26 @@ msgstr "" + msgid "Missing requested file: {0}" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" + msgstr "Missing debuginfo file: {0}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:231 + msgid "All debuginfo files are available" + msgstr "All debuginfo files are available" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Ok to upload core dump? (It may contain sensitive data). If your answer is 'No', a stack trace will be generated locally. (It may download a huge amount of data)." ++msgstr "" ++"Ok to upload core dump? (It may contain sensitive data). If your answer is " ++"'No', a stack trace will be generated locally. (It may download a huge " ++"amount of data)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + msgid "" +@@ -815,22 +994,32 @@ msgid "" + "amount of data but reporting can't continue without stack trace)." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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" ++"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\nDeletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\nFILEs are preserved (never deleted)." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" + msgstr "Delete whole problem directories" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:237 + msgid "Delete files inside this directory" + msgstr "Delete files inside this directory" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" + msgstr "Preserve this directory" +@@ -985,13 +1174,18 @@ msgstr "" + msgid "Exploitability analysis came up empty\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nWatch log file FILE, run PROG when it grows or is replaced" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Watch log file FILE, run PROG when it grows or is replaced" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" + msgstr "Don't run PROG if STRs aren't found" +@@ -1008,13 +1202,17 @@ msgid "" + "kernel maintainers are unable to fix this problem." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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." ++msgstr "" ++"A kernel problem occurred, but your kernel has been tainted (flags:%s). " ++"Kernel maintainers are unable to diagnose tainted reports." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." +@@ -1027,16 +1225,19 @@ msgid "" + "Extract oops from FILE (or standard input)" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" +@@ -1045,6 +1246,7 @@ msgstr "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgid "Save the extracted information in PROBLEM" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" +@@ -1053,6 +1255,7 @@ msgstr "Make the problem directory world readable" + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" +@@ -1070,13 +1273,18 @@ msgstr "" + msgid "Sleeping for %d seconds" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:237 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nExtract Xorg crash from FILE (or standard input)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extract Xorg crash from FILE (or standard input)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" + msgstr "Print found crash data on standard output" +@@ -1085,20 +1293,25 @@ msgstr "Print found crash data on standard output" + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Retrace server can not be used, because the crash is too large. Try local retracing." ++msgstr "" ++"Retrace server can not be used, because the crash is too large. Try local " ++"retracing." + + #. 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 "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 + #: ../src/plugins/abrt-retrace-client.c:666 +@@ -1107,6 +1320,7 @@ msgstr "" + msgid "Failed to send HTTP header of length %d: NSS error %d" + msgstr "Failed to send HTTP header of length %d: NSS error %d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 + #: ../src/plugins/abrt-retrace-client.c:765 +@@ -1115,11 +1329,12 @@ msgstr "Failed to send HTTP header of length %d: NSS error %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Unexpected HTTP response from server: %d\n" + "%s" +-msgstr "Unexpected HTTP response from server: %d\n%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 + #: ../src/plugins/abrt-retrace-client.c:841 +@@ -1136,18 +1351,22 @@ msgid "" + "Is it a part of official '%s' repositories?" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" + msgstr "Querying server settings" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." + msgstr "The server is fully occupied. Try again later." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." + msgstr "The server denied your request." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:484 + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format +@@ -1159,25 +1378,32 @@ msgstr "'%s' must be a regular file in order to use Retrace server." + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "The size of your crash is %lld bytes, but the retrace server only accepts crashes smaller or equal to %lld bytes." ++msgstr "" ++"The size of your crash is %lld bytes, but the retrace server only accepts " ++"crashes smaller or equal to %lld bytes." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." + msgstr "The server does not support xz-compressed tarballs." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:571 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." + msgstr "The release '%s' is not supported by the Retrace server." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:575 + msgid "The server is not able to handle your request." + msgstr "The server is not able to handle your request." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:594 + msgid "Unknown package sent to Retrace server." + msgstr "Unknown package sent to Retrace server." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:603 + msgid "Preparing an archive to upload" + msgstr "Preparing an archive to upload" +@@ -1187,13 +1413,16 @@ msgstr "Preparing an archive to upload" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "The size of your archive is %lld bytes, but the retrace server only accepts archives smaller or equal %lld bytes." ++msgstr "" ++"The size of your archive is %lld bytes, but the retrace server only accepts " ++"archives smaller or equal %lld bytes." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format + msgid "You are going to upload %d megabytes. Continue?" + msgstr "You are going to upload %d megabytes. Continue?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:638 + msgid "Cancelled by user" + msgstr "Cancelled by user" +@@ -1208,66 +1437,83 @@ msgstr "Uploading %d megabytes\n" + msgid "Uploading %lld bytes\n" + msgstr "Uploading %lld bytes\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:699 + #, c-format + msgid "Uploading %d%%\n" + msgstr "Uploading %d%%\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:711 + msgid "Failed to read from a pipe" + msgstr "Failed to read from a pipe" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:724 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" + msgstr "Failed to send data: NSS error %d (%s): %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:735 + msgid "Upload successful" + msgstr "Upload successful" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:757 + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Your problem directory is corrupted and can not be processed by the Retrace server." ++msgstr "" ++"Your problem directory is corrupted and can not be processed by the Retrace " ++"server." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "The archive contains malicious files (such as symlinks) and thus can not be processed." ++msgstr "" ++"The archive contains malicious files (such as symlinks) and thus can not be " ++"processed." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." + msgstr "Invalid response from server: missing X-Task-Id." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:778 + msgid "Invalid response from server: missing X-Task-Password." + msgstr "Invalid response from server: missing X-Task-Password." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:785 + msgid "Retrace job started" + msgstr "Retrace job started" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" ++"Task Password: %s\n" ++msgstr "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Task Id: %s\nTask Password: %s\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." + msgstr "Invalid response from server: missing X-Task-Status." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Task Status: %s\n" + "%s\n" +-msgstr "Task Status: %s\n%s\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 + #: ../src/plugins/abrt-retrace-client.c:1043 +@@ -1275,50 +1521,65 @@ msgstr "Task Status: %s\n%s\n" + msgid "Failed to send HTTP header of length %d: NSS error %d." + msgstr "Failed to send HTTP header of length %d: NSS error %d." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1160 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Retrace failed. Try again later and if the problem persists report this issue please." ++msgstr "" ++"Retrace failed. Try again later and if the problem persists report this " ++"issue please." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" + msgstr "log to syslog" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1209 + msgid "allow insecure connection to retrace server" + msgstr "allow insecure connection to retrace server" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1211 + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "do not check whether retrace server is able to process given package before uploading the archive" ++msgstr "" ++"do not check whether retrace server is able to process given package before " ++"uploading the archive" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" + msgstr "retrace server URL" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1216 + msgid "retrace server port" + msgstr "retrace server port" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1218 + msgid "(debug) show received HTTP headers" + msgstr "(debug) show received HTTP headers" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1219 + msgid "For create and batch operations" + msgstr "For create and batch operations" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1221 + msgid "read data from ABRT problem directory" + msgstr "read data from ABRT problem directory" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1223 + msgid "read data from coredump" + msgstr "read data from coredump" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1225 + msgid "Delay for polling operations" + msgstr "Delay for polling operations" +@@ -1327,14 +1588,17 @@ msgstr "Delay for polling operations" + msgid "(debug) do not delete temporary archive created from dump dir in " + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" + msgstr "For status, backtrace, and log operations" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1231 + msgid "id of your task on server" + msgstr "id of your task on server" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1233 + msgid "password of your task on server" + msgstr "password of your task on server" +@@ -1345,11 +1609,13 @@ msgid "" + "Operations: create/status/backtrace/log/batch/exploitable" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 + msgid "Either problem directory or coredump is needed." + msgstr "Either problem directory or coredump is needed." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1294 + #: ../src/plugins/abrt-retrace-client.c:1302 + #: ../src/plugins/abrt-retrace-client.c:1310 +@@ -1357,6 +1623,7 @@ msgstr "Either problem directory or coredump is needed." + msgid "Task id is needed." + msgstr "Task id is needed." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1296 + #: ../src/plugins/abrt-retrace-client.c:1304 + #: ../src/plugins/abrt-retrace-client.c:1312 +@@ -1364,85 +1631,113 @@ msgstr "Task id is needed." + msgid "Task password is needed." + msgstr "Task password is needed." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1324 + #, c-format + msgid "Unknown operation: %s." + msgstr "Unknown operation: %s." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" + msgstr "Local GNU Debugger" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" + msgstr "Download debuginfo packages and generate backtrace locally using GDB" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Needs to downloads debuginfo packages, which might take significant time, and take up disk space. However, unlike RetraceServer, doesn't send coredump to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Needs to downloads debuginfo packages, which might take significant time, " ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" + msgstr "Send core dump to remote retrace server for analysis" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Uploads coredump to a server, which generates backtrace and returns it. Pros: no need for debuginfo downloads. Retrace server's database of debuginfos is more complete. Retrace server may generate better backtraces. Cons: coredump you upload contains all the data from the crashed program, including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 + msgid "Retrace server URL" + msgstr "Retrace server URL" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 + #: ../src/plugins/analyze_CCpp.xml.in.h:4 + msgid "Address of the retrace server" + msgstr "Address of the retrace server" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 + #: ../src/plugins/analyze_CCpp.xml.in.h:5 + msgid "Insecure" + msgstr "Insecure" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 + #: ../src/plugins/analyze_CCpp.xml.in.h:6 + msgid "Whether or not to use insecure connection" + msgstr "Whether or not to use insecure connection" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Write \"insecure\" to allow insecure connection <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" + msgstr "Collect .xsession-errors" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" + msgstr "Save relevant lines from ~/.xsession-errors file" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "Scans through ~/.xsession-errors file and saves those lines which contain executable's name. The result is saved as 'xsession_errors' element." ++msgstr "" ++"Scans through ~/.xsession-errors file and saves those lines which contain " ++"executable's name. The result is saved as 'xsession_errors' element." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" +@@ -1457,35 +1752,42 @@ msgstr "" + msgid "An error occurred while connecting to '%s'" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:97 + #, c-format + msgid "Issuer certificate is invalid: '%s'." + msgstr "Issuer certificate is invalid: '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." + msgstr "Certificate is signed by an untrusted issuer: '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." + msgstr "Certificate subject name '%s' does not match target host name '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." + msgstr "Remote certificate has expired." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." + msgstr "Certificate issuer is not recognised: '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." + msgstr "Bad certificate received. Subject '%s', issuer '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:149 + #, c-format + msgid "Failed to get slot 'PEM Token #0': %d." +@@ -1502,14 +1804,17 @@ msgstr "" + msgid "Can't resolve host name '%s'." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." + msgstr "Failed to set socket blocking mode." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:213 + msgid "Failed to wrap TCP socket by SSL." + msgstr "Failed to wrap TCP socket by SSL." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "Failed to enable client handshake to SSL socket." +@@ -1522,6 +1827,7 @@ msgstr "" + msgid "Failed to enable TLS." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "Failed to set URL to SSL socket." +@@ -1531,14 +1837,17 @@ msgstr "Failed to set URL to SSL socket." + msgid "Can't connect to '%s'" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Failed to set certificate hook." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Failed to set handshake callback." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Failed to reset handshake." +@@ -1548,6 +1857,7 @@ msgstr "Failed to reset handshake." + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Failed to close SSL socket." +@@ -1557,65 +1867,83 @@ msgstr "Failed to close SSL socket." + msgid "Malformed HTTP response header: '%s'" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "Receiving of data failed: NSS error %d." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Malformed chunked response." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Failed to initialise NSS." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Failed to initialise security module." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Failed to shutdown NSS." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:375 + msgid "List of bug ids" + msgstr "List of bug ids" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:376 + msgid "Specify a bodhi server url" + msgstr "Specify a bodhi server url" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:377 + msgid "Specify a release" + msgstr "Specify a release" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:382 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nSearch for updates on bodhi server" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Search for updates on bodhi server" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" + msgstr "Searching for updates" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:440 + msgid "No updates for this package found" + msgstr "No updates for this package found" + ++# translation auto-copied from project abrt, version master, document abrt + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" + msgstr "Local version of the package is newer than available updates" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "An update exists which might fix your problem. You can install it by running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" +@@ -1637,6 +1965,7 @@ msgstr "" + msgid "'%s' identifies more than one problem directory" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." +@@ -1645,14 +1974,17 @@ msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgid "List problems [in DIRs]" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Remove problem directory DIR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analyse and report problem data in DIR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Print information about DIR" +@@ -1665,6 +1997,7 @@ msgstr "" + msgid "Process multiple problems" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "See 'abrt-cli COMMAND --help' for more information" +@@ -1675,6 +2008,7 @@ msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." +@@ -1683,6 +2017,7 @@ msgstr "& list [options] [DIR]..." + msgid "List only not-reported problems" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full + #: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" +@@ -1699,10 +2034,12 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." +@@ -1772,11 +2109,14 @@ msgstr "" + msgid "Selects only problems detected after timestamp" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Send core dump to remote retrace server for analysis or perform local analysis if the remote analysis fails" ++msgstr "" ++"Send core dump to remote retrace server for analysis or perform local " ++"analysis if the remote analysis fails" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1784,76 +2124,100 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" + msgstr "Analyse VM core" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Install kernel debuginfo packages, generate kernel log and oops message" ++msgstr "" ++"Install kernel debuginfo packages, generate kernel log and oops message" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Needs to install kernel debuginfo packages, which might take significant time, and take up disk space." ++msgstr "" ++"Needs to install kernel debuginfo packages, which might take significant " ++"time, and take up disk space." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" + msgstr "Collect GConf configuration" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" + msgstr "Save configuration from application's GConf directory" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:3 + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Runs gconftool-2 --recursive-list /apps/executable and saves it as 'gconf_subtree' element." ++msgstr "" ++"Runs gconftool-2 --recursive-list /apps/executable and saves it as " ++"'gconf_subtree' element." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" + msgstr "Collect system-wide vim configuration files" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" + msgstr "Save /etc/vimrc and /etc/gvimrc" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "Checks if there are vimrc and gvimrc files in /etc and saves them as system_vimrc and system_gvimrc, respectively." ++msgstr "" ++"Checks if there are vimrc and gvimrc files in /etc and saves them as " ++"system_vimrc and system_gvimrc, respectively." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" + msgstr "Collect yours vim configuration files" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" + msgstr "Save .vimrc and .gvimrc from your home directory" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "Checks if there are .vimrc and .gvimrc in your home directory and saves them as user_vimrc and user_gvimrc, respectively." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" + msgstr "Post report" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:2 + msgid "Executed after the reporting is finished" + msgstr "Executed after the reporting is finished" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:3 + msgid "Used for updating of the databases" + msgstr "Used for updating of the databases" +diff --git a/po/en_US.po b/po/en_US.po +index 02a343c..67488d6 100644 +--- a/po/en_US.po ++++ b/po/en_US.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: English (United States) (http://www.transifex.com/projects/p/fedora-abrt/language/en_US/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: en_US\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: English (United States) (http://www.transifex.com/projects/p/" ++"fedora-abrt/language/en_US/)\n" ++"Language: en-US\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/eo.po b/po/eo.po +index 37fc63e..5625810 100644 +--- a/po/eo.po ++++ b/po/eo.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Esperanto (http://www.transifex.com/projects/p/fedora-abrt/language/eo/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Esperanto (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/eo/)\n" + "Language: eo\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/es.po b/po/es.po +index 83b355f..e31eecc 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -19,23 +19,26 @@ + # Luis Bazán , 2011 + # Israel Torres , 2013 + # vareli , 2013 ++# Gladys Guerrero Lozano , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/language/es/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-07 06:34-0500\n" ++"Last-Translator: Gladys Guerrero Lozano \n" ++"Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/es/)\n" + "Language: es\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +-msgstr "Herramienta automática de informes de errores" ++msgstr "Herramienta automática de informe de errores" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "ABRT notification applet" +@@ -46,7 +49,9 @@ 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" +-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" ++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?" +@@ -54,7 +59,9 @@ 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? " ++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:243 +@@ -65,7 +72,8 @@ msgstr "No puedo conectar a NetworkManager sobre DBus: %s" + #: ../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" ++msgstr "" ++"No puedo determinar el estado de la red por medio de NetworkManager: %s" + + #: ../src/applet/applet.c:342 + #, c-format +@@ -104,10 +112,17 @@ msgstr "No puedo cerrar notificación: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "Vas a silenciar las notificaciones de un problema en particular. Nunca más verás una notificación para este problema, sin embargo, ABRT seguirá detectándolos y serás capaz de reportarlo desde la interfaz de ABRT.\n\n¿Deseas continuar?" ++msgstr "" ++"Vas a silenciar las notificaciones de un problema en particular. Nunca más " ++"verás una notificación para este problema, sin embargo, ABRT seguirá " ++"detectándolos y serás capaz de reportarlo desde la interfaz de ABRT.\n" ++"\n" ++"¿Deseas continuar?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -116,11 +131,16 @@ msgstr "Aviso" + #: ../src/applet/applet.c:834 + 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" ++msgstr "" ++"La miniaplicación del área de notificaciones informa al usuario los " ++"problemas detectados por ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "traductores: Claudio Rodrigo Pereyra Diaz , Domingo Becker , Héctor Daniel Cabrera , Dennis Tobar ." ++msgstr "" ++"traductores: Claudio Rodrigo Pereyra Diaz , " ++"Domingo Becker , Héctor Daniel Cabrera " ++", Dennis Tobar ." + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -143,6 +163,7 @@ msgid "Ignore forever" + msgstr "Ignorar siempre" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Abierto" +@@ -157,6 +178,7 @@ msgstr "Ha ocurrido un problema conocido" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Informar" +@@ -199,14 +221,20 @@ msgstr "No puedo volver al modo de no bloqueo para el canal gio: %s" + 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" ++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:1635 + 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" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Mini aplicación que notifica al usuario cuando ABRT detecta nuevos problemas\n" ++"\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -227,11 +255,15 @@ msgstr "Informe acortado en silencio" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "El fichero coredump es necesario para generar una traza de la pila que es una operación que consume tiempo y espacio. ABRT suministra un servicio que genera la traza de la pila pero usted tiene que subir el coredump a este servicio. Con esta opción deshabilitada ABRT subirá el coredump sin preguntar." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"El fichero coredump es necesario para generar una traza de la pila que es " ++"una operación que consume tiempo y espacio. ABRT suministra un servicio que " ++"genera la traza de la pila pero usted tiene que subir el coredump a este " ++"servicio. Con esta opción deshabilitada ABRT subirá el coredump sin " ++"preguntar." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -239,28 +271,43 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT almacena los datos del problema en directorios. Por lo tanto ABRT necesita un directorio con permiso de escritura, el directorio se mueve de la localización del sistema a su directorio home. Con esta opción deshabilitada ABRT moverá el directorio del problema sin preguntar." ++msgstr "" ++"ABRT almacena los datos del problema en directorios. Por lo tanto ABRT " ++"necesita un directorio con permiso de escritura, el directorio se mueve de " ++"la localización del sistema a su directorio home. Con esta opción " ++"deshabilitada ABRT moverá el directorio del problema sin preguntar." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport es una descripción corta y completamente anónima del un problema. ABRT usa uReport para una detección globlal rápida de duplicados. En la configuración por defecto uReport es enviado al principio del proceso de informa. Con esta opción habilitada uReports se envía automáticamente después de las detección de un problema." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport es una descripción corta y completamente anónima del un problema. " ++"ABRT usa uReport para una detección globlal rápida de duplicados. En la " ++"configuración por defecto uReport es enviado al principio del proceso de " ++"informa. Con esta opción habilitada uReports se envía automáticamente " ++"después de las detección de un problema." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "Con esta opción habilitada el proceso de informe iniciado pulsando el botón Informe en la burbuja de notificación del problema será interrumpido después de enviar uReport. Usted siempre puede usar el navegador de problemas por defecto para hacer un informe completo." ++msgstr "" ++"Con esta opción habilitada el proceso de informe iniciado pulsando el botón " ++"Informe en la burbuja de notificación del problema será interrumpido después " ++"de enviar uReport. Usted siempre puede usar el navegador de problemas por " ++"defecto para hacer un informe completo." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "Con esta opción habilitada ABRT nunca muestra notificaciones de problemas reportados. Tiene efecto sólo si los informes Acortados están habilitados." ++msgstr "" ++"Con esta opción habilitada ABRT nunca muestra notificaciones de problemas " ++"reportados. Tiene efecto sólo si los informes Acortados están habilitados." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -270,7 +317,9 @@ msgstr "Preguntar antes de subir coredump" + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "Con esta opción habilitada ABRT siempre crea una entrada del bug con acceso restringido si son detectados datos posiblemente sensibles." ++msgstr "" ++"Con esta opción habilitada ABRT siempre crea una entrada del bug con acceso " ++"restringido si son detectados datos posiblemente sensibles." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -285,7 +334,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "Los problemas incompletos son detectados mientras el ordenador se está apagando o el usuario está saliendo. Con el objetivo de suministrar informes de problemas evaluables, ABRT no le permitirá presentar estos problemas." ++msgstr "" ++"Los problemas incompletos son detectados mientras el ordenador se está " ++"apagando o el usuario está saliendo. Con el objetivo de suministrar informes " ++"de problemas evaluables, ABRT no le permitirá presentar estos problemas." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -317,7 +369,11 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nSolicita el paquete de base de datos y guarda el nombre del paquete y componente" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Solicita el paquete de base de datos y guarda el nombre del paquete y " ++"componente" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -380,7 +436,9 @@ msgstr "No puedo acceder al problema para modificación" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Error Chowning directory. Revisa los registros del sistema para más detalles. " ++msgstr "" ++"Error Chowning directory. Revisa los registros del sistema para más detalles." ++" " + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -406,7 +464,9 @@ msgstr "No puedo borrar el elemento '%s' del directorio de problema '%s'" + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "El nombre '%s' ser perdió, por favor, verifique si otro servicio que tenga ese nombre no se esté ejecutando.\n" ++msgstr "" ++"El nombre '%s' ser perdió, por favor, verifique si otro servicio que tenga " ++"ese nombre no se esté ejecutando.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -420,11 +480,17 @@ msgstr "Este programa debe ser ejecutado como root." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "Los datos del problema están incompletos. Esto suele suceder cuando se detecta un problema en el momento en que el computador se está apagando o el usuario está saliendo. Con el fin de proporcionar informes valiosos del problema, ABRT no le permitirá a usted enviar este problema. Si usted tiene tiempo y desea ayudar a los desarrolladores en su esfuerzo por solucionarlo, por favor contáctelos directamente." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"Los datos del problema están incompletos. Esto suele suceder cuando se " ++"detecta un problema en el momento en que el computador se está apagando o el " ++"usuario está saliendo. Con el fin de proporcionar informes valiosos del " ++"problema, ABRT no le permitirá a usted enviar este problema. Si usted tiene " ++"tiempo y desea ayudar a los desarrolladores en su esfuerzo por solucionarlo, " ++"por favor contáctelos directamente." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -461,7 +527,15 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Observa el UPLOAD_DIRECTORY y descomprime los archivos dentro de la " ++"ubicación especificada en el archivo abrt.conf\n" ++"\n" ++"Si el UPLOAD_DIRECTORY no es entregado, usa el valor de la opción\n" ++"WatchCrashdumpArchiveDir del archivo abrt.conf" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -475,19 +549,72 @@ msgstr "Numero de trabajadores concurrentes. El valor por defecto es" + 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 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "Retira la autenticación" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Nombre de usuario de Red Hat Support" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "Contraseña de Red Hat Support, si no la ingresa, se le indicará" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "Rutas de certificado uReport SSL o tipo de certificado" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "También necesita especificar --username para --password" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "Puede usar --username o --certificate" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "Puede usar --username o --anonymous" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "Puede usar --anonymous o --certificate" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "Número de argumentos no es válido" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valor de opción desconocido: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "Contraseña:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "No puede continuar sin contraseña\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "Autoreporte autenticado HTTP" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "Autoreporte de cliente autenticadoSSL " ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "Autoreporte anónimo " ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -498,7 +625,15 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "Uso: %s[-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n-v - Informativo\n-d - Elimina el archivo cargado\nABRT_SPOOL_DIR - Directorio en el cual los archivos cargados son desempaquetados\nUPLOAD_DIR - Directorio donde los archivos cargados son guardados\nFILENAME - Nombre del archivo cargado\n" ++msgstr "" ++"Uso: %s[-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++"-v - Informativo\n" ++"-d - Elimina el archivo cargado\n" ++"ABRT_SPOOL_DIR - Directorio en el cual los archivos cargados son " ++"desempaquetados\n" ++"UPLOAD_DIR - Directorio donde los archivos cargados son guardados\n" ++"FILENAME - Nombre del archivo cargado\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -563,7 +698,7 @@ msgstr "No se puede desempaquetar '{0}'" + + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "'{0}' se proceso exitosamente" ++msgstr "'{0}' se proceso correctamente" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -588,7 +723,7 @@ msgstr "Falló el borrado del directorio de problema: %s" + #: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "No se pudo obtener datos del problema usando abrt-dbus: %s" ++msgstr "No se pudieron obtener datos del problema usando abrt-dbus: %s" + + #: ../src/lib/problem_api_dbus.c:169 + #, c-format +@@ -605,7 +740,9 @@ msgstr "No puede crear fichero temporal ‘%s’" + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-msgstr "No puede escribir en ‘%s’. Problema ‘%s’ no será quitado de los problemas ignorados ‘%s’" ++msgstr "" ++"No puede escribir en ‘%s’. Problema ‘%s’ no será quitado de los problemas " ++"ignorados ‘%s’" + + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 +@@ -619,11 +756,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nAnaliza el trazado de C/C++, genera duplicación de hash, clasificación de seguimiento e identifica función de caídas en directorio de problemas DIR\nand identifies crash function in problem directory DIR" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analiza el trazado de C/C++, genera duplicación de hash, clasificación de " ++"seguimiento e identifica función de caídas en directorio de problemas DIR\n" ++"and identifies crash function in problem directory DIR" + ++#. + #. * 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" +@@ -631,14 +775,17 @@ msgstr "Ha fallado el análisis del trazado de %s" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" +-msgstr "No se encontró el thread que se colgó" ++msgstr "No se encontró el hilo que se colgó" + + #: ../src/plugins/abrt-action-analyze-c.c:67 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nCalcula y guarda UUID de coredump en directorio de problemas DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcula y guarda UUID de coredump en directorio de problemas DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -664,14 +811,18 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR⏎ ⏎ Calculados y guardados UUID y DUPHASH para oops problema directorio DIR" ++msgstr "" ++"& [-v] -d DIR⏎ ⏎ Calculados y guardados UUID y DUPHASH para oops problema " ++"directorio 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\nCalculados y guardados UUID y DUPHASH para xorg problema directorio DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"Calculados y guardados UUID y DUPHASH para xorg problema directorio DIR" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -683,7 +834,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nCalcula y guarda UUID y DUPHASH de volcados de daños de Python" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcula y guarda UUID y DUPHASH de volcados de daños de Python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -698,10 +852,10 @@ msgid "Extracting the oops text from core" + msgstr "Extrayendo los textos ups del núcleo" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "No se puede procesar {0}:\n" + "{1}" +-msgstr "No se puede procesar {0}:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -715,14 +869,20 @@ msgstr "EL texto ups a sido extraído efectivamente " + 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" ++msgstr "" ++"El registro del kernel indica que se han detectado errores de hardware.\n" ++"Es 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" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nAnaliza a coredump en directory de problemas DIR, genera y guarda seguimiento" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analiza a coredump en directory de problemas DIR, genera y guarda " ++"seguimiento" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -734,6 +894,7 @@ 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" +@@ -744,7 +905,11 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\nCrea un trazado a nivel de núcleo del núcleo de volcado y su archivo binario correspondiente" ++msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"Crea un trazado a nivel de núcleo del núcleo de volcado y su archivo binario " ++"correspondiente" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -772,7 +937,8 @@ msgstr "Saliendo a solicitud del usuario" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -782,13 +948,34 @@ msgid "" + " -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" ++" --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" +-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" ++msgstr "" ++"Uso: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Instala debuginfos para todos los build-ids listados en BUILD_IDS_FILE\n" ++"para CACHEDIR, mediante TMPDIR como una etapa provisional.\n" ++"Los 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}" +@@ -796,7 +983,9 @@ msgstr "No se puede abrir {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Volcado de memoria hace referencia a {0} archivos de información de dupuración, {1} de ellos no se encuentra instalado" ++msgstr "" ++"Volcado de memoria hace referencia a {0} archivos de información de " ++"dupuración, {1} de ellos no se encuentra instalado" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -819,21 +1008,32 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "¿De acuerdo con volcado del core? (Puede contener datos sensible), Si su respuesta es 'No', se generará localmente una traza localmente. (Puede descargar una enorme cantidad de datos)." ++msgstr "" ++"¿De acuerdo con volcado del core? (Puede contener datos sensible), Si su " ++"respuesta es 'No', se generará localmente una traza localmente. (Puede " ++"descargar una enorme cantidad de datos)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "¿Desea generar una traza de la pila localmente? (Puede descargar una gran cantidad de datos pero el reporte no puede continuar sin una traza de pila)." ++msgstr "" ++"¿Desea generar una traza de la pila localmente? (Puede descargar una gran " ++"cantidad de datos pero el reporte no puede continuar sin una traza de pila)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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\nBorra los directorios de problemas (-d) o archivos (-f) en DIR hasta que sean más pequeños que TAMAÑO.\nLOS ARCHIVOS se preservan (nunca se borran)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Borra los directorios de problemas (-d) o archivos (-f) en DIR hasta que " ++"sean más pequeños que TAMAÑO.\n" ++"LOS ARCHIVOS se preservan (nunca se borran)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -864,7 +1064,8 @@ msgstr "Uso: %s[-v]" + + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "Imposible obtener el directorio de trabajo actual, probablemente fue borrado" ++msgstr "" ++"Imposible obtener el directorio de trabajo actual, probablemente fue borrado" + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +@@ -937,7 +1138,8 @@ msgstr "Señal TRAP (trampa, puede ser un error en un depurador/trazador)" + + #: ../src/plugins/abrt-gdb-exploitable:628 + msgid "SYS signal (unknown syscall was called?)" +-msgstr "Señal SYS (del sistema, ¿se habrá hecho una llamada al sistema desconocida?)" ++msgstr "" ++"Señal SYS (del sistema, ¿se habrá hecho una llamada al sistema desconocida?)" + + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" +@@ -975,11 +1177,15 @@ msgstr "Salto a una dirección inválida" + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "Acceso más allá del final del archivo mapeado, dirección inválida, acceso no alineado, etc." ++msgstr "" ++"Acceso más allá del final del archivo mapeado, dirección inválida, acceso no " ++"alineado, etc." + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "No se pudo obtener el número de señal y realizar el análisis de explotabilidad\n" ++msgstr "" ++"No se pudo obtener el número de señal y realizar el análisis de " ++"explotabilidad\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +@@ -1002,7 +1208,10 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F CADENA]... ARCHIVO PROG [ARGS]\n\nSe fija en el ARCHIVO log, ejecuta el PROG cuando crece o se reemplaza" ++msgstr "" ++"& [-vs] [-F CADENA]... ARCHIVO PROG [ARGS]\n" ++"\n" ++"Se fija en el ARCHIVO log, ejecuta el PROG cuando crece o se reemplaza" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1012,20 +1221,26 @@ msgstr "No ejecuta el PROG si no encuentra la CADENA" + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "Ha ocurrido un problema de kernel de BIOS incorrecto. Infortunadamente, los mantenedores del kernel no pueden corregir estos problemas." ++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:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-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." ++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: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." ++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:153 + #, c-format +@@ -1037,7 +1252,10 @@ 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)" ++msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [ARCH]\n" ++"\n" ++"Extrae los oops desde el ARCH (o la entrada estándar)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1045,13 +1263,16 @@ 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: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" ++msgstr "" ++"Creado un nuevo directorio de problemas en DIR para cada ups encontrado" + + #: ../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" ++msgstr "" ++"Igual que -d DumpLocation, lugar de volcado se especifica en abrt.conf" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1087,7 +1308,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [ARCHIVO]\n\nExtrae el cuelgue de Xorg desde el ARCHIVO (o la entrada estándar)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [ARCHIVO]\n" ++"\n" ++"Extrae el cuelgue de Xorg desde el ARCHIVO (o la entrada estándar)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1101,10 +1325,13 @@ msgstr "Creado un directorio de problema en DIR para cada crash encontrado" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "El servidor de trazado de los pasos no se puede utilizar, debido a que el daño es muy grande. Intente hacer el trazado de forma local. " ++msgstr "" ++"El servidor de trazado de los pasos no se puede utilizar, debido a que el " ++"daño es muy grande. Intente hacer el trazado de forma local. " + + #. 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 +@@ -1127,10 +1354,10 @@ msgstr "Error al enviar encabezado HTTP de longitud %d: Error NSS %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Respuesta HTTP inesperada del servidor: %d\n" + "%s" +-msgstr "Respuesta HTTP inesperada del servidor: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1146,7 +1373,9 @@ msgstr "Respuesta inválida del servidor: falta cuerpo del mensaje HTTP." + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "El servidor Retrace no puede procesar el paquete '%s.%s'.\n¿Es una parte oficial de los repositorios '%s' ?" ++msgstr "" ++"El servidor Retrace no puede procesar el paquete '%s.%s'.\n" ++"¿Es una parte oficial de los repositorios '%s' ?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1164,14 +1393,18 @@ msgstr "El servidor rechazó la solicitud." + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "'%s' debe ser un fichero regular con el objetivo de utulizar el servidor Retrace." ++msgstr "" ++"'%s' debe ser un fichero regular con el objetivo de utulizar el servidor " ++"Retrace." + + #: ../src/plugins/abrt-retrace-client.c:514 + #, c-format + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "El tamaño del daño es de %lld bytes, pero el seguimiento solamente acepta daños más pequeños o iguales a %lld bytes." ++msgstr "" ++"El tamaño del daño es de %lld bytes, pero el seguimiento solamente acepta " ++"daños más pequeños o iguales a %lld bytes." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1199,7 +1432,9 @@ msgstr "Preparando un archivo para cargarlo" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "El tamaño de su archivo es de %lld bytes, pero el seguimiento solamente acepta archivos más pequeños o iguales a %lld bytes. " ++msgstr "" ++"El tamaño de su archivo es de %lld bytes, pero el seguimiento solamente " ++"acepta archivos más pequeños o iguales a %lld bytes. " + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1242,13 +1477,17 @@ msgstr "¡Carga correcta!" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Su directorio de problemas está dañado y no puede ser procesado por el servidor de trazado." ++msgstr "" ++"Su directorio de problemas está dañado y no puede ser procesado por el " ++"servidor de trazado." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "El archivo contiene archivos malintencionados (tales como symlinks) y por lo tanto no se pueden procesar." ++msgstr "" ++"El archivo contiene archivos malintencionados (tales como symlinks) y por lo " ++"tanto no se pueden procesar." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1264,10 +1503,10 @@ msgstr "El seguimiento de tarea ha comenzado" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Id. de la tarea: %s\nContraseña de la tarea: %s\n" ++msgstr "Id. de la tarea: %s\n" ++"Contraseña de la tarea: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1275,10 +1514,10 @@ msgstr "Respuesta inválida del servido: falta estatus de tarea X." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Estatus de tarea:%s\n" + "%s\n" +-msgstr "Estatus de tarea:%s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1291,7 +1530,9 @@ msgstr "Error al enviar encabezado HTTP de longitud %d: error NSS %d." + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "El seguimiento de pasos falló. Intente de nuevo y si el problema persiste repórtelo," ++msgstr "" ++"El seguimiento de pasos falló. Intente de nuevo y si el problema persiste " ++"repórtelo," + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1305,7 +1546,9 @@ msgstr "Permita conexión insegura para hacer seguimiento del servidor" + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "no chequear si el servidor de re-trazado puede procesar el paquete antes de subir el archivo" ++msgstr "" ++"no chequear si el servidor de re-trazado puede procesar el paquete antes de " ++"subir el archivo" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1337,7 +1580,9 @@ msgstr "Demora para sondear operaciones" + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "(depuración) no borrar el archivo temporal creado en el directorio de entrada del volcado" ++msgstr "" ++"(depuración) no borrar el archivo temporal creado en el directorio de " ++"entrada del volcado" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1355,7 +1600,9 @@ msgstr "Contraseña de su tarea en el servidor" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [opciones]\nOperaciones: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client [opciones]\n" ++"Operaciones: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1392,22 +1639,32 @@ msgstr "Descargue paquetes de depuración y genere trazado local mediante GDB" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Necesita descargar paquetes debuginfo,esto puedo tardar un tiempo significativo, y ocupar espacio en disco. Sin embargo, a diferencia del Servidor de Trazado, no envía el volcado a equipos remotos." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Necesita descargar paquetes debuginfo,esto puedo tardar un tiempo " ++"significativo, y ocupar espacio en disco. Sin embargo, a diferencia del " ++"Servidor de Trazado, no envía el volcado a equipos remotos." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +-msgstr "Enviar núcleo del volcado al servidor de re-trazado remoto para su análisis" ++msgstr "" ++"Enviar núcleo del volcado al servidor de re-trazado remoto para su análisis" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Carga volcado a un servidor, que genera el trazado hacia atrás y lo devuelve. Ventajas: no es necesario las descargas de debuginfo. El seguimiento sobre la base de datos del servidor de debuginfos es más completa. El servidor de seguimiento puede generar mejores trazados. Contras: el volcado que debe cargar contiene todos los datos del a caída del programa, incluyendo sus datos privados si los hubiere." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Carga volcado a un servidor, que genera el trazado hacia atrás y lo devuelve." ++" Ventajas: no es necesario las descargas de debuginfo. El seguimiento sobre " ++"la base de datos del servidor de debuginfos es más completa. El servidor de " ++"seguimiento puede generar mejores trazados. Contras: el volcado que debe " ++"cargar contiene todos los datos del a caída del programa, incluyendo sus " ++"datos privados si los hubiere." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1432,10 +1689,13 @@ msgstr "Utilizar o no una conexión insegura" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Escribir \"insegura\" para aceptar una conexión insegura <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Escribir \"insegura\" para aceptar una conexión insegura <a href=\"https:/" ++"/fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1449,7 +1709,10 @@ msgstr "Guarde las líneas importantes del archivo " + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Escanea a través del archivo ~/.xsession-errors y guarda las líneas que contienen el nombre del ejecutable. El resultado se guarda como elemento de 'xsession_errors'." ++msgstr "" ++"Escanea a través del archivo ~/.xsession-errors y guarda las líneas que " ++"contienen el nombre del ejecutable. El resultado se guarda como elemento de " ++"'xsession_errors'." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1482,7 +1745,9 @@ msgstr "El certificado está firmado por un emisor no confiable: «%s»." + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "El nombre del asunto '%s' no coincide con el nombre de host de destino '%s'. " ++msgstr "" ++"El nombre del asunto '%s' no coincide con el nombre de host de destino '%s'. " ++"" + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1607,7 +1872,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nBuscar actualizaciones en el servidor bodhi" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Buscar actualizaciones en el servidor bodhi" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1620,21 +1888,29 @@ msgstr "No se encontraron actualizaciones para este paquete" + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" +-msgstr "La versión local del paquete es mas nueva que la disponible en las actualizaciones" ++msgstr "" ++"La versión local del paquete es mas nueva que la disponible en las " ++"actualizaciones" + + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Existe una actualización que puede corregir su problema. Usted puede instalarla ejecutando: %s. ¿Desea continuar con el informe del bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Existe una actualización que puede corregir su problema. Usted puede " ++"instalarla ejecutando: %s. ¿Desea continuar con el informe del bug?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\nBusca en los archivos los mensajes de oops divididos. Puede imprimirlos y/o borrarlos." ++msgstr "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"Busca en los archivos los mensajes de oops divididos. Puede imprimirlos y/o " ++"borrarlos." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1686,6 +1962,8 @@ msgstr "Para obtener mayor información, ver 'abrt-cli COMMAND --help' " + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" ++"%sEjecutar 'abrt-cli report %s' para crear un caso en el Portal del cliente " ++"Red Hat\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1702,18 +1980,24 @@ msgstr "Muestre el reporte detallado" + + #: ../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" ++msgstr "" ++"Listar sólo los problemas más recientes que la marca de tiempo especificada" + + #: ../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" ++msgstr "" ++"Listar sólo los problemas más viejos que la marca de tiempo especificada" + + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-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" ++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:235 + msgid "& info [options] DIR..." +@@ -1738,12 +2022,16 @@ msgstr "Imprimir únicamente el conteo del problema sin ningún mensaje" + + #: ../src/cli/status.c:79 + msgid "Print only the problems more recent than specified timestamp" +-msgstr "Imprimir únicamente los problemas más recientes que la marca de tiempo especificada" ++msgstr "" ++"Imprimir únicamente los problemas más recientes que la marca de tiempo " ++"especificada" + + #: ../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 a detectado %u problema(s). Para más información ejecute: abrt-cli list %s\n" ++msgstr "" ++"ABRT a detectado %u problema(s). Para más información ejecute: abrt-cli list " ++"%s\n" + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1778,7 +2066,9 @@ msgstr "Para el siguiente problema presione la tecla ENTER:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "Without -- puesto que el argumento se repite sobre todos los problemas detectados." ++msgstr "" ++"Without -- puesto que el argumento se repite sobre todos los problemas " ++"detectados." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +@@ -1788,7 +2078,9 @@ msgstr "Selecciona unicamente los problemas después del tiempo especificado" + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Enviado el volcado del core al servidor remoto retrace para análisis o lleve a cabo un análisis local si el análisis remoto falla" ++msgstr "" ++"Enviado el volcado del core al servidor remoto retrace para análisis o lleve " ++"a cabo un análisis local si el análisis remoto falla" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1796,10 +2088,19 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Subiendo el volvado del core al servidor, que generara un copia de la traza y lo devolverá. Si el usuario no desea subir su volcado del core a ningún sitio el evento llevará a cabo un análisis local. El análisis local es ejecutado por el evento si el análisis remoto falla. Pros: no necesita descarga de información de depuración. La base de datos de información de depuración del servidor Retrace es más completa. El servidor Retrace puede generar mejores trazas de vuelta. Contras: el volcado de core que sube contiene todos los datos del programa que ha fallado, incluyendo sus datos privados, si los hay." ++msgstr "" ++"Subiendo el volvado del core al servidor, que generara un copia de la traza " ++"y lo devolverá. Si el usuario no desea subir su volcado del core a ningún " ++"sitio el evento llevará a cabo un análisis local. El análisis local es " ++"ejecutado por el evento si el análisis remoto falla. Pros: no necesita " ++"descarga de información de depuración. La base de datos de información de " ++"depuración del servidor Retrace es más completa. El servidor Retrace puede " ++"generar mejores trazas de vuelta. Contras: el volcado de core que sube " ++"contiene todos los datos del programa que ha fallado, incluyendo sus datos " ++"privados, si los hay." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1808,13 +2109,17 @@ msgstr "Analizar núcleo de VM" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Instalar paquetes de información de depuración, generar registro de kernel y mensaje oops" ++msgstr "" ++"Instalar paquetes de información de depuración, generar registro de kernel y " ++"mensaje oops" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Es necesario instalar paquetes de información de depuración de kernel, los cuales pueden tomar un tiempo significativo y ocupar espacio de disco " ++msgstr "" ++"Es necesario instalar paquetes de información de depuración de kernel, los " ++"cuales pueden tomar un tiempo significativo y ocupar espacio de disco " + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1828,7 +2133,9 @@ msgstr "Guarda configuración del directorio Gconf de aplicación" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Ejecuta gconftool-2 --recursive-list /apps/executable y la guarda como elemento de 'gconf_subtree'." ++msgstr "" ++"Ejecuta gconftool-2 --recursive-list /apps/executable y la guarda como " ++"elemento de 'gconf_subtree'." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1842,7 +2149,9 @@ msgstr "Guarda /etc/vimrc y /etc/gvimrc" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Verifica si hay archivos vimrc y gvimrc en /etc y los guard como system_vimrc and system_gvimrc, respectivamente" ++msgstr "" ++"Verifica si hay archivos vimrc y gvimrc en /etc y los guard como " ++"system_vimrc and system_gvimrc, respectivamente" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1854,9 +2163,11 @@ msgstr "Guarda .vimrc y .gvimrc de su directorio principal" + + #: ../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 "Verifica si hay en su directorio principal .vimrc y .gvimrc y los guarda como /etc/vimrc y /etc/gvimrc, respectivamente." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Verifica si hay en su directorio principal .vimrc y .gvimrc y los guarda " ++"como /etc/vimrc y /etc/gvimrc, respectivamente." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/et.po b/po/et.po +index 2be66a4..ab0168b 100644 +--- a/po/et.po ++++ b/po/et.po +@@ -6,17 +6,19 @@ + # mihkel , 2011-2012 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Estonian (http://www.transifex.com/projects/p/fedora-abrt/language/et/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Estonian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/et/)\n" + "Language: et\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -89,7 +91,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -101,7 +105,9 @@ msgstr "Hoiatus" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "Märguandeala aplett, mis teavitab kasutajaid ABRT-i poolt tuvastatud probleemidest" ++msgstr "" ++"Märguandeala aplett, mis teavitab kasutajaid ABRT-i poolt tuvastatud " ++"probleemidest" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -128,6 +134,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -142,6 +149,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Teavita" +@@ -191,7 +199,10 @@ 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" ++msgstr "" ++"& [-v] [KATALOOG]...\n" ++"\n" ++"Aplett, mis teavitab kasutajat, kui ABRT on tuvastanud uusi probleeme\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -212,10 +223,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +239,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -302,7 +312,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c KONFIFAIL] -d KATALOOG\n\nTee päring pakkide andmebaasi ja salvesta paki ning komponendi nimi" ++msgstr "" ++"& [-v] [-c KONFIFAIL] -d KATALOOG\n" ++"\n" ++"Tee päring pakkide andmebaasi ja salvesta paki ning komponendi nimi" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -405,10 +418,10 @@ msgstr "Seda rakendust peab käivitama administraatori õigustes." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -460,19 +473,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -604,11 +670,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [valikud] -d KATALOOG\n\nAnalüüsib C/C++ tagasijälitust, genereerib dubleeritud räsi, tagasijälituse reitingu ja identifitseerib krahhi funktsiooni probleemide kataloogis KATALOOG" ++msgstr "" ++"& [valikud] -d KATALOOG\n" ++"\n" ++"Analüüsib C/C++ tagasijälitust, genereerib dubleeritud räsi, tagasijälituse " ++"reitingu ja identifitseerib krahhi funktsiooni probleemide kataloogis " ++"KATALOOG" + ++#. + #. * 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" +@@ -623,7 +696,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d KATALOOG\n\nArvutab ja salvestab tuumatõmmise UUID probleemide kataloogi KATALOOG" ++msgstr "" ++"& [-v] -d KATALOOG\n" ++"\n" ++"Arvutab ja salvestab tuumatõmmise UUID probleemide kataloogi KATALOOG" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -668,7 +744,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d KATALOOG\n\nArvutab ja salvestab pythoni krahhide tõmmiste UUID ja DUPHASH-d" ++msgstr "" ++"& [-v] -d KATALOOG\n" ++"\n" ++"Arvutab ja salvestab pythoni krahhide tõmmiste UUID ja DUPHASH-d" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -683,8 +762,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -707,7 +785,11 @@ msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [valikud] -d KATALOOG\n\nAnalüüsib tuumatõmmist probleemide kataloogis KATALOOG, genereerib ja salvestab tagasijälituse" ++msgstr "" ++"& [valikud] -d KATALOOG\n" ++"\n" ++"Analüüsib tuumatõmmist probleemide kataloogis KATALOOG, genereerib ja " ++"salvestab tagasijälituse" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -719,6 +801,7 @@ 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" +@@ -757,7 +840,8 @@ msgstr "Väljumine kasutaja käsul" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +851,8 @@ msgid "" + " -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" ++" --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" +@@ -781,7 +866,8 @@ msgstr "{0} avamine nurjus: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Tuumatõmmis viitab {0} silumisinfo failidele, {1} neist ei ole paigaldatud" ++msgstr "" ++"Tuumatõmmis viitab {0} silumisinfo failidele, {1} neist ei ole paigaldatud" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -816,9 +902,16 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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 SUURUS:KATALOOG]... [-f SUURUS:KATALOOG]... [-p KATALOOG] [FAIL]...\n\nKustuab probleemide kataloogid (-d) või failid (-f) KATALOOGIS, kuni nad on väiksemad kui SUURUS.\nFAILid säilitatakse (ei kustutata kunagi)." ++msgstr "" ++"& [-v] [-d SUURUS:KATALOOG]... [-f SUURUS:KATALOOG]... [-p KATALOOG] [FAIL].." ++".\n" ++"\n" ++"Kustuab probleemide kataloogid (-d) või failid (-f) KATALOOGIS, kuni nad on " ++"väiksemad kui SUURUS.\n" ++"FAILid säilitatakse (ei kustutata kunagi)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -1010,7 +1103,9 @@ msgstr "" + 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." ++msgstr "" ++"Tekkis tuuma probleem, aga sinu masina tuum on ebapuhas (lipud:%s).\n" ++"Tuuma haldajad ei suuda diagnoosida ebapuhtaid raporteid." + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1030,6 +1125,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1086,10 +1182,13 @@ msgstr "" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Taasjälituse serverit ei saa kasutada, kuna krahh on liiga suur. Proovi kohalikku taasjälitust." ++msgstr "" ++"Taasjälituse serverit ei saa kasutada, kuna krahh on liiga suur. Proovi " ++"kohalikku taasjälitust." + + #. 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 +@@ -1112,10 +1211,10 @@ msgstr "Pikkusega %d HTTP päise saatmine nurjus: NSS viga %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Ootamatu HTTP vastus serverist: %d\n" + "%s" +-msgstr "Ootamatu HTTP vastus serverist: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1156,7 +1255,9 @@ msgstr "" + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Sinu krahhi suurus on %lld baiti, aga taasjälituse server võtab vastu krahhe, mis on väiksemad või võrdsed %lld baidile." ++msgstr "" ++"Sinu krahhi suurus on %lld baiti, aga taasjälituse server võtab vastu " ++"krahhe, mis on väiksemad või võrdsed %lld baidile." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1184,7 +1285,9 @@ msgstr "Üleslaadimiseks arhiivi ettevalmistamine" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Sinu arhiivi suurus on %lld baiti, aga taasjälituse server võtab vastu arhiive, mis on väiksemad või võrdsed %lld baidile." ++msgstr "" ++"Sinu arhiivi suurus on %lld baiti, aga taasjälituse server võtab vastu " ++"arhiive, mis on väiksemad või võrdsed %lld baidile." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1227,13 +1330,17 @@ msgstr "Üleslaadimine edukas" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Sinu probleemide kataloog on vigane ja taasjälituse server ei suuda seda töödelda." ++msgstr "" ++"Sinu probleemide kataloog on vigane ja taasjälituse server ei suuda seda " ++"töödelda." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Arhiiv sisaldab kahjustatud failne (nagu sümboolsed lingid) ja seega ei saa teda töödelda." ++msgstr "" ++"Arhiiv sisaldab kahjustatud failne (nagu sümboolsed lingid) ja seega ei saa " ++"teda töödelda." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1249,10 +1356,10 @@ msgstr "Taasjälituse töö alustatud" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Ülesande Id: %s\nÜlesande parool: %s\n" ++msgstr "Ülesande Id: %s\n" ++"Ülesande parool: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1260,10 +1367,10 @@ msgstr "Vigane vastus serverist: puudub X-Task-Status." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Ülesande olek: %s\n" + "%s\n" +-msgstr "Ülesande olek: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1276,7 +1383,9 @@ msgstr "Pikkusega %d HTTP päise saatmine nurjus: NSS viga %d." + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Taasjälitus nurjus. Proovi hiljem uuesti ja kui probleem jääb, siis palun teata sellest." ++msgstr "" ++"Taasjälitus nurjus. Proovi hiljem uuesti ja kui probleem jääb, siis palun " ++"teata sellest." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1372,14 +1481,17 @@ msgstr "Kohalik GNU siluja" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Laadi alla silumisinfo pakid ja genereeri tagasijälitus kasutades GDB-d" ++msgstr "" ++"Laadi alla silumisinfo pakid ja genereeri tagasijälitus kasutades GDB-d" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Peab allalaadima silumisinfo pakke, mis võtab aega ja kettaruumi. Kuid, erinevaltTaasjälituseServerist, ei saada tuumatõmmist teistesse masinatesse." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Peab allalaadima silumisinfo pakke, mis võtab aega ja kettaruumi. Kuid, " ++"erinevaltTaasjälituseServerist, ei saada tuumatõmmist teistesse masinatesse." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1387,12 +1499,18 @@ msgstr "Saada tuuma tõmmis teise taasjälituse serverisse analüüsimiseks" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Laadib tuumatõmmise serverisse, mis genereerib tagasijälituse ning tagastab selle. Eelised: ei pea silumisinfo pakke alla laadima. Taasjälituse serveri silumisinfo andemebaas on täielikum. Taasjälituse server võib genereerida parema tagasijälituse. Puudused: üleslaaditav tuumatõmmis sisaldab erinevat infot, mis programmi krahhima pani, sealhulgas ka võimalikku isiklikku infot." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Laadib tuumatõmmise serverisse, mis genereerib tagasijälituse ning tagastab " ++"selle. Eelised: ei pea silumisinfo pakke alla laadima. Taasjälituse serveri " ++"silumisinfo andemebaas on täielikum. Taasjälituse server võib genereerida " ++"parema tagasijälituse. Puudused: üleslaaditav tuumatõmmis sisaldab erinevat " ++"infot, mis programmi krahhima pani, sealhulgas ka võimalikku isiklikku infot." ++"" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1417,10 +1535,13 @@ msgstr "Kas kasutada või mitte ebaturvalist ühendust" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Kirjuta \"insecure\" lubamaks ebaturvalist ühendust <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Kirjuta \"insecure\" lubamaks ebaturvalist ühendust <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1434,7 +1555,9 @@ msgstr "Salvesta vajalikud read ~/.xsession-errors failist" + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Vaatab läbi ~/.xsession-errors faili ja salvestab read, mis sisaldavad programmi nime. Tulem salvestatakse kui 'xsession_errors' element." ++msgstr "" ++"Vaatab läbi ~/.xsession-errors faili ja salvestab read, mis sisaldavad " ++"programmi nime. Tulem salvestatakse kui 'xsession_errors' element." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1462,7 +1585,8 @@ msgstr "Väljaandja sertifikaat on vigane: '%s'." + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "Sertifikaat on allkirjastatud ebausaldusväärse väljaandja poolt: '%s'." ++msgstr "" ++"Sertifikaat on allkirjastatud ebausaldusväärse väljaandja poolt: '%s'." + + #: ../src/plugins/https-utils.c:103 + #, c-format +@@ -1610,8 +1734,8 @@ msgstr "Selle paki kohalik versioon on uuem kui saadavaloleval värskendusel" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1696,7 +1820,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1781,8 +1906,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1799,7 +1924,9 @@ msgstr "Paigalda tuuma silumisinfo pakid, genereeri tuuma logi ja uupsi teade" + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Peab paigaldama tuuma silumisinfo pakid, mis võib võtta märkmisväärselt aega ja kettaruumi." ++msgstr "" ++"Peab paigaldama tuuma silumisinfo pakid, mis võib võtta märkmisväärselt aega " ++"ja kettaruumi." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1813,7 +1940,9 @@ msgstr "Salvesta seadistus rakenduse GConfi kataloogist" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Käivitab gconftool-2 --recursive-list /apps/executable ja salvestab ta kui 'gconf_subtree' elemendi.." ++msgstr "" ++"Käivitab gconftool-2 --recursive-list /apps/executable ja salvestab ta kui " ++"'gconf_subtree' elemendi.." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1827,7 +1956,9 @@ msgstr "Salvesta /etc/vimrc ja /etc/gvimrc" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Kontrollib, kas /etc kataloogis on vimrc ja gvimrc faile ja salvestab nad vastavalt system_vimrc ja system_gvimrc." ++msgstr "" ++"Kontrollib, kas /etc kataloogis on vimrc ja gvimrc faile ja salvestab nad " ++"vastavalt system_vimrc ja system_gvimrc." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1839,9 +1970,11 @@ msgstr "Salvesta .vimrc ja .gvimrc failid kodukataloogist" + + #: ../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 "Kontrollib, kassinu kodukataloogis on .vimrc ja .gvimrc faile ja salvestab nad vastavalt user_vimrc ja user_gvimrc." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Kontrollib, kassinu kodukataloogis on .vimrc ja .gvimrc faile ja salvestab " ++"nad vastavalt user_vimrc ja user_gvimrc." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/eu.po b/po/eu.po +index e4aa132..9cda425 100644 +--- a/po/eu.po ++++ b/po/eu.po +@@ -6,17 +6,19 @@ + # Asier Iturralde Sarasola , 2012 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Basque (http://www.transifex.com/projects/p/fedora-abrt/language/eu/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Basque (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/eu/)\n" + "Language: eu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -89,7 +91,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -128,6 +132,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -142,6 +147,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -212,10 +218,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +234,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -405,10 +410,10 @@ msgstr "Programa hau root bezala exekutatu behar da." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -460,19 +465,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -606,9 +664,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -683,8 +743,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -719,6 +778,7 @@ 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" +@@ -757,7 +817,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +828,8 @@ msgid "" + " -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" ++" --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" +@@ -816,7 +878,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1030,6 +1093,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1090,6 +1154,7 @@ 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 +@@ -1112,8 +1177,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1249,8 +1313,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1260,10 +1323,10 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Atazaren egoera: %s\n" + "%s\n" +-msgstr "Atazaren egoera: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1377,8 +1440,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1387,11 +1450,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1417,9 +1480,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1605,13 +1668,14 @@ msgstr "Ez da eguneraketarik aurkitu pakete honentzat" + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" +-msgstr "Paketearen bertsio lokala eskuragarri dauden eguneraketak baino berriagoa da" ++msgstr "" ++"Paketearen bertsio lokala eskuragarri dauden eguneraketak baino berriagoa da" + + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1696,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1781,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1839,8 +1904,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/fa.po b/po/fa.po +index e4c2e95..3ff0379 100644 +--- a/po/fa.po ++++ b/po/fa.po +@@ -8,17 +8,19 @@ + # Noori , 2011 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Persian (http://www.transifex.com/projects/p/fedora-abrt/language/fa/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Persian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/fa/)\n" + "Language: fa\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -91,7 +93,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -103,7 +107,9 @@ msgstr "اخطار" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "برنامه ناحیه اخطار که کاربران را درباره جریانات یافت شده توسط ای‌بی‌ار‌تی یافت شده اند" ++msgstr "" ++"برنامه ناحیه اخطار که کاربران را درباره جریانات یافت شده توسط ای‌بی‌ار‌تی " ++"یافت شده اند" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -130,6 +136,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -144,6 +151,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "گزارش" +@@ -214,10 +222,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -231,15 +238,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -407,10 +414,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -462,19 +469,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -608,9 +668,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -685,8 +747,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -721,6 +782,7 @@ 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" +@@ -759,7 +821,8 @@ msgstr "به فرمان کاربر در حال خارج شدن است" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -769,7 +832,8 @@ msgid "" + " -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" ++" --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" +@@ -818,7 +882,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1032,6 +1097,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1092,6 +1158,7 @@ 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 +@@ -1114,8 +1181,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1251,8 +1317,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1262,8 +1327,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1379,8 +1443,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1389,11 +1453,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1419,9 +1483,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1612,8 +1676,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1698,7 +1762,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1783,8 +1848,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1841,8 +1906,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/fi.po b/po/fi.po +index d48b131..27c830f 100644 +--- a/po/fi.po ++++ b/po/fi.po +@@ -8,17 +8,19 @@ + # Ville Skyttä , 2011 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Finnish (http://www.transifex.com/projects/p/fedora-abrt/language/fi/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Finnish (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/fi/)\n" + "Language: fi\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -91,7 +93,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -103,7 +107,8 @@ msgstr "Varoitus" + #: ../src/applet/applet.c:834 + 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" ++msgstr "" ++"Ilmoitusalueen kuvake, joka kertoo käyttäjälle ABRT:n huomaamista ongelmista" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -130,6 +135,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Avaa" +@@ -144,6 +150,7 @@ msgstr "Tapahtui tunnettu ongelma" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Ilmoita" +@@ -193,7 +200,11 @@ 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" ++msgstr "" ++"& [-v] [HAK]...\n" ++"\n" ++"Ohjelma, joka huomauttaa käyttäjälle uusista ABRT:n havaitsemista " ++"ongelmista\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -214,10 +225,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -231,15 +241,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -304,7 +314,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c ASETUSTIEDOSTO] -d HAK\n\nKysele pakettitietokantaa ja tallenna paketin ja komponentin nimi" ++msgstr "" ++"& [-v] [-c ASETUSTIEDOSTO] -d HAK\n" ++"\n" ++"Kysele pakettitietokantaa ja tallenna paketin ja komponentin nimi" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -407,10 +420,10 @@ msgstr "Tämä ohjelma täytyy suorittaa pääkäyttäjänä." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -462,19 +475,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -608,9 +674,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -685,8 +753,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -721,6 +788,7 @@ 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" +@@ -759,7 +827,8 @@ msgstr "Lopetetaan, käyttäjä antoi lopetuskomennon" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -769,7 +838,8 @@ msgid "" + " -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" ++" --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" +@@ -783,7 +853,8 @@ msgstr "Ei voida avata {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Muistivedos viittaa {0} debuginfo-tiedostoon, {1} niistä ei ole asennettuna" ++msgstr "" ++"Muistivedos viittaa {0} debuginfo-tiedostoon, {1} niistä ei ole asennettuna" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -818,7 +889,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1012,7 +1084,10 @@ msgstr "" + 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." ++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:153 + #, c-format +@@ -1032,13 +1107,15 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + + #: ../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" ++msgstr "" ++"Sama kuin -d DumpLocation, DumpLocation on määritetty tiedostossa abrt.conf" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1088,10 +1165,13 @@ msgstr "" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Uudelleenjäljityspalvelinta ei voida käyttää, koska kaatumistiedot ovat liian suuret. Yritä paikallista uudelleenjäljitystä." ++msgstr "" ++"Uudelleenjäljityspalvelinta ei voida käyttää, koska kaatumistiedot ovat " ++"liian suuret. Yritä paikallista uudelleenjäljitystä." + + #. 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 +@@ -1114,10 +1194,10 @@ msgstr "HTTP-otsakkeen (pituus %d) lähetys epäonnistui: NSS-virhe %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Odottamaton HTTP-vastaus palvelimelta: %d\n" + "%s" +-msgstr "Odottamaton HTTP-vastaus palvelimelta: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1158,7 +1238,9 @@ msgstr "" + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Kaatumisen koko on %lld tavua, mutta uudelleenjäljiyspalvelin hyväksyy vain kaatumisia, joiden koko on enintään %lld tavua." ++msgstr "" ++"Kaatumisen koko on %lld tavua, mutta uudelleenjäljiyspalvelin hyväksyy vain " ++"kaatumisia, joiden koko on enintään %lld tavua." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1186,7 +1268,9 @@ msgstr "Valmistellaan arkiston lähettämistä" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Arkiston koko on %lld tavua, mutta uudelleenjäljiyspalvelin hyväksyy vain arkistoja, joiden koko on enintään %lld tavua." ++msgstr "" ++"Arkiston koko on %lld tavua, mutta uudelleenjäljiyspalvelin hyväksyy vain " ++"arkistoja, joiden koko on enintään %lld tavua." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1229,13 +1313,17 @@ msgstr "Lähetys onnistui" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Ongelmahakemisto on vioittunut eikä uudelleenjäljityspalvelin voi käsitellä sitä." ++msgstr "" ++"Ongelmahakemisto on vioittunut eikä uudelleenjäljityspalvelin voi käsitellä " ++"sitä." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Paketti sisältää vahingollisia tiedostoja kuten symbolisia linkkejä eikä sitä voida käsitellä." ++msgstr "" ++"Paketti sisältää vahingollisia tiedostoja kuten symbolisia linkkejä eikä " ++"sitä voida käsitellä." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1251,10 +1339,10 @@ msgstr "Uudelleenjäljitystyö on aloitettu" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Tehtävän tunnus: %s\nTehtävän salasana: %s\n" ++msgstr "Tehtävän tunnus: %s\n" ++"Tehtävän salasana: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1262,10 +1350,10 @@ msgstr "Virheellinen vastaus palvelimelta: puuttuva X-Task-Status." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Tehtävän tila: %s\n" + "%s\n" +-msgstr "Tehtävän tila: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1278,7 +1366,9 @@ msgstr "HTTP-otsakkeen (pituus %d) lähetys epäonnistui: NSS-virhe %d." + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Uudelleenjäljitys epäonnistui, yritä myöhemmin uudelleen. Jos ongelma ei poistu, tee siitä raportti." ++msgstr "" ++"Uudelleenjäljitys epäonnistui, yritä myöhemmin uudelleen. Jos ongelma ei " ++"poistu, tee siitä raportti." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1374,14 +1464,18 @@ msgstr "Paikallinen GNU-virheenjäljitin" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Lataa debuginfo-paketit ja luo pinolistaus paikallisesti GDB:tä käyttäen" ++msgstr "" ++"Lataa debuginfo-paketit ja luo pinolistaus paikallisesti GDB:tä käyttäen" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Debuginfo-paketit on ladattava paikallisesti, mikä saattaa viedä paljon aikaa ja levytilaa. Ei kuitenkaan lähetä muistivedosta etäkoneille, toisin kuin RetraceServer." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Debuginfo-paketit on ladattava paikallisesti, mikä saattaa viedä paljon " ++"aikaa ja levytilaa. Ei kuitenkaan lähetä muistivedosta etäkoneille, toisin " ++"kuin RetraceServer." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1389,12 +1483,17 @@ msgstr "Lähetä muistivedos etäpalvelimelle analysointavaksi" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Lähettää muistivedoksen palvelimelle, joka luo pinolistauksen ja palauttaa sen. Hyödyt: debuginfo-tiedostoja ei tarvitse ladata. Palvelimen debuginfo-tietokanta on kattavampi. Palvelin saattaa luoda parempia pinolistauksia. Haitat: lähetettävä muistivedos sisältää kaikki kaatuneen ohjelman tiedot, myös mahdolliset yksityiset tiedot." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Lähettää muistivedoksen palvelimelle, joka luo pinolistauksen ja palauttaa " ++"sen. Hyödyt: debuginfo-tiedostoja ei tarvitse ladata. Palvelimen debuginfo-" ++"tietokanta on kattavampi. Palvelin saattaa luoda parempia pinolistauksia. " ++"Haitat: lähetettävä muistivedos sisältää kaikki kaatuneen ohjelman tiedot, " ++"myös mahdolliset yksityiset tiedot." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1419,10 +1518,13 @@ msgstr "Käytetäänkö suojaamatonta yhteyttä" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Kirjoita ”insecure” suojaamattoman yhteyden sallimiseksi <https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection>(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Kirjoita ”insecure” suojaamattoman yhteyden sallimiseksi <https://" ++"fedorahosted.org/abrt/wiki/" ++"AbrtRetraceServerInsecureConnection>(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1436,7 +1538,10 @@ msgstr "Tallenna tärkeät rivit tiedostosta ~/.xsession-errors" + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Tutkii tiedoston ~/.xsession-errors ja tallentaa rivit, jotka sisältävät suoritettavan tiedoston nimen. Tulos tallennetaan ”xsession_errors”-elementtinä." ++msgstr "" ++"Tutkii tiedoston ~/.xsession-errors ja tallentaa rivit, jotka sisältävät " ++"suoritettavan tiedoston nimen. Tulos tallennetaan ”xsession_errors”-" ++"elementtinä." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1612,8 +1717,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1698,7 +1803,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1783,8 +1889,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1801,7 +1907,9 @@ msgstr "Asenna debuginfo-paketit, luo ytimen loki ja oops-viesti" + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Ytimen debuginfo-paketit on asennettava, tämä saattaa viedä paljon aikaa ja levytilaa" ++msgstr "" ++"Ytimen debuginfo-paketit on asennettava, tämä saattaa viedä paljon aikaa ja " ++"levytilaa" + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1815,7 +1923,9 @@ msgstr "Tallenna asetukset ohjelman GConf-hakemistosta" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Suorittaa gconftool-2 --recursive-list /apps/ohjelma ja tallentaa sen ”gconf_subtree”-elementtinä." ++msgstr "" ++"Suorittaa gconftool-2 --recursive-list /apps/ohjelma ja tallentaa sen " ++"”gconf_subtree”-elementtinä." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1829,7 +1939,9 @@ msgstr "Tallenna /etc/vimrc ja /etc/gvimrc" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Tarkistaa onko /etc-hakemistossa vimrc- ja gvimrc-tiedostot ja tallentaa ne system_vimrc- ja system_gvimrc-nimillä." ++msgstr "" ++"Tarkistaa onko /etc-hakemistossa vimrc- ja gvimrc-tiedostot ja tallentaa ne " ++"system_vimrc- ja system_gvimrc-nimillä." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1841,9 +1953,11 @@ msgstr "Tallenna kotihakemiston .vimrc- ja .gvimrc-tiedostot" + + #: ../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 "Tarkistaa onko kotihakemistossa .vimrc- ja .gvimrc-tiedostot ja tallentaa ne user_vimrc- ja user_gvimrc-nimillä." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Tarkistaa onko kotihakemistossa .vimrc- ja .gvimrc-tiedostot ja tallentaa ne " ++"user_vimrc- ja user_gvimrc-nimillä." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/fr.po b/po/fr.po +index 202b471..ccdc600 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -13,19 +13,22 @@ + # Sam Friedmann , 2014 + # Vincent HERBER , 2011 + # Vincent , 2011 ++# Julie Carbone , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/language/fr/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-09 12:15-0500\n" ++"Last-Translator: Julie Carbone \n" ++"Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/fr/)\n" + "Language: fr\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -40,15 +43,21 @@ 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" +-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" ++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 ?" ++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 ?" ++msgstr "" ++"Souhaitez-vous activer la soumission automatique de rapports d'incidents " ++"anonymes ?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -98,10 +107,18 @@ msgstr "Impossible de fermer la notification : %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "Vous allez mettre en sourdine les notifications d'un problème en particulier. Vous ne verrez jamais plus de bulle concernant ce problème. Cependant, ABRT le détectera et vous pourrez le rapporter à partir de l'interface utilisateur ABRT.\n\nSouhaitez-vous continuer ?" ++msgstr "" ++"Vous allez mettre en sourdine les notifications d'un problème en particulier." ++" Vous ne verrez jamais plus de bulle concernant ce problème. Cependant, ABRT " ++"le détectera et vous pourrez le rapporter à partir de l'interface " ++"utilisateur ABRT.\n" ++"\n" ++"Souhaitez-vous continuer ?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -110,11 +127,19 @@ msgstr "Avertissement" + #: ../src/applet/applet.c:834 + 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" ++msgstr "" ++"Applet de la zone de notification pour informer les utilisateurs des " ++"incidents détectés par ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "Sam Friedmann , 2009.\nAymeric Rateau , 2009, 2010.\nThomas Canniot , 2010.\nCharles-Antoine Couret , 2010.\nDominique Bribanick , 2011.\nSam Friedmann , 2011." ++msgstr "" ++"Sam Friedmann , 2009.\n" ++"Aymeric Rateau , 2009, 2010.\n" ++"Thomas Canniot , 2010.\n" ++"Charles-Antoine Couret , 2010.\n" ++"Dominique Bribanick , 2011.\n" ++"Sam Friedmann , 2011." + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -137,6 +162,7 @@ msgid "Ignore forever" + msgstr "Toujours ignorer" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Ouvrir" +@@ -151,6 +177,7 @@ msgstr "Un incident connu s'est produit" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Rapporter" +@@ -193,14 +220,20 @@ msgstr "Impossible d'activer le mode non bloquant sur le canal gio : %s" + 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" ++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:1635 + 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" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Appliquette notifiant l'utilisateur lorsque de nouveaux incidents sont " ++"détectés par ABRT\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -221,11 +254,16 @@ msgstr "Rapporter silencieusement en mode abrégé" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "Le fichier du vidage de la mémoire est nécessaire pour générer la trace de la pile — cette opération est consommatrice de temps et d'espace. ABRT dispose d'un service générant la trace de la pile à partir du vidage de la mémoire, mais vous devez téléverser ce vidage pour bénéficier du service. Si cette option est désactivée, ABRT téléversera le vidage de la mémoire sans demander la permission." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"Le fichier du vidage de la mémoire est nécessaire pour générer la trace de " ++"la pile — cette opération est consommatrice de temps et d'espace. ABRT " ++"dispose d'un service générant la trace de la pile à partir du vidage de la " ++"mémoire, mais vous devez téléverser ce vidage pour bénéficier du service. Si " ++"cette option est désactivée, ABRT téléversera le vidage de la mémoire sans " ++"demander la permission." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -233,28 +271,46 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT enregistre les données de l'incident dans des répertoires. Chaque fois que ABRT a besoin d'un répertoire dans lequel il puisse écrire, ce répertoire est déplacé de l'emplacement système vers votre répertoire personnel. Quand cette option est désactivée, ABRT déplace le répertoire des données de l'incident sans rien demander." ++msgstr "" ++"ABRT enregistre les données de l'incident dans des répertoires. Chaque fois " ++"que ABRT a besoin d'un répertoire dans lequel il puisse écrire, ce " ++"répertoire est déplacé de l'emplacement système vers votre répertoire " ++"personnel. Quand cette option est désactivée, ABRT déplace le répertoire des " ++"données de l'incident sans rien demander." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "Un « uReport » est une courte description de l'incident totalement anonyme. ABRT utilise des « uReports » pour une détection rapide et globale des doublons. Dans la configuration par défaut, le « uReport » est envoyé dès le début du processus de rapport. Quand cette option est activée, les « uReports » sont adressés automatiquement immédiatement après la détection de l'incident." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"Un « uReport » est une courte description de l'incident totalement anonyme. " ++"ABRT utilise des « uReports » pour une détection rapide et globale des " ++"doublons. Dans la configuration par défaut, le « uReport » est envoyé dès le " ++"début du processus de rapport. Quand cette option est activée, les " ++"« uReports » sont adressés automatiquement immédiatement après la détection " ++"de l'incident." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "Quand cette option est activée, le processus d'envoi de rapport initié en cliquant sur le bouton Rapporter dans la bulle de notification d'incident peut être interrompu après l'envoi du « uReport ». Vous pourrez toujours utiliser le navigateur d'incident par défaut pour faire un rapport complet." ++msgstr "" ++"Quand cette option est activée, le processus d'envoi de rapport initié en " ++"cliquant sur le bouton Rapporter dans la bulle de notification d'incident " ++"peut être interrompu après l'envoi du « uReport ». Vous pourrez toujours " ++"utiliser le navigateur d'incident par défaut pour faire un rapport complet." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "Quand cette option est activée, ABRT n'affiche aucune notification des incidents rapportés. Elle ne prend effet que si le mode rapport abrégé est activé." ++msgstr "" ++"Quand cette option est activée, ABRT n'affiche aucune notification des " ++"incidents rapportés. Elle ne prend effet que si le mode rapport abrégé est " ++"activé." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -264,7 +320,9 @@ msgstr "Demander avant de téléverser le vidage de la mémoire" + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "Quand cette option est activée, ABRT crée toujours un ticket d'anomalie à accès restreint si des données possiblement sensibles ont été détectées." ++msgstr "" ++"Quand cette option est activée, ABRT crée toujours un ticket d'anomalie à " ++"accès restreint si des données possiblement sensibles ont été détectées." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -279,7 +337,11 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "Des incidents incomplets sont détectés lorsque l'ordinateur a été éteint ou que l'utilisateur s'est déconnecté. Pour que ne soient adressés que des rapports d'incidents valables, ABRT ne vous autorise pas à soumettre ces incidents." ++msgstr "" ++"Des incidents incomplets sont détectés lorsque l'ordinateur a été éteint ou " ++"que l'utilisateur s'est déconnecté. Pour que ne soient adressés que des " ++"rapports d'incidents valables, ABRT ne vous autorise pas à soumettre ces " ++"incidents." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -311,7 +373,11 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nInterroge la base de données des paquets et enregistre le paquet et le nom du composant" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Interroge la base de données des paquets et enregistre le paquet et le nom " ++"du composant" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -374,7 +440,9 @@ msgstr "Impossible d'accéder à l'incident pour effectuer des modifications" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Échec du chown sur le répertoire. Vérifier les journaux du système pour plus de détails." ++msgstr "" ++"Échec du chown sur le répertoire. Vérifier les journaux du système pour plus " ++"de détails." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -393,14 +461,17 @@ msgstr "Il ne reste plus d'espace pour les incidents" + #: ../src/dbus/abrt-dbus.c:627 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "Impossible de supprimer l'élément « %s » du répertoire des incidents « %s »" ++msgstr "" ++"Impossible de supprimer l'élément « %s » du répertoire des incidents « %s »" + + #: ../src/dbus/abrt-dbus.c:763 ../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 "Le nom « %s » a été perdu, merci de vérifier qu'un autre service utilisant ce même nom ne tourne pas.\n" ++msgstr "" ++"Le nom « %s » a été perdu, merci de vérifier qu'un autre service utilisant " ++"ce même nom ne tourne pas.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -414,11 +485,17 @@ msgstr "Le programme doit être lancé en tant que root." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "Les données de l'incident sont incomplètes. Cela arrive généralement lorsqu'un incident est détecté lors de l'arrêt de l'ordinateur, ou lors de la déconnexion d'un utilisateur. De façon à ne fournir que des données d'incident valides, ABRT ne vous autorisera pas à soumettre cet incident. Si vous avez du temps et désirez aider les développeurs dans leur effort de résolution de cet incident, merci de les contacter directement." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"Les données de l'incident sont incomplètes. Cela arrive généralement " ++"lorsqu'un incident est détecté lors de l'arrêt de l'ordinateur, ou lors de " ++"la déconnexion d'un utilisateur. De façon à ne fournir que des données " ++"d'incident valides, ABRT ne vous autorisera pas à soumettre cet incident. Si " ++"vous avez du temps et désirez aider les développeurs dans leur effort de " ++"résolution de cet incident, merci de les contacter directement." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -443,7 +520,8 @@ msgstr "Communiquer directement à l'utilisateur" + #: ../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 »" ++msgstr "" ++"Aucun moteur disponible et le tampon est plein. Oubli de l'archive « %s »" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -455,7 +533,16 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nSurveille UPLOAD_DIRECTORY et décompresse 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" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Surveille UPLOAD_DIRECTORY et décompresse les archives entrantes dans " ++"l'emplacement\n" ++"DumpLocation indiqué dans abrt.conf\n" ++"\n" ++"Si UPLOAD_DIRECTORY n'est pas indiqué, utilise la valeur de l'option\n" ++"WatchCrashdumpArchiveDir dans abrt.conf" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -469,19 +556,74 @@ msgstr "Nombre de moteurs concurrents. La valeur par défaut est :" + 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 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "Désactive l'authentification" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Nom d'utilisateur du Support Red Hat" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++"Si le mot de passe du Support Red Hat n'est pas fourni, vous serez invité à " ++"en créer un." ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "Types ou chemins de certificat uReport SSL" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "Vous devez également indiquer --username pour --password" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "Vous pouvez utiliser --username ou --certificate" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "Vous pouvez utiliser --username ou --anonymous" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "Vous pouvez utiliser --anonymous ou --certificate" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "Nombre d'arguments non valide" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valeur de l'option inconnue : « %s »\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "Mot de passe :" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "Impossible de continuer sans mot de passe\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "Autoreporting authentifié avec HTTP" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "Autoreporting authentifié avec le Client SSL" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "Autoreporting anonyme" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -492,7 +634,16 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "Utilisation : %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbeux\n -d - Supprimer l'archive téléversée\n ABRT_SPOOL_DIR - Répertoire sur lequel les archives téléversées valides sont décompressées\n UPLOAD_DIR - Répertoire dans lequel les archives téléversées sont stockées\n FILENAME - Nom de fichier de l'archive téléversée\n" ++msgstr "" ++"Utilisation : %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbeux\n" ++" -d - Supprimer l'archive téléversée\n" ++" ABRT_SPOOL_DIR - Répertoire sur lequel les archives téléversées valides " ++"sont décompressées\n" ++" UPLOAD_DIR - Répertoire dans lequel les archives téléversées sont " ++"stockées\n" ++" FILENAME - Nom de fichier de l'archive téléversée\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -599,13 +750,17 @@ msgstr "Impossible de créer le fichier temporaire « %s »" + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-msgstr "Impossible d'écrire sur « %s ». L'incident « %s » ne pourra être supprimé des incidents ignorés « %s »" ++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:264 + #, 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 »" ++msgstr "" ++"Impossible de renommer « %s » en « %s ». Échec à la suppression de " ++"l'incident « %s »" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" +@@ -613,11 +768,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nAnalyse le backtrace C/C++, crée le hash de duplication, évalue la trace arrrière et identifie la fonction du plantage dans le répertoire DIR des incidents" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analyse le backtrace C/C++, crée le hash de duplication, évalue la trace " ++"arrrière et identifie la fonction du plantage dans le répertoire DIR des " ++"incidents" + ++#. + #. * 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" +@@ -632,7 +794,11 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nCalcule et enregistre l'UUID du vidage du processus dans le répertoire DIR des incidents" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcule et enregistre l'UUID du vidage du processus dans le répertoire DIR " ++"des incidents" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -658,14 +824,22 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\nCalcule et enregistre l'UUID et le DUPHASH pour le oops dans le répertoire des incidents DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcule et enregistre l'UUID et le DUPHASH pour le oops dans le répertoire " ++"des incidents 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\nCalcule et enregistre l'UUID et le DUPHASH pour xorg dans le répertoire des incidents DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcule et enregistre l'UUID et le DUPHASH pour xorg dans le répertoire des " ++"incidents DIR" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -677,7 +851,11 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nCalcule et enregistre l'UUID et le DUPHASH pour les vidages sur incident python" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcule et enregistre l'UUID et le DUPHASH pour les vidages sur incident " ++"python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -692,10 +870,10 @@ msgid "Extracting the oops text from core" + msgstr "Extraction du texte du oops depuis le vidage mémoire" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "Impossible de traiter {0}:\n" + "{1}" +-msgstr "Impossible de traiter {0}:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -709,14 +887,20 @@ msgstr "Extraction réussie du texte du oops" + 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" ++msgstr "" ++"Le journal du noyau indique que des erreurs matérielles ont été détectées.\n" ++"Ce problème n'est donc a priori pas logiciel.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nAnalyse du vidage mémoire dans le répertoire DIR des incidents, crée et enregistre la trace arrière" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analyse du vidage mémoire dans le répertoire DIR des incidents, crée et " ++"enregistre la trace arrière" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -728,6 +912,7 @@ 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" +@@ -738,7 +923,11 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\nCréer une trace du vidage mémoire à partir du vidage mémoire et du binaire correspondant" ++msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"Créer une trace du vidage mémoire à partir du vidage mémoire et du binaire " ++"correspondant" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -766,7 +955,8 @@ msgstr "Arrêt à la demande de l'utilisateur" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -776,13 +966,35 @@ msgid "" + " -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" ++" --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" +-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" ++msgstr "" ++"Utilisation : %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Installe debuginfos pour tous les build-ids répertoriés dans BUILD_IDS_FILE\n" ++"vers CACHEDIR, en utilisant TMPDIR comme répertoire intermédiaire temporaire." ++"\n" ++"Les 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}" +@@ -790,7 +1002,9 @@ msgstr "Impossible d'ouvrir {0} : {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Le vidage mémoire fait référence à {0} fichiers debuginfo, {1} d'entre eux n'est(ne sont) pas installé(s)" ++msgstr "" ++"Le vidage mémoire fait référence à {0} fichiers debuginfo, {1} d'entre eux " ++"n'est(ne sont) pas installé(s)" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -813,21 +1027,33 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Téléverser le vidage mémoire ? (Celui-ci peut contenir des données sensibles). Si votre réponse est « Non », une analyse locale sera effectuée (ce qui pourrait télécharger une énorme quantité de données)." ++msgstr "" ++"Téléverser le vidage mémoire ? (Celui-ci peut contenir des données " ++"sensibles). Si votre réponse est « Non », une analyse locale sera effectuée " ++"(ce qui pourrait télécharger une énorme quantité de données)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "Souhaitez-vous générer une analyse locale ? (Une énorme quantité de données peut être téléchargée, mais le rapport ne peut continuer sans trace de la pile)." ++msgstr "" ++"Souhaitez-vous générer une analyse locale ? (Une énorme quantité de données " ++"peut être téléchargée, mais le rapport ne peut continuer sans trace de la " ++"pile)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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\nSupprime les fichiers (-f) ou répertoires (-d) des incidents des répertoires DIR jusqu'à ce que leur taille soit plus petite que SIZE.\nLes FILEs sont préservés (jamais supprimés)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Supprime les fichiers (-f) ou répertoires (-d) des incidents des répertoires " ++"DIR jusqu'à ce que leur taille soit plus petite que SIZE.\n" ++"Les FILEs sont préservés (jamais supprimés)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -858,7 +1084,9 @@ msgstr "Utilisation : %s [-v]" + + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "Impossible d'obtenir le répertoire de travail actuel, celui-ci a probablement été supprimé" ++msgstr "" ++"Impossible d'obtenir le répertoire de travail actuel, celui-ci a " ++"probablement été supprimé" + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +@@ -969,11 +1197,15 @@ msgstr "Passage à une adresse invalide" + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "Accès au delà de la fin du fichier mappé, adresse invalide, accès non-aligné, etc." ++msgstr "" ++"Accès au delà de la fin du fichier mappé, adresse invalide, accès non-" ++"aligné, etc." + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "Impossible d'obtenir le n° de signal et de procéder à l'analyse d'exploitabilité\n" ++msgstr "" ++"Impossible d'obtenir le n° de signal et de procéder à l'analyse " ++"d'exploitabilité\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +@@ -996,7 +1228,11 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nSurveiller le fichier journal FILE, lancer PROG quand il grossit ou est remplacé" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Surveiller le fichier journal FILE, lancer PROG quand il grossit ou est " ++"remplacé" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1006,20 +1242,28 @@ msgstr "Ne pas lancer PROG si les chaînes STR sont introuvables" + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-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." ++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:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-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." ++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: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." ++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:153 + #, c-format +@@ -1031,7 +1275,10 @@ 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)" ++msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extrait le oops de FILE (ou de l'entrée standard)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1039,13 +1286,17 @@ 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: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" ++msgstr "" ++"Créer un nouveau répertoire d'incidents dans DIR pour chaque oops découvert" + + #: ../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" ++msgstr "" ++"Identique à l'option -d emplacement_de_vidage, l'emplacement du vidage est " ++"spécifié dans abrt.conf" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1081,7 +1332,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nExtraire les données de plantage de Xorg de FILE (ou de l'entrée standard)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extraire les données de plantage de Xorg de FILE (ou de l'entrée standard)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1089,16 +1343,20 @@ msgstr "Afficher les données de plantage sur la sortie standard" + + #: ../src/plugins/abrt-dump-xorg.c:246 + msgid "Create problem directory in DIR for every crash found" +-msgstr "Créer un répertoire d'incidents dans DIR pour chaque incident découvert" ++msgstr "" ++"Créer un répertoire d'incidents dans DIR pour chaque incident découvert" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Le serveur retrace ne peut pas être utilisé car l'incident a une taille trop importante. Veuillez essayer d'utiliser un traçage local." ++msgstr "" ++"Le serveur retrace ne peut pas être utilisé car l'incident a une taille trop " ++"importante. Veuillez essayer d'utiliser un traçage local." + + #. 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,10 +1379,10 @@ msgstr "Impossible d'envoyer l'en-tête HTTP de longueur %d : erreur NSS %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Réponse HTTP du serveur inattendue : %d\n" + "%s" +-msgstr "Réponse HTTP du serveur inattendue : %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1140,7 +1398,9 @@ msgstr "Réponse du serveur invalide : corps du message HTTP manquant." + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "Le serveur Retrace est incapable de traiter le paquet « %s.%s ».\nFait-il partie des dépôts officiels « %s » ?" ++msgstr "" ++"Le serveur Retrace est incapable de traiter le paquet « %s.%s ».\n" ++"Fait-il partie des dépôts officiels « %s » ?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1158,18 +1418,22 @@ msgstr "Le serveur a refusé votre requête." + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "« %s » doit être un fichier normal pour pouvoir utiliser le serveur Retrace." ++msgstr "" ++"« %s » doit être un fichier normal pour pouvoir utiliser le serveur Retrace." + + #: ../src/plugins/abrt-retrace-client.c:514 + #, c-format + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "La taille du vidage est de %lld octets, mais le serveur retrace accepte uniquement des incidents de taille inférieure ou égale à %lld octets." ++msgstr "" ++"La taille du vidage est de %lld octets, mais le serveur retrace accepte " ++"uniquement des incidents de taille inférieure ou égale à %lld octets." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +-msgstr "Le serveur ne prend pas en charge les archives tar compressés avec xz." ++msgstr "" ++"Le serveur ne prend pas en charge les archives tar compressés avec xz." + + #: ../src/plugins/abrt-retrace-client.c:571 + #, c-format +@@ -1193,7 +1457,9 @@ msgstr "Préparation d'une archive au téléversement" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "La taille de l'archive est de %lld octets, mais le serveur retrace accepte uniquement des archives de taille inférieure ou égale à %lld octets." ++msgstr "" ++"La taille de l'archive est de %lld octets, mais le serveur retrace accepte " ++"uniquement des archives de taille inférieure ou égale à %lld octets." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1236,13 +1502,17 @@ msgstr "Téléversement réussi" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Le répertoire des incidents est corrompu et ne peut pas être traité par le serveur retrace." ++msgstr "" ++"Le répertoire des incidents est corrompu et ne peut pas être traité par le " ++"serveur retrace." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "L'archive contient des fichiers malveillants (comme des liens symboliques) et ne peut donc pas être traitée." ++msgstr "" ++"L'archive contient des fichiers malveillants (comme des liens symboliques) " ++"et ne peut donc pas être traitée." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1258,10 +1528,10 @@ msgstr "Tâche retrace démarrée" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "ID de la tâche : %s\nMot de passe de la tâche : %s\n" ++msgstr "ID de la tâche : %s\n" ++"Mot de passe de la tâche : %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1269,23 +1539,26 @@ msgstr "Réponse du serveur invalide : X-Task-Status manquant." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "État de la tâche : %s\n" + "%s\n" +-msgstr "État de la tâche : %s\n%s\n" + + #: ../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 "Impossible d'envoyer un en-tête HTTP d'une longueur de %d : erreur NSS %d." ++msgstr "" ++"Impossible d'envoyer un en-tête HTTP d'une longueur de %d : erreur NSS %d." + + #: ../src/plugins/abrt-retrace-client.c:1160 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Le retraçage a échoué. Veuillez réessayer ultérieurement. Si l'incident persiste, veuillez le signaler." ++msgstr "" ++"Le retraçage a échoué. Veuillez réessayer ultérieurement. Si l'incident " ++"persiste, veuillez le signaler." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1299,7 +1572,9 @@ msgstr "autoriser une connexion non-sécurisée au serveur retrace" + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "ne pas vérifier si le serveur Retrace est capable de traiter un paquet donné avant de téléverser l'archive" ++msgstr "" ++"ne pas vérifier si le serveur Retrace est capable de traiter un paquet donné " ++"avant de téléverser l'archive" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1331,7 +1606,9 @@ msgstr "Retarder les opérations d'analyse" + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "(debug) ne pas supprimer l'archive temporaire créée depuis le répertoire dir dans " ++msgstr "" ++"(debug) ne pas supprimer l'archive temporaire créée depuis le répertoire dir " ++"dans " + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1349,12 +1626,15 @@ msgstr "mot de passe de votre tâche sur le serveur" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [options]\nOpérations : create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client [options]\n" ++"Opérations : create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 + msgid "Either problem directory or coredump is needed." +-msgstr "Soit le répertoire des incidents, soit le vidage mémoire est nécessaire" ++msgstr "" ++"Soit le répertoire des incidents, soit le vidage mémoire est nécessaire" + + #: ../src/plugins/abrt-retrace-client.c:1294 + #: ../src/plugins/abrt-retrace-client.c:1302 +@@ -1381,14 +1661,20 @@ msgstr "Débogueur GNU local" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Télécharger les paquets debuginfo et générer une trace arrière localement à l'aide de GDB" ++msgstr "" ++"Télécharger les paquets debuginfo et générer une trace arrière localement à " ++"l'aide de GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Le téléchargement des paquets debuginfo est nécessaire, celui-ci peut prendre longtemps et utiliser de l'espace disque. Cependant, contrairement à RetraceServer, le vidage mémoire ne sera pas envoyé sur des machines distantes." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Le téléchargement des paquets debuginfo est nécessaire, celui-ci peut " ++"prendre longtemps et utiliser de l'espace disque. Cependant, contrairement à " ++"RetraceServer, le vidage mémoire ne sera pas envoyé sur des machines " ++"distantes." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1396,12 +1682,19 @@ msgstr "Envoyer la trace mémoire au serveur retrace pour analyse " + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Téléverse le vidage du processus sur un serveur, ce qui génère une trace arrière et la renvoie. Avantages : télécharger debuginfo n'est plus nécessaire, la base de données de debuginfo du serveur Retrace est plus complète. Le serveur Retrace peut aussi générer de meilleures traces arrières. Défauts : le vidage du processus téléchargé contient toutes les données du programme en échec, y compris vos données personnelles s'il y en a." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Téléverse le vidage du processus sur un serveur, ce qui génère une trace " ++"arrière et la renvoie. Avantages : télécharger debuginfo n'est plus " ++"nécessaire, la base de données de debuginfo du serveur Retrace est plus " ++"complète. Le serveur Retrace peut aussi générer de meilleures traces " ++"arrières. Défauts : le vidage du processus téléchargé contient toutes les " ++"données du programme en échec, y compris vos données personnelles s'il y en " ++"a." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1426,10 +1719,13 @@ msgstr "Utiliser ou non une connexion non-sécurisée" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Écrire « Non-sécurisée » pour autoriser les connexions non-sécurisées <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Écrire « Non-sécurisée » pour autoriser les connexions non-sécurisées <a " ++"href=\"https://fedorahosted.org/abrt/wiki/" ++"AbrtRetraceServerInsecureConnection\" >(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1443,7 +1739,10 @@ msgstr "Enregistre les lignes pertinentes du fichier ~/.xsession-errors" + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Récole le fichier ~/.xsession-errors et enregistre les lignes contenant le nom de l'exécutable. Le résultat est enregistré en tant qu'élément « xsession_errors »." ++msgstr "" ++"Récole le fichier ~/.xsession-errors et enregistre les lignes contenant le " ++"nom de l'exécutable. Le résultat est enregistré en tant qu'élément " ++"« xsession_errors »." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1476,7 +1775,9 @@ msgstr "Le certificat est signé par un émetteur non approuvé : « %s »." + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "Le nom du sujet du certificat « %s » ne correspond pas au nom de l'hôte cible « %s »." ++msgstr "" ++"Le nom du sujet du certificat « %s » ne correspond pas au nom de l'hôte " ++"cible « %s »." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1500,7 +1801,9 @@ msgstr "Échec de l'obtention de l'emplacement « PEM Token #0 » : %d." + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "Impossible de résoudre l'adresse de l'hôte par son nom « %s » : NSS error %d." ++msgstr "" ++"Impossible de résoudre l'adresse de l'hôte par son nom « %s » : NSS error %d." ++"" + + #. Host exists, but has neither IPv4 nor IPv6?? + #: ../src/plugins/https-utils.c:203 +@@ -1552,7 +1855,8 @@ msgstr "Impossible de réinitialiser l'établissement d'une liaison." + #: ../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." ++msgstr "" ++"Impossible de terminer l'établissement de liaison SSL : erreur NSS %d." + + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." +@@ -1601,7 +1905,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nRechercher des mises à jour sur le serveur bodhi" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Rechercher des mises à jour sur le serveur bodhi" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1614,21 +1921,29 @@ msgstr "Mises à jour introuvables pour ce paquet" + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" +-msgstr "La version de ce paquet est plus récente que les mises à jour disponibles" ++msgstr "" ++"La version de ce paquet est plus récente que les mises à jour disponibles" + + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Il existe une mise à jour qui pourrait peut-être corriger votre incident. Vous pouvez l'installer en exécutant : %s. Souhaitez-vous continuer avec le signalement de l'anomalie ?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Il existe une mise à jour qui pourrait peut-être corriger votre incident. " ++"Vous pouvez l'installer en exécutant : %s. Souhaitez-vous continuer avec le " ++"signalement de l'anomalie ?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\nRechercher des oops découpés dans les fichiers. Peut les afficher ou les supprimer." ++msgstr "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"Rechercher des oops découpés dans les fichiers. Peut les afficher ou les " ++"supprimer." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1673,13 +1988,16 @@ msgstr "Traiter de multiples problèmes" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "Voir « abrt-cli COMMAND --help » pour obtenir davantage d'informations" ++msgstr "" ++"Voir « abrt-cli COMMAND --help » pour obtenir davantage d'informations" + + #: ../src/cli/list.c:127 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" ++"%sExécuter « abrt-cli report %s » pour créer un dossier dans le Portail " ++"Client Red Hat\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1696,18 +2014,24 @@ msgstr "Afficher le rapport détaillé" + + #: ../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" ++msgstr "" ++"Répertorier uniquement les problèmes plus récents que la date indiquée" + + #: ../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" ++msgstr "" ++"Répertorier uniquement les incidents plus anciens que la date indiquée" + + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-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" ++msgstr "" ++"La fonction de rapport automatique « Autoreporting » est désactivée. " ++"Veuillez envisager de l'activer en effectuant\n" ++"la commande « abrt-auto-reporting enabled » en tant qu'utilisateur root.\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1737,7 +2061,9 @@ msgstr "Affiche les seuls incidents plus récents que l'horodatage indiqué" + #: ../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 a détecté %u incident(s). Pour plus d'informations, lancer : abrt-cli list%s\n" ++msgstr "" ++"ABRT a détecté %u incident(s). Pour plus d'informations, lancer : abrt-cli " ++"list%s\n" + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1758,7 +2084,8 @@ msgstr "Actions : supprimer (rm), informations (i), ignorer (s) :" + + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "Actions : supprimer (rm), rapporter (e), informations (i), ignorer (s) :" ++msgstr "" ++"Actions : supprimer (rm), rapporter (e), informations (i), ignorer (s) :" + + #: ../src/cli/process.c:77 + #, c-format +@@ -1782,7 +2109,9 @@ msgstr "Sélectionne uniquement les problèmes détectés après l'horodatage" + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Envoyer le vidage mémoire au serveur retrace distant pour analyse ou effectuer une analyse locale si l'analyse distante échoue" ++msgstr "" ++"Envoyer le vidage mémoire au serveur retrace distant pour analyse ou " ++"effectuer une analyse locale si l'analyse distante échoue" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1790,10 +2119,19 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Téléverse le vidage mémoire sur un serveur, qui génère une trace arrière et la retourne. Si l'utilisateur ne souhaite pas téléverser le vidage mémoire où que ce soit, l'événement effectuera une analyse locale. L'analyse locale est exécutée même si l'analyse distante échoue. Avantages : il n'est pas nécessaire d'effectuer des téléchargements de fichiers debuginfo. La base de données du serveur Retrace des debuginfos est plus complète. Le serveur Retrace peut générer de meilleures traces arrières. Inconvénients : les vidages mémoire téléchargés contiennent toutes les données du programme en panne, y compris les données privées s'il y en a." ++msgstr "" ++"Téléverse le vidage mémoire sur un serveur, qui génère une trace arrière et " ++"la retourne. Si l'utilisateur ne souhaite pas téléverser le vidage mémoire " ++"où que ce soit, l'événement effectuera une analyse locale. L'analyse locale " ++"est exécutée même si l'analyse distante échoue. Avantages : il n'est pas " ++"nécessaire d'effectuer des téléchargements de fichiers debuginfo. La base de " ++"données du serveur Retrace des debuginfos est plus complète. Le serveur " ++"Retrace peut générer de meilleures traces arrières. Inconvénients : les " ++"vidages mémoire téléchargés contiennent toutes les données du programme en " ++"panne, y compris les données privées s'il y en a." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1802,13 +2140,17 @@ msgstr "Analyser le vidage mémoire" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Installe les paquets debuginfo du noyau, crée le journal du noyau et les messages oops" ++msgstr "" ++"Installe les paquets debuginfo du noyau, crée le journal du noyau et les " ++"messages oops" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Nécessite l'installation de paquets debuginfo du noyau, celle-ci peut prendre un temps important et occuper de l'espace disque." ++msgstr "" ++"Nécessite l'installation de paquets debuginfo du noyau, celle-ci peut " ++"prendre un temps important et occuper de l'espace disque." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1816,13 +2158,16 @@ msgstr "Collecter la configuration GConf" + + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" +-msgstr "Enregistre la configuration depuis le répertoire GConf de l'application" ++msgstr "" ++"Enregistre la configuration depuis le répertoire GConf de l'application" + + #: ../src/plugins/collect_GConf.xml.in.h:3 + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Exécute gconftool-2 --recursive-list /apps/executable et l'enregistre en tant qu'élément 'gconf_subtree'." ++msgstr "" ++"Exécute gconftool-2 --recursive-list /apps/executable et l'enregistre en " ++"tant qu'élément 'gconf_subtree'." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1836,7 +2181,9 @@ msgstr "Enregistre /etc/vimrc et /etc/gvimrc" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Vérifie s'il y a des fichiers vimrc et gvimrc dans /etc puis les enregistre respectivement sous system_vimrc et system_gvimrc." ++msgstr "" ++"Vérifie s'il y a des fichiers vimrc et gvimrc dans /etc puis les enregistre " ++"respectivement sous system_vimrc et system_gvimrc." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1848,9 +2195,11 @@ msgstr "Enregistre .vimrc et .gvimrc depuis votre répertoire utilisateur" + + #: ../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 "Vérifie si des fichiers .vimrc et .gvimrc se trouvent dans votre répertoire util et les enregistre respectivement sous user_vimrc and user_gvimrc." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Vérifie si des fichiers .vimrc et .gvimrc se trouvent dans votre répertoire " ++"util et les enregistre respectivement sous user_vimrc and user_gvimrc." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/ga.po b/po/ga.po +index 1ff0194..0e78be7 100644 +--- a/po/ga.po ++++ b/po/ga.po +@@ -1,21 +1,23 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Irish (http://www.transifex.com/projects/p/fedora-abrt/language/ga/)\n" ++"Language-Team: Irish (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ga/)\n" ++"Language: ga\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: ga\n" +-"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" ++"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " ++"4);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +778,7 @@ 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" +@@ -756,7 +817,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +828,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +878,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1093,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1154,7 @@ 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 +@@ -1376,8 +1442,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1482,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1761,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1847,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1857,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1904,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/gl.po b/po/gl.po +index eff902e..b46cb31 100644 +--- a/po/gl.po ++++ b/po/gl.po +@@ -6,17 +6,19 @@ + # Xosé , 2013 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Galician (http://www.transifex.com/projects/p/fedora-abrt/language/gl/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Galician (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/gl/)\n" + "Language: gl\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -89,7 +91,9 @@ msgstr "Non é posíbel fechar a notificación: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -101,7 +105,9 @@ msgstr "Advertencia" + #: ../src/applet/applet.c:834 + 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" ++msgstr "" ++"Applet para a área de notificación que informa os usuarios sobre os " ++"problemas detectados por ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -128,6 +134,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Abrir" +@@ -142,6 +149,7 @@ msgstr "Produciuse un problema coñecido" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Informe" +@@ -191,7 +199,10 @@ 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" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Applet que notifica o usuario cando o ABRT detecta problemas novos\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -212,10 +223,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +239,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -261,9 +271,10 @@ msgstr "" + msgid "Request private ticket for sensitive information" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Notificar os problemas incompletos" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" +@@ -272,9 +283,10 @@ msgid "" + "allow you to submit these problems." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +-msgstr "" ++msgstr "_Pechar" + + #: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" +@@ -302,7 +314,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nConsultar a base de datos e gravar o nome do paquete e do compoñente" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Consultar a base de datos e gravar o nome do paquete e do compoñente" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -365,7 +380,9 @@ msgstr "Non é posíbel acceder ao problema para modificar" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Fallou a execución de chown no directorio. Comprobe os rexistros do sistema para máis detalles." ++msgstr "" ++"Fallou a execución de chown no directorio. Comprobe os rexistros do sistema " ++"para máis detalles." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -384,14 +401,17 @@ msgstr "Non fica espazo para os problemas" + #: ../src/dbus/abrt-dbus.c:627 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "Non é posíbel eliminar o elemento «%s» do directorio de problemas «%s»" ++msgstr "" ++"Non é posíbel eliminar o elemento «%s» do directorio de problemas «%s»" + + #: ../src/dbus/abrt-dbus.c:763 ../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 "Perdeuse o nome «%s»; comprobe se outro servizo que posúa o nome non está en execución.\n" ++msgstr "" ++"Perdeuse o nome «%s»; comprobe se outro servizo que posúa o nome non está en " ++"execución.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -405,11 +425,17 @@ msgstr "Este programa débese executar como administrador." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "Os datos do problema están incompletos. Isto habitualmente acontece cando se detecta un problema mentres o computador se está a apagar ou o usuario está fechando a sesión. Para fornecer informes de problemas de algún valor, o ABRT non permite remitir este problema. Se dispón de tempo e desexa axudar os desenvolvedores no seu esforzo para solucionar este problema, contacte con eles directamente." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"Os datos do problema están incompletos. Isto habitualmente acontece cando se " ++"detecta un problema mentres o computador se está a apagar ou o usuario está " ++"fechando a sesión. Para fornecer informes de problemas de algún valor, o " ++"ABRT non permite remitir este problema. Se dispón de tempo e desexa axudar " ++"os desenvolvedores no seu esforzo para solucionar este problema, contacte " ++"con eles directamente." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -460,19 +486,73 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:251 ++msgid "Invalid number of arguments" ++msgstr "O número de argumentos é incorrecto" ++ ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -590,13 +670,16 @@ msgstr "Non é posíbel crear o ficheiro temporal «%s»" + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-msgstr "Non é posíbel escribir en «%s». Non se vai retirar o problema «%s» dos problemas ignorados «%s»" ++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:264 + #, 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»" ++msgstr "" ++"Non é posíbel renomear «%s» como «%s». Fallou a retirada do problema «%s»" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" +@@ -604,11 +687,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [opcións] -d DIR\n\nAnaliza o trazado inverso de C/C++, xera un hash de duplicación, puntuación do trazado inverso,\ne identifica a función de falla no directorio de problemas DIR" ++msgstr "" ++"& [opcións] -d DIR\n" ++"\n" ++"Analiza o trazado inverso de C/C++, xera un hash de duplicación, puntuación " ++"do trazado inverso,\n" ++"e identifica a función de falla no directorio de problemas DIR" + ++#. + #. * 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" +@@ -623,7 +713,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nCalcula e grava o UUID do envorcado do core no directorio de problemas DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcula e grava o UUID do envorcado do core no directorio de problemas DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -649,14 +742,20 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\nCalcula e grava o UUID e o DUPHASH do directorio de problemas DIR de oops" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcula e grava o UUID e o DUPHASH do directorio de problemas DIR de oops" + + #: ../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\nCalcula e grava o UUID e o DUPHASH do directorio de problemas DIR de xorg" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcula e grava o UUID e o DUPHASH do directorio de problemas DIR de xorg" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -668,7 +767,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nCalcula e grava o UUID e o DUPHASH dos envorcados dos fallos de python" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcula e grava o UUID e o DUPHASH dos envorcados dos fallos de python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -682,11 +784,12 @@ msgstr "O ficheiro {0} non existe" + msgid "Extracting the oops text from core" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "Non é posíbel procesar {0}:\n" + "{1}" +-msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -707,7 +810,11 @@ msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [-v] -d DIR\n\nAnaliza o do envorcado do core no directorio de problemas DIR, xera e grava un trazado inverso" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Analiza o do envorcado do core no directorio de problemas DIR, xera e grava " ++"un trazado inverso" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -719,6 +826,7 @@ 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" +@@ -757,7 +865,8 @@ msgstr "A saír por orde do usuario" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +876,8 @@ msgid "" + " -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" ++" --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" +@@ -816,7 +926,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -974,9 +1085,10 @@ msgstr "" + msgid "Exploitable rating (0-9 scale): " + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "Instrucciń actual:" + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +@@ -1030,6 +1142,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1090,6 +1203,7 @@ 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 +@@ -1112,8 +1226,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1145,11 +1258,14 @@ msgstr "" + msgid "The server denied your request." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:484 + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." + msgstr "" ++"«%s» ten que ser un ficheiro normal para poder empregar un servidor de " ++"Retrace." + + #: ../src/plugins/abrt-retrace-client.c:514 + #, c-format +@@ -1247,12 +1363,13 @@ msgstr "" + msgid "Retrace job started" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "" ++msgstr "Identificador da tarefa: %s\n" ++"Constrasinal da tarefa: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1260,8 +1377,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1377,8 +1493,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1387,11 +1503,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1417,9 +1533,9 @@ msgstr "Se empregar ou non unha conexión insegura" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1575,9 +1691,10 @@ msgstr "" + msgid "Failed to shutdown NSS." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:375 + msgid "List of bug ids" +-msgstr "" ++msgstr "Lista de identificadores dos fallos" + + #: ../src/plugins/bodhi.c:376 + msgid "Specify a bodhi server url" +@@ -1594,25 +1711,32 @@ msgid "" + "Search for updates on bodhi server" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +-msgstr "" ++msgstr "A buscar actualizacións" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:440 + msgid "No updates for this package found" +-msgstr "" ++msgstr "Non se atopou ningunha actualización para este paquete" + ++# translation auto-copied from project abrt, version master, document abrt + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" + msgstr "" ++"A versión do paquete local é máis recente que as actualizacións dispoñíbeis" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" ++"Existe unha actualización que podería arranxar o problema. Pódea instalar " ++"executando %s. Desexa continuar informando sobre este fallo?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" +@@ -1696,7 +1820,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1773,7 +1898,9 @@ msgstr "" + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Enviar o envorcado do core ao servidor remoto de retrazados para analizar ou realizar unha análise local se a análise remota falla" ++msgstr "" ++"Enviar o envorcado do core ao servidor remoto de retrazados para analizar ou " ++"realizar unha análise local se a análise remota falla" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1781,8 +1908,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1819,9 +1946,10 @@ msgstr "" + msgid "Collect system-wide vim configuration files" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" +-msgstr "" ++msgstr "Gardar /etc/vimrc e /etc/gvimrc" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:3 + msgid "" +@@ -1833,15 +1961,19 @@ msgstr "" + msgid "Collect yours vim configuration files" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" +-msgstr "" ++msgstr "Gardar .vimc e .gvimrc do seu directorio persoal" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" ++"Comproba se existen .vimrc e .gvimrc no seu directorio persoal e gárdaow " ++"como user_vimrc e user_gvimrc, respectivamente." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/gu.po b/po/gu.po +index 02fa599..41d42e3 100644 +--- a/po/gu.po ++++ b/po/gu.po +@@ -8,19 +8,22 @@ + # Keralkumar Patel , 2014 + # sweta , 2013 + # sweta , 2014 ++# sweta , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-23 07:05+0000\n" +-"Last-Translator: Ankit Patel \n" +-"Language-Team: Gujarati (http://www.transifex.com/projects/p/fedora-abrt/language/gu/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-06 02:37-0500\n" ++"Last-Translator: sweta \n" ++"Language-Team: Gujarati (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/gu/)\n" + "Language: gu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -35,7 +38,10 @@ 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" +-msgstr "જે અહેવાલ મોકલવામાં આવશે તેમાં કોઇ સુરક્ષા સંવેદનશીલ માહિતી સમાયેલી નથી. તેથી ભવિષ્યમાં તેના માટે તમને પરેશાન કરવું જરૂરી નથી અને તમારા તરફથી કોઇપણ પ્રતિક્રિયા પર જરૂરી નથી. \n" ++msgstr "" ++"જે અહેવાલ મોકલવામાં આવશે તેમાં કોઇ સુરક્ષા સંવેદનશીલ માહિતી સમાયેલી નથી. " ++"તેથી ભવિષ્યમાં તેના માટે તમને પરેશાન કરવું જરૂરી નથી અને તમારા તરફથી કોઇપણ " ++"પ્રતિક્રિયા પર જરૂરી નથી. \n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +@@ -93,10 +99,17 @@ msgstr "સૂચનાને બંધ કરી શકાતી નથી: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "તમે ખાસ સમસ્યાઓની સૂચનાઓને મૂંગી કરી રહ્યા છો. તમે ફરી આ સમસ્યા માટે સૂચના બબલને કદી જોશો નહિં, છતાંપણ, ABRT તેને શોધશે અને તમે ABRT GUI માંથી તેનો અહેવાલ કરવા માટે સક્ષમ હશો.\n\nશું તમે ચાલુ રાખવા માંગો છો?" ++msgstr "" ++"તમે ખાસ સમસ્યાઓની સૂચનાઓને મૂંગી કરી રહ્યા છો. તમે ફરી આ સમસ્યા માટે સૂચના " ++"બબલને કદી જોશો નહિં, છતાંપણ, ABRT તેને શોધશે અને તમે ABRT GUI માંથી તેનો " ++"અહેવાલ કરવા માટે સક્ષમ હશો.\n" ++"\n" ++"શું તમે ચાલુ રાખવા માંગો છો?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -105,7 +118,9 @@ msgstr "ચેતવણી" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "સૂચના વિસ્તાર એપલેટ કે જે ABRT દ્દારા શોધેલ મુદ્દાઓ વિશે વપરાશકર્તાને સૂચિત કરે છે" ++msgstr "" ++"સૂચના વિસ્તાર એપલેટ કે જે ABRT દ્દારા શોધેલ મુદ્દાઓ વિશે વપરાશકર્તાને સૂચિત " ++"કરે છે" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -132,6 +147,7 @@ msgid "Ignore forever" + msgstr "હંમેશ માટે અવગણો" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "ખોલો" +@@ -146,6 +162,7 @@ msgstr "જાણીતી સમસ્યા ઉદ્ભવી" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "અહેવાલ" +@@ -188,14 +205,20 @@ msgstr "gio ચેનલ માટે બ્લોક ન થાય તેવી + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "સત્ર સંચાલકમાં જોડાણને ખોલવા માટે નિષ્ફળતા: '%s', સૂચના એ આગળનાં પર્વેશે ફરી દેખાઇ શકે છે" ++msgstr "" ++"સત્ર સંચાલકમાં જોડાણને ખોલવા માટે નિષ્ફળતા: '%s', સૂચના એ આગળનાં પર્વેશે ફરી " ++"દેખાઇ શકે છે" + + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nએપલેટ કે જે વપરાશકર્તાને સૂચન કરે છે જ્યારે નવી સમસ્યાઓ ABRT દ્દારા શોધાયેલ છે\n" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"એપલેટ કે જે વપરાશકર્તાને સૂચન કરે છે જ્યારે નવી સમસ્યાઓ ABRT દ્દારા શોધાયેલ " ++"છે\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -216,11 +239,14 @@ msgstr "નિઃશબ્દ ટૂંકો અહેવાલ કરો" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "કોરડમ્પ ફાઇલ સ્ટેક ટ્રીને પેદા કરવા માટે જરૂરી છે કે જે આ ક્રિયાનો સમય અને જગ્યા લે છે. ABRT સેવાને પૂરી પાડે છે કે જે કોરડમ્પમાંથી સ્ટેક ટ્રેસને પેદા કરે છે પરંતુ તમારે આ સેવા માટે કોરડમ્પને અપલોડ કરવુ જ પડશે. આ નિષ્ક્રિય થયેલ આ વિકલ્પ સાથે ABRT એ પૂછ્યા વગર કોરડમ્પને અપલોડ કરશે." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"કોરડમ્પ ફાઇલ સ્ટેક ટ્રીને પેદા કરવા માટે જરૂરી છે કે જે આ ક્રિયાનો સમય અને " ++"જગ્યા લે છે. ABRT સેવાને પૂરી પાડે છે કે જે કોરડમ્પમાંથી સ્ટેક ટ્રેસને પેદા " ++"કરે છે પરંતુ તમારે આ સેવા માટે કોરડમ્પને અપલોડ કરવુ જ પડશે. આ નિષ્ક્રિય થયેલ " ++"આ વિકલ્પ સાથે ABRT એ પૂછ્યા વગર કોરડમ્પને અપલોડ કરશે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -228,28 +254,42 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT એ ડિરેક્ટરીઓમાં સમસ્યા માહિતીનો સંગ્રહ કરે છે. ગમે ત્યારે ABRT ને લખી શકાય તેવી ડિરેક્ટરીની જરૂર પડે, ડિરેક્ટરી તમારી ઘર ડિરેક્ટરીમાં સિસ્ટમ સ્થાનમાંથી ખસેડેલ છે. નિષ્ક્રિય થયેલ આ વિકલ્પ સાથે ABRT એ પૂછ્યા વગર સમસ્યા ડિરેક્ટરીને ખસેડશે." ++msgstr "" ++"ABRT એ ડિરેક્ટરીઓમાં સમસ્યા માહિતીનો સંગ્રહ કરે છે. ગમે ત્યારે ABRT ને લખી " ++"શકાય તેવી ડિરેક્ટરીની જરૂર પડે, ડિરેક્ટરી તમારી ઘર ડિરેક્ટરીમાં સિસ્ટમ " ++"સ્થાનમાંથી ખસેડેલ છે. નિષ્ક્રિય થયેલ આ વિકલ્પ સાથે ABRT એ પૂછ્યા વગર સમસ્યા " ++"ડિરેક્ટરીને ખસેડશે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport એ ટૂંકો છે અને સંપૂર્ણપણે સમસ્યાનું અનામિક વર્ણન છે. ABRT એ ઝડપી વૈશ્ર્વિક નકલી શોધ માટે uReports ને વાપરે છે. મૂળભૂત રૂપરેખાંકન uReports માં અહેવાલીકરણ પ્રક્રિયાની શરૂઆતમાં મોકલેલ છે. સક્રિય થયેલ આ વિકલ્પ સાથે uReports સમસ્યા શોધ પછી તરતજ આપમેળે મોકલેલ છે." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport એ ટૂંકો છે અને સંપૂર્ણપણે સમસ્યાનું અનામિક વર્ણન છે. ABRT એ ઝડપી " ++"વૈશ્ર્વિક નકલી શોધ માટે uReports ને વાપરે છે. મૂળભૂત રૂપરેખાંકન uReports માં " ++"અહેવાલીકરણ પ્રક્રિયાની શરૂઆતમાં મોકલેલ છે. સક્રિય થયેલ આ વિકલ્પ સાથે " ++"uReports સમસ્યા શોધ પછી તરતજ આપમેળે મોકલેલ છે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "સમસ્યા સૂચના બબલમાં અહેવાલ બટન પર ક્લિક દ્દારા શરૂ થયેલ સક્રિય થયેલ અહેવાલીકરણ પ્રક્રિયા આ વિકલ્પ સાથે uReport ને મોકલેલ છે તેનાં પછી અવરોધાયેલ છે. તમે અહેવાલને સમાપ્ત કરવા માટે મૂળભૂત સમસ્યા બ્રાઉઝરને હંમેશા વાપરી શકે છે." ++msgstr "" ++"સમસ્યા સૂચના બબલમાં અહેવાલ બટન પર ક્લિક દ્દારા શરૂ થયેલ સક્રિય થયેલ " ++"અહેવાલીકરણ પ્રક્રિયા આ વિકલ્પ સાથે uReport ને મોકલેલ છે તેનાં પછી અવરોધાયેલ " ++"છે. તમે અહેવાલને સમાપ્ત કરવા માટે મૂળભૂત સમસ્યા બ્રાઉઝરને હંમેશા વાપરી શકે " ++"છે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "સક્રિય થયેલ આ વિકલ્પ સાથે ABRT એ અહેવાલ થયેલ સમસ્યાઓની સૂચનાઓને બતાવે છે. ફક્ત અસર થાય છે જો ટૂંકા અહેવાલને સક્રિય કરે છે." ++msgstr "" ++"સક્રિય થયેલ આ વિકલ્પ સાથે ABRT એ અહેવાલ થયેલ સમસ્યાઓની સૂચનાઓને બતાવે છે. " ++"ફક્ત અસર થાય છે જો ટૂંકા અહેવાલને સક્રિય કરે છે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -259,7 +299,9 @@ msgstr "Coredump અપલોડ કરતા પહેલા પૂછો " + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "સક્રિય થયેલ આ વિકલ્પ સાથે ABRT મર્યાદિત પ્રવેશ સાથે હંમેશા ભૂલ ટિકિટને બનાવે છે જો શક્ય સંવેદનશીલ માહિતીને શોધેલ છે." ++msgstr "" ++"સક્રિય થયેલ આ વિકલ્પ સાથે ABRT મર્યાદિત પ્રવેશ સાથે હંમેશા ભૂલ ટિકિટને બનાવે " ++"છે જો શક્ય સંવેદનશીલ માહિતીને શોધેલ છે." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -274,7 +316,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "અપૂરતી સમસ્યાઓ શોધેલ છે જ્યારે કમ્પ્યૂટરને બંધ કરી રહ્યા હોય અથવા વપરાશકર્તા બહાર નીકળી રહ્યા હોય. કિંમતી સમસ્યા અહેવાલને પૂરુ પાડલા ક્રમમાં, ABRT એ આ સમસ્યાઓને સમાવવા માટે તમમે પરવાનગી આપશે નહિં." ++msgstr "" ++"અપૂરતી સમસ્યાઓ શોધેલ છે જ્યારે કમ્પ્યૂટરને બંધ કરી રહ્યા હોય અથવા વપરાશકર્તા " ++"બહાર નીકળી રહ્યા હોય. કિંમતી સમસ્યા અહેવાલને પૂરુ પાડલા ક્રમમાં, ABRT એ આ " ++"સમસ્યાઓને સમાવવા માટે તમમે પરવાનગી આપશે નહિં." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -306,7 +351,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nક્વેરી પેકેજ ડેટાબેઝ અને પેકેજ અને ઘટક નામ સંગ્રહો" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"ક્વેરી પેકેજ ડેટાબેઝ અને પેકેજ અને ઘટક નામ સંગ્રહો" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -395,7 +443,9 @@ msgstr "સમસ્યા ડિરેક્ટરી '%s' માંથી ઘ + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "નામ '%s' ગુમ થઇ ગયુ છે, મહેરબાની કરીને ચકાસો જો માલિકી ધરાવતા નામ વાળી બીજી સેવા ચાલી રહી નથી.\n" ++msgstr "" ++"નામ '%s' ગુમ થઇ ગયુ છે, મહેરબાની કરીને ચકાસો જો માલિકી ધરાવતા નામ વાળી બીજી " ++"સેવા ચાલી રહી નથી.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -409,11 +459,17 @@ msgstr "આ કાર્યક્રમ રુટ તરીકે જ ચલા + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 આ સમસ્યાને સમાવવા માટે તમને પરવાનગી આપશે નહિં. જો તમારી પાસે સમય હોય તો અને આ સમસ્યાનો ઉકેલ લાવવા માટે ડેવલપરને તેનાં કામમાં મદદ કરવા માંગો છો. મહેરબાની કરીને સીધુ જ તેઓ સાથે સંપર્ક કરો." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 આ સમસ્યાને સમાવવા માટે " ++"તમને પરવાનગી આપશે નહિં. જો તમારી પાસે સમય હોય તો અને આ સમસ્યાનો ઉકેલ લાવવા " ++"માટે ડેવલપરને તેનાં કામમાં મદદ કરવા માંગો છો. મહેરબાની કરીને સીધુ જ તેઓ સાથે " ++"સંપર્ક કરો." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -450,7 +506,16 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nUPLOAD_DIRECTORY ધ્યાન રાખે છે અને આ DumpLocation માં આવતી પેટીને અનપેક કરે છે\nabrt.conf માં સ્પષ્ટ થયેલ છે\n\nજો UPLOAD_DIRECTORY પૂરી પાડેલ ન હોય તો, abrt.conf માંથી\nWatchCrashdumpArchiveDir વિકલ્પની કિંમતને વાપરે છે" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"UPLOAD_DIRECTORY ધ્યાન રાખે છે અને આ DumpLocation માં આવતી પેટીને અનપેક કરે " ++"છે\n" ++"abrt.conf માં સ્પષ્ટ થયેલ છે\n" ++"\n" ++"જો UPLOAD_DIRECTORY પૂરી પાડેલ ન હોય તો, abrt.conf માંથી\n" ++"WatchCrashdumpArchiveDir વિકલ્પની કિંમતને વાપરે છે" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -464,19 +529,73 @@ msgstr "સહવર્તી કામદારો સંખ્યા. મૂ + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB માં મહત્તમ કેશ માપ. મૂળભૂત છે" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "સત્તાધિકરણને બંધ કરો" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Red Hat Support વપરાશકર્તા નામ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++"Red Hat Support પાસવર્ડ, જો આપેલ ન હોય તો, તેની માટે પ્રોમ્પ્ટ કરવામાં આવશે" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "uReport SSL પ્રમાણપત્ર પાથ અથવા પ્રમાણપત્ર પ્રકાર" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "તમારે --password માટે --username ને પણ સ્પષ્ટ કરવુ જ જોઇએ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "તમારે ક્યાંતો --username અથવા --certificate ને વાપરી શકો છો" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "તમે ક્યાંતો --username અથવા --anonymous ને વાપરી શકો છો" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "તમે ક્યાંતો --anonymous અથવા --certificate વાપરી શકો છો" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "દલીલોની અયોગ્ય સંખ્યા" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "અજ્ઞાત વિકલ્પ કિંમત: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "પાસવર્ડ:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "પાસવર્ડ વગર ચાલુ કરી શકાતુ નથી\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "HTTP સત્તાધિકરણ થયેલ આપોઆપ અહેવાલીકરણ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "SSL ક્લાયન્ટ સત્તાધિકરણ થયેલ આપોઆપ અહેવાલીકરણ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "અનામિક આપોઆપ અહેવાલીકરણ" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -487,7 +606,14 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "વપરાશ: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - વર્બોસ\n -d - અપલોડ થયેલ પેટીને કાઢો\n ABRT_SPOOL_DIR - ડિરેક્ટરી જ્યાં યોગ્ય અપલોડ થયેલ પેટીઓ તેમાં ખોલેલ છે\n UPLOAD_DIR - ડિરેક્ટરી જ્યાં અપલોડ થયેલ પેટીઓ સંગ્રહેલ છે\n FILENAME - અપલોડ થયેલ પેટી ફાઇલ નામ\n" ++msgstr "" ++"વપરાશ: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - વર્બોસ\n" ++" -d - અપલોડ થયેલ પેટીને કાઢો\n" ++" ABRT_SPOOL_DIR - ડિરેક્ટરી જ્યાં યોગ્ય અપલોડ થયેલ પેટીઓ તેમાં ખોલેલ છે\n" ++" UPLOAD_DIR - ડિરેક્ટરી જ્યાં અપલોડ થયેલ પેટીઓ સંગ્રહેલ છે\n" ++" FILENAME - અપલોડ થયેલ પેટી ફાઇલ નામ\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -594,13 +720,15 @@ msgstr "કામચલાઉ ફાઇલ '%s' ને બનાવી શકા + 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:264 + #, 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 "" +@@ -608,11 +736,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nC/C++ બેકટ્રેસનું વિશ્ર્લેષણ કરે છે, નકલી હૅશને ઉત્પન્ન કરે છે, બેકટ્રેસ રેટીંગ,\nઅને સમસ્યા ડિરેક્ટરીમાં ભંગાણ વિધેયને ઓળખે છે" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"C/C++ બેકટ્રેસનું વિશ્ર્લેષણ કરે છે, નકલી હૅશને ઉત્પન્ન કરે છે, બેકટ્રેસ " ++"રેટીંગ,\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" +@@ -627,7 +762,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nસમસ્યા ડિરેક્ટરી DIR માં coredump ની UUID ની ગણતરી અને સંગ્રહ કરે છે" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"સમસ્યા ડિરેક્ટરી DIR માં coredump ની UUID ની ગણતરી અને સંગ્રહ કરે છે" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -653,14 +791,20 @@ 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" ++"\n" ++"oops સમસ્યા ડિરેક્ટરી DIR માટે UUID અને DUPHASH ની ગણતરી અને સંગ્રહ થાય છે" + + #: ../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" ++"\n" ++"xorg સમસ્યા ડિરેક્ટરી DIR માટે UUID અને DUPHASH ની ગણતરી અને સંગ્રહ થાય છે" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -672,7 +816,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\npython ભંગાણ ડમ્પની UUID અને DUPHASH ની ગણતરી અને સંગ્રહ કરે છે" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"python ભંગાણ ડમ્પની UUID અને DUPHASH ની ગણતરી અને સંગ્રહ કરે છે" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -687,10 +834,10 @@ msgid "Extracting the oops text from core" + msgstr "કૉરમાંથી oops ને કાઢી રહ્યા છે" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "પ્રક્રિયા {0} કરી શકાતી નથી:\n" + "{1}" +-msgstr "પ્રક્રિયા {0} કરી શકાતી નથી:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -704,14 +851,20 @@ msgstr "Oops લખાણને સફળતાપૂર્વક કાઢી + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "કર્નલ લૉગ સૂચવે છે કે હાર્ડવેર ભૂલો મળી આવી હતી.\nઆ મોટે ભાગે સોફ્ટવેર સમસ્યા નથી.\n" ++msgstr "" ++"કર્નલ લૉગ સૂચવે છે કે હાર્ડવેર ભૂલો મળી આવી હતી.\n" ++"આ મોટે ભાગે સોફ્ટવેર સમસ્યા નથી.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nસમસ્યા ડિરેક્ટરી DIR માં coredump નું વિશ્ર્લેષણ થાય છે, બેકટ્રેસને ઉત્પન્ન અને સંગ્રહ કરે છે" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"સમસ્યા ડિરેક્ટરી DIR માં coredump નું વિશ્ર્લેષણ થાય છે, બેકટ્રેસને ઉત્પન્ન " ++"અને સંગ્રહ કરે છે" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -723,6 +876,7 @@ 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" +@@ -733,7 +887,10 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\nકોર ડમ્પ અને અનૂકુળ બાઇનરીમાંથી coredump-level બેકટ્રેસને બનાવે છે" ++msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"કોર ડમ્પ અને અનૂકુળ બાઇનરીમાંથી coredump-level બેકટ્રેસને બનાવે છે" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -761,7 +918,8 @@ msgstr "વપરાશકર્તા આદેશ પરથી બહાર + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -771,13 +929,34 @@ msgid "" + " -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" ++" --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" +-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" ++msgstr "" ++"વપરાશ: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"debuginfos ને BUILD_IDS_FILE માં યાદી થયેલા બધા build-ids માટે\n" ++"CACHEDIR માં, કામચલાઉ સ્ટેજીંગ ક્ષેત્ર તરીકે TMPDIR ની મદદથી સ્થાપિત કરે છે.\n" ++"CACHEDIR માંની જૂની ફાઇલો જ્યાં સુધી તે 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}" +@@ -785,7 +964,9 @@ msgstr "{0} ખોલી શકાતુ નથી: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Coredump એ {0} debuginfo ફાઇલોનો સંદર્ભ આપે છે, તેઓમાંનુ {1} સ્થાપિત થયેલ નથી" ++msgstr "" ++"Coredump એ {0} debuginfo ફાઇલોનો સંદર્ભ આપે છે, તેઓમાંનુ {1} સ્થાપિત થયેલ " ++"નથી" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -808,21 +989,33 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "શું કૉર ડમ્પને અપલોડ કરવાનું બરાબર છે? (તે સંવેદનશીલ માહિતીને સમાવી શકે છે). જો તમારો જવાબ 'ના' હોય તો, સ્ટેક ટ્રેસ સ્થાનિક રીતે ઉત્પન્ન કરાશે. (તે વિશાળ પ્રમાણમાં માહિતીને ડાઉનલોડ કરી શકે છે)." ++msgstr "" ++"શું કૉર ડમ્પને અપલોડ કરવાનું બરાબર છે? (તે સંવેદનશીલ માહિતીને સમાવી શકે છે). " ++"જો તમારો જવાબ 'ના' હોય તો, સ્ટેક ટ્રેસ સ્થાનિક રીતે ઉત્પન્ન કરાશે. (તે વિશાળ " ++"પ્રમાણમાં માહિતીને ડાઉનલોડ કરી શકે છે)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"સ્ટૅક ટ્રેસને સ્થાનિક રીતે ઉત્પન્ન કરતા તમે માંગો છો? (તે વિશાળ પ્રમાણમાં " ++"માહિતીને ડાઉનલોડ કરી શકે છે પરંતુ સ્ટેક ટ્રેસ વગર અહેવાલીકરણને ચાલુ રાખી " ++"શકાતુ નથી)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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\nDIRs માં સમસ્યા ડિરેક્ટરીઓ (-d) અથવા ફાઇલો (-f) ને કાઢી નાંખે છે જ્યાં સુધી તેઓ SIZE કરતા નાનું હોય.\nFILEs સાચવેલ છે (ક્યારેય કાઢી નાંખેલ નથી)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"DIRs માં સમસ્યા ડિરેક્ટરીઓ (-d) અથવા ફાઇલો (-f) ને કાઢી નાંખે છે જ્યાં સુધી " ++"તેઓ SIZE કરતા નાનું હોય.\n" ++"FILEs સાચવેલ છે (ક્યારેય કાઢી નાંખેલ નથી)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -964,7 +1157,8 @@ 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" +@@ -991,7 +1185,10 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nવૉચ લૉગ ફાઇલ FILE, PROG ચલાવો જ્યારે તે વિકસે અથવા બદલાય" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"વૉચ લૉગ ફાઇલ FILE, PROG ચલાવો જ્યારે તે વિકસે અથવા બદલાય" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1001,20 +1198,26 @@ msgstr "PROG ને ચલાવાતુ નથી જો STRs મળ્યુ + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "બગડેલા BIOS ના કારણે કર્નલ સમસ્યા ઉદ્ભવી. કમનસીબે, આવી સમસ્યાઓ કર્નલના માલિકોથી સુધારી શકાતી નથી." ++msgstr "" ++"બગડેલા BIOS ના કારણે કર્નલ સમસ્યા ઉદ્ભવી. કમનસીબે, આવી સમસ્યાઓ કર્નલના " ++"માલિકોથી સુધારી શકાતી નથી." + + #: ../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: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). કર્નલ સંચાલકો દૂષિત થયેલ અહેવાલોનું નિદાન કરવા માટે અસક્ષમ છે." ++msgstr "" ++"કર્નલ સમસ્યા ઉદ્ભવી, પરંતુ તમારુ કર્નલને દૂષિત કરવામાં આવ્યુ છે (ફ્લેગ:%s). " ++"કર્નલ સંચાલકો દૂષિત થયેલ અહેવાલોનું નિદાન કરવા માટે અસક્ષમ છે." + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1026,7 +1229,10 @@ 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" ++"\n" ++"FILE માંથી oops ને કાઢો (અથવા મૂળભૂત ઇનપુટ)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1034,6 +1240,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "મળેલ દરેક oops માટે DIR માં નવી સમસ્યા ડિરેક્ટરીને બનાવો" +@@ -1076,7 +1283,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nFILE માંથી Xorg ભંગાણને કાઢો (અથવા મૂળભૂત ઇનપુટ)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"FILE માંથી Xorg ભંગાણને કાઢો (અથવા મૂળભૂત ઇનપુટ)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1090,10 +1300,13 @@ msgstr "મળેલ દરેક ભંગાણ માટે DIR માં સ + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "રિટ્રેસ સર્વરને વાપરી શકાતુ નથી, કારણ કે ભંગાણ બહુ વધારે છે. સ્થાનિક રિટ્રેસને વાપરો." ++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,10 +1329,10 @@ msgstr "લંબાઇ %d નાં HTTP હેડરને મોકલામ + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "સર્વરમાંથી અનિચ્છનીય HTTP જવાબ: %d\n" + "%s" +-msgstr "સર્વરમાંથી અનિચ્છનીય HTTP જવાબ: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1135,7 +1348,9 @@ msgstr "સર્વરમાંથી અયોગ્ય જવાબ: ગુ + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "રિટ્રેસ સર્વર પેકેજ '%s.%s' નું પ્રક્રિયા કરવામાં અસમર્થ છે.\nશું તે ઑફિસીયલ '%s' રિપોઝીટરીઓનો ભાગ છે?" ++msgstr "" ++"રિટ્રેસ સર્વર પેકેજ '%s.%s' નું પ્રક્રિયા કરવામાં અસમર્થ છે.\n" ++"શું તે ઑફિસીયલ '%s' રિપોઝીટરીઓનો ભાગ છે?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1160,7 +1375,9 @@ msgstr "રિટ્રેસ સર્વરને વાપરવા માટ + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "તમારી ભંગાણનું માપ %lld બાઇટ છે, પરંતુ રિટ્રસ સર્વર ફક્ત નાની અથવા તેનાં જેટલી %lld બાઇટને સ્વીકારે છે." ++msgstr "" ++"તમારી ભંગાણનું માપ %lld બાઇટ છે, પરંતુ રિટ્રસ સર્વર ફક્ત નાની અથવા તેનાં " ++"જેટલી %lld બાઇટને સ્વીકારે છે." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1188,7 +1405,9 @@ msgstr "અપલોડ કરલા માટે પેટીને તૈય + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "તમારી પેટીનું માપ %lld બાઇટ છે, પરંતુ રિટ્રસ સર્વર ફક્ત નાની અથવા તેનાં જેટલી %lld બાઇટને સ્વીકારે છે." ++msgstr "" ++"તમારી પેટીનું માપ %lld બાઇટ છે, પરંતુ રિટ્રસ સર્વર ફક્ત નાની અથવા તેનાં " ++"જેટલી %lld બાઇટને સ્વીકારે છે." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1231,13 +1450,17 @@ msgstr "સફળતાપૂર્વક અપલોડ" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "તમારી સમસ્યા ડિરેક્ટરી ભાંગેલ છે અને રિટ્રેસ સર્વર દ્દારા પ્રક્રિયા કરી શકાતી નથી." ++msgstr "" ++"તમારી સમસ્યા ડિરેક્ટરી ભાંગેલ છે અને રિટ્રેસ સર્વર દ્દારા પ્રક્રિયા કરી " ++"શકાતી નથી." + + #: ../src/plugins/abrt-retrace-client.c:759 + 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." +@@ -1253,10 +1476,10 @@ msgstr "રિટ્રેસ જૉબ શરૂ થઇ ગઇ" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "કાર્ય Id: %s\nકાર્ય પાસવર્ડ: %s\n" ++msgstr "કાર્ય Id: %s\n" ++"કાર્ય પાસવર્ડ: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1264,10 +1487,10 @@ msgstr "સર્વરમાંથી અયોગ્ય જવાબ: ગે + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "કાર્ય પરિસ્થિતિ: %s\n" + "%s\n" +-msgstr "કાર્ય પરિસ્થિતિ: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1280,7 +1503,9 @@ msgstr "લંબાઇ %d નાં HTTP હેડરને માકલતી + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "રિટ્રેસ નિષ્ફળ. પછી ફરીથી પ્રયત્ન કરો અને જો સમસ્યા નિરંતર આવે તો મહેરબાની કરીને આ સમસ્યાનો અહેવાલ કરો." ++msgstr "" ++"રિટ્રેસ નિષ્ફળ. પછી ફરીથી પ્રયત્ન કરો અને જો સમસ્યા નિરંતર આવે તો મહેરબાની " ++"કરીને આ સમસ્યાનો અહેવાલ કરો." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1294,7 +1519,9 @@ msgstr "રિટ્રેસ સર્વરમાં અસુરક્ષિ + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "ચકાસશો નહિં ક્યાંતો રિટ્રેસ સર્વર પેટીને અપલોડ કરતા પહેલાં આપેલ પેકેજની પ્રક્રિયા કરવા સક્ષમ છે" ++msgstr "" ++"ચકાસશો નહિં ક્યાંતો રિટ્રેસ સર્વર પેટીને અપલોડ કરતા પહેલાં આપેલ પેકેજની " ++"પ્રક્રિયા કરવા સક્ષમ છે" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1326,7 +1553,8 @@ 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" +@@ -1344,7 +1572,9 @@ msgstr "સર્વર પર તમારાં કાર્યનો પા + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [વિકલ્પો]\nપ્રક્રિયાઓ: create/status/backtrace/log/batch/exploitable" ++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 +@@ -1376,14 +1606,19 @@ msgstr "સ્થાનિક GNU ડિબગર" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "debuginfo પેકેજોને ડાઉનલોડ કરો અને GDB ની મદદથી સ્થાનિક રીતે બેકટ્રેસને ઉત્પન્ન કરો" ++msgstr "" ++"debuginfo પેકેજોને ડાઉનલોડ કરો અને GDB ની મદદથી સ્થાનિક રીતે બેકટ્રેસને " ++"ઉત્પન્ન કરો" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "debuginfo પેકેજોને ડાઉનલોડ કરવાની જરૂર છે, કે જે સારો સમય લઇ શકે છે, અને ડિસ્ક જગ્યા લઇ શકે છે. છતાંપણ, RetraceServer જેમ નહિં પણ, દૂરસ્થ મશીનોમાં coredump ને મોકલાતુ નથી." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"debuginfo પેકેજોને ડાઉનલોડ કરવાની જરૂર છે, કે જે સારો સમય લઇ શકે છે, અને " ++"ડિસ્ક જગ્યા લઇ શકે છે. છતાંપણ, RetraceServer જેમ નહિં પણ, દૂરસ્થ મશીનોમાં " ++"coredump ને મોકલાતુ નથી." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1391,12 +1626,18 @@ msgstr "વિશ્ર્લેષણ માટે દૂરસ્થ રિટ + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "સર્વરમાં coredump ને અપલોડ કરે છે, કે જે બેકટ્રેસને ઉત્પન્ન કરે છે અને તેને પાછુ લાવે છે. ફાયદો: debuginfo ડાઉનલોડ કરવા માટે જરૂરી નથી. debuginfos નાં રિટ્રેસ સર્વરનાં ડેટાબેઝ સમાપ્ત છે. રિટ્રેસ સર્વર એ બેકટ્રેસને સારી રીતે ઉત્પન્ન કરી શકે છે. ગેરફાયદો: coredump જે તમે ભંગાણ થયેલ કાર્યક્રમમાંથી સમાવેલ બધી માહિતીનો અપલોડ કરો છો, તમારી ખાનગી માહિતીને સમાવી રહ્યા છે, જો કોઇપણ હોય." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"સર્વરમાં coredump ને અપલોડ કરે છે, કે જે બેકટ્રેસને ઉત્પન્ન કરે છે અને તેને " ++"પાછુ લાવે છે. ફાયદો: debuginfo ડાઉનલોડ કરવા માટે જરૂરી નથી. debuginfos નાં " ++"રિટ્રેસ સર્વરનાં ડેટાબેઝ સમાપ્ત છે. રિટ્રેસ સર્વર એ બેકટ્રેસને સારી રીતે " ++"ઉત્પન્ન કરી શકે છે. ગેરફાયદો: coredump જે તમે ભંગાણ થયેલ કાર્યક્રમમાંથી " ++"સમાવેલ બધી માહિતીનો અપલોડ કરો છો, તમારી ખાનગી માહિતીને સમાવી રહ્યા છે, જો " ++"કોઇપણ હોય." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1421,10 +1662,13 @@ msgstr "શું અસુરક્ષિત જોડાણને વાપર + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "અસુરક્ષિત જોડાણને પરવાનગી આપવા માટે \"અસુરક્ષિત\" લખો <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"અસુરક્ષિત જોડાણને પરવાનગી આપવા માટે \"અસુરક્ષિત\" લખો <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1438,7 +1682,10 @@ msgstr "~/.xsession-errors ફાઇલમાંથી સંબંધિત વ + 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." +@@ -1517,7 +1764,14 @@ msgstr "SSL સોકેટમાં ક્લાયન્ટ હૅન્ડશ + + #: ../src/plugins/https-utils.c:220 + msgid "Failed to enable SSL3." +-msgstr "SSL3 ને શક્ય બનાવવવામાં નિષ્ફળતા.\n\n\n\n\n\n\n," ++msgstr "SSL3 ને શક્ય બનાવવવામાં નિષ્ફળતા.\n" ++"\n" ++"\n" ++"\n" ++"\n" ++"\n" ++"\n" ++"," + + #: ../src/plugins/https-utils.c:222 + msgid "Failed to enable TLS." +@@ -1596,7 +1850,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nbodhi સર્વર પર સુધારાઓ માટે શોધો" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"bodhi સર્વર પર સુધારાઓ માટે શોધો" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1614,16 +1871,23 @@ msgstr "પેકેજની સ્થાનિક આવૃત્તિ ઉપ + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "સુધારો અસ્તિત્વ ધરાવે છે કે જેથી તમારી સમસ્યાને સુધારી શકો છો. તમે ચાલવા દ્દારા તેને સ્થાપિત કરી શકો છો: %s. શું તમે ભૂલ અહેવાલીકરણ સાથે ચાલુ રાખવા માંગો છો?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"સુધારો અસ્તિત્વ ધરાવે છે કે જેથી તમારી સમસ્યાને સુધારી શકો છો. તમે ચાલવા " ++"દ્દારા તેને સ્થાપિત કરી શકો છો: %s. શું તમે ભૂલ અહેવાલીકરણ સાથે ચાલુ રાખવા " ++"માંગો છો?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\noops સંદેશાને અલગ કરવા માટે ફાઇલોને સ્કેન કરો. તેઓને છાપી અને/અથવા કાઢી શકાય છે." ++msgstr "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"oops સંદેશાને અલગ કરવા માટે ફાઇલોને સ્કેન કરો. તેઓને છાપી અને/અથવા કાઢી શકાય " ++"છે." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1674,7 +1938,8 @@ msgstr "વધારે જાણકારી માટે 'abrt-cli COMMAND --h + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +-msgstr "%sRed Hat Customer Portal માં કેસ બનાવવા માટે 'abrt-cli report %s' ચલાવો\n" ++msgstr "" ++"%sRed Hat Customer Portal માં કેસ બનાવવા માટે 'abrt-cli report %s' ચલાવો\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1700,9 +1965,13 @@ msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કર + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "આપોઆપઅહેવાલીકરણનું લક્ષણ નિષ્ક્રિય કરેલું છે. મહેરબાની કરીને તેને સક્રિય કરવાનું ધ્યાન રાખો\n'abrt-auto-reporting enabled' ને રુટ હકોવાળા વપરાશકર્તા તરીકે ચલાવીને\n" ++msgstr "" ++"આપોઆપઅહેવાલીકરણનું લક્ષણ નિષ્ક્રિય કરેલું છે. મહેરબાની કરીને તેને સક્રિય " ++"કરવાનું ધ્યાન રાખો\n" ++"'abrt-auto-reporting enabled' ને રુટ હકોવાળા વપરાશકર્તા તરીકે ચલાવીને\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1732,7 +2001,8 @@ 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/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1777,7 +2047,9 @@ msgstr "ટાઇમસ્ટેમ્પ પછી ફક્ત શોધાય + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "સ્થાનિક વિશ્ર્લેષણને ચલાવવા અથવા વિશ્ર્લેષણ માટે દૂરસ્થ રિટ્રેસ સર્વરમાં કૉર ડમ્પ મોકલો જો દૂરસ્થ વિશ્ર્લેષણ નિષ્ફળ જાય" ++msgstr "" ++"સ્થાનિક વિશ્ર્લેષણને ચલાવવા અથવા વિશ્ર્લેષણ માટે દૂરસ્થ રિટ્રેસ સર્વરમાં કૉર " ++"ડમ્પ મોકલો જો દૂરસ્થ વિશ્ર્લેષણ નિષ્ફળ જાય" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1785,10 +2057,17 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "સર્વરમાં કૉરડમ્પને અપલોડ કરે છે, કે જે બેકટ્રેસને ઉત્પન્ન કરે છે અને તેને પાછુ કરે છે. જો વપરાશકર્તા કોઇપણ જગ્યાએ તેનાં કૉરડમ્પને અપલોડ કરવા માંગતા ન હોય તો ઘટના સ્થાનિક વિશ્ર્લેષણને ચલાવે છે. સ્થાનિક વિશ્ર્લેષણ ચાલતી ઘટના થે જો દૂરસ્થ વિશ્ર્લેષણ નિષ્ફળ જાય. ગુણ: ડિબગ જાણકારી ડાઉનલોડ કરવુ જરૂરી નથી. ડિબગ જાણકારીનાં રિટ્રેસ સર્વરનાં ડેટાબેઝ વધારે પૂર્ણ છે. રિટ્રેસ સર્વર વધારે સારું બેકટ્રેસને માંથી બધી માહિતીને સમાવે છે, તમારી ખાનગી માહિતીને સમાવી રહ્યુ છે, જો કોઇપણ હોય." ++msgstr "" ++"સર્વરમાં કૉરડમ્પને અપલોડ કરે છે, કે જે બેકટ્રેસને ઉત્પન્ન કરે છે અને તેને " ++"પાછુ કરે છે. જો વપરાશકર્તા કોઇપણ જગ્યાએ તેનાં કૉરડમ્પને અપલોડ કરવા માંગતા ન " ++"હોય તો ઘટના સ્થાનિક વિશ્ર્લેષણને ચલાવે છે. સ્થાનિક વિશ્ર્લેષણ ચાલતી ઘટના થે " ++"જો દૂરસ્થ વિશ્ર્લેષણ નિષ્ફળ જાય. ગુણ: ડિબગ જાણકારી ડાઉનલોડ કરવુ જરૂરી નથી. " ++"ડિબગ જાણકારીનાં રિટ્રેસ સર્વરનાં ડેટાબેઝ વધારે પૂર્ણ છે. રિટ્રેસ સર્વર વધારે " ++"સારું બેકટ્રેસને માંથી બધી માહિતીને સમાવે છે, તમારી ખાનગી માહિતીને સમાવી " ++"રહ્યુ છે, જો કોઇપણ હોય." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1797,13 +2076,17 @@ msgstr "VM કોરનું વિશ્ર્લેષણ કરો" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "કર્નલ debuginfo પેકેજોને સ્થાપિત કરો, કર્નલ લૉગ અને oops સંદેશાને ઉત્પન્ન કરો" ++msgstr "" ++"કર્નલ debuginfo પેકેજોને સ્થાપિત કરો, કર્નલ લૉગ અને oops સંદેશાને ઉત્પન્ન " ++"કરો" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "કર્નલ debuginfo પેકેજોને સ્થાપિત કરવાની જરૂર છે, કે જે નોંધપાત્ર સમય લઇ શકે છે, અને ડિસ્ક જગ્યા લઇ શકે છે." ++msgstr "" ++"કર્નલ debuginfo પેકેજોને સ્થાપિત કરવાની જરૂર છે, કે જે નોંધપાત્ર સમય લઇ શકે " ++"છે, અને ડિસ્ક જગ્યા લઇ શકે છે." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1817,7 +2100,9 @@ msgstr "કાર્યક્રમની GConf ડિરેક્ટરીમ + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "gconftool-2 --recursive-list /apps/executable ચલાવે છે અને 'gconf_subtree' ઘટક તરીકે તેનો સંગ્રહ કરે છે" ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable ચલાવે છે અને 'gconf_subtree' " ++"ઘટક તરીકે તેનો સંગ્રહ કરે છે" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1831,7 +2116,9 @@ 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" +@@ -1843,9 +2130,11 @@ msgstr "તમારી ઘર ડિરેક્ટરીમાંથી .vimrc + + #: ../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 "જો તમારી ઘર ડિરેક્ટરીમાં .vimrc અને .gvimrc છે તો તેને ચકાસે છે અને user_vimrc અને user_gvimrc તરીકે તેઓનો સંગ્રહ કરે છે." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"જો તમારી ઘર ડિરેક્ટરીમાં .vimrc અને .gvimrc છે તો તેને ચકાસે છે અને " ++"user_vimrc અને user_gvimrc તરીકે તેઓનો સંગ્રહ કરે છે." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/he.po b/po/he.po +index 0bbed83..aabdbe5 100644 +--- a/po/he.po ++++ b/po/he.po +@@ -8,17 +8,19 @@ + # Jiří Moskovčák , 2011 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Hebrew (http://www.transifex.com/projects/p/fedora-abrt/language/he/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Hebrew (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/he/)\n" + "Language: he\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -91,7 +93,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -107,7 +111,8 @@ msgstr "יישומון לאזור ההתרעות שמתריע למשתמש על + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "אלעד אלפסה \nאסף ספיר " ++msgstr "אלעד אלפסה \n" ++"אסף ספיר " + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -130,6 +135,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -144,6 +150,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "דווח" +@@ -214,10 +221,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -231,15 +237,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -407,10 +413,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -462,19 +468,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -608,9 +667,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -685,8 +746,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -721,6 +781,7 @@ 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" +@@ -759,7 +820,8 @@ msgstr "יוצא לפקודת המשתמש" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -769,7 +831,8 @@ msgid "" + " -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" ++" --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" +@@ -818,7 +881,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1032,6 +1096,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1092,6 +1157,7 @@ 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 +@@ -1114,8 +1180,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1251,8 +1316,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1262,8 +1326,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1379,9 +1442,12 @@ msgstr "הורדת חבילות ניפוי שגיאות ויצירת מידע ה + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "צריך להוריד חבילות ניפוי שגיאות, וזה תהליך שעלול לקחת זמן רב ולבזבז מקום בדיסק. לעומת זאת, בניגוד לשרת ההמעקב־מחדש, לא שולח את ה־coredump לשרתים מרוחקים." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"צריך להוריד חבילות ניפוי שגיאות, וזה תהליך שעלול לקחת זמן רב ולבזבז מקום " ++"בדיסק. לעומת זאת, בניגוד לשרת ההמעקב־מחדש, לא שולח את ה־coredump לשרתים " ++"מרוחקים." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1389,12 +1455,16 @@ msgstr "שליחת מידע לשרת מעקב־מחדש מרוחק לניתוח" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "מעלה את ה־coredump לשרת, שמייצר מידע קריסה ומחזיר אותו. יתרונות: אין צורך בהורדת חבילות מידע ניפוי שגיאות, מאגר מידע ניפוי השגיאות שלם יותר, והוא עשוי לייצר מידע שמיש יותר. חסרונות: ה־coredump שמועלה לשרת מרוחק מכיל את כל המידע מהתוכנה שקרסה, כולל מידע פרטי, אם קיים. (החיבור מוצפן, אל דאגה). " ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"מעלה את ה־coredump לשרת, שמייצר מידע קריסה ומחזיר אותו. יתרונות: אין צורך " ++"בהורדת חבילות מידע ניפוי שגיאות, מאגר מידע ניפוי השגיאות שלם יותר, והוא עשוי " ++"לייצר מידע שמיש יותר. חסרונות: ה־coredump שמועלה לשרת מרוחק מכיל את כל המידע " ++"מהתוכנה שקרסה, כולל מידע פרטי, אם קיים. (החיבור מוצפן, אל דאגה). " + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1419,9 +1489,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1612,8 +1682,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1698,7 +1768,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1783,8 +1854,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1841,8 +1912,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/hi.po b/po/hi.po +index cc43638..c7ee4de 100644 +--- a/po/hi.po ++++ b/po/hi.po +@@ -14,19 +14,22 @@ + # Tarsem singh , 2014 + # Umesh Agarwal , 2013 + # zz , 2012 ++# Rajesh Ranjan , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-17 14:04+0000\n" +-"Last-Translator: Rajesh Ranjan \n" +-"Language-Team: Hindi (http://www.transifex.com/projects/p/fedora-abrt/language/hi/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-08 06:16-0500\n" ++"Last-Translator: Rajesh Ranjan \n" ++"Language-Team: Hindi (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/hi/)\n" + "Language: hi\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -41,7 +44,10 @@ 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" +-msgstr "रिपोर्ट जो भेजा जाएगा उसमें कोई सुरक्षा संवेदनशील आँकड़ा समाहित नहीं करता है. इसलिए आपके लिए अगली बार से परेशान होने की जरूरत नहीं है और आपके द्वारा कोई काम करने की जरूरत नहीं है.\n" ++msgstr "" ++"रिपोर्ट जो भेजा जाएगा उसमें कोई सुरक्षा संवेदनशील आँकड़ा समाहित नहीं करता है." ++" इसलिए आपके लिए अगली बार से परेशान होने की जरूरत नहीं है और आपके द्वारा कोई " ++"काम करने की जरूरत नहीं है.\n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +@@ -49,7 +55,8 @@ msgstr "क्या आप स्वचालित रूप से सुप + + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "क्या आप स्वचालित रूप से सुपुर्द अनाम क्रैश रिपोर्ट सक्रिय करना चाहते हैं?" ++msgstr "" ++"क्या आप स्वचालित रूप से सुपुर्द अनाम क्रैश रिपोर्ट सक्रिय करना चाहते हैं?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -99,10 +106,17 @@ msgstr "अधिसूचना बंद नहीं कर सकता ह + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "आप खास समस्या की अधिसूचना को मूक करने जा रहे हैं. आप इस समस्या के लिए फिर से अधिसूचना बबल नहीं देखेंगे, हालाँकि, ABRT इसे पता करेगा और आप इसे ABRT GUI से रिपोर्ट कर पाएँगे.\n\nक्या आप जारी रखना चाहते हैं?" ++msgstr "" ++"आप खास समस्या की अधिसूचना को मूक करने जा रहे हैं. आप इस समस्या के लिए फिर से " ++"अधिसूचना बबल नहीं देखेंगे, हालाँकि, ABRT इसे पता करेगा और आप इसे ABRT GUI से " ++"रिपोर्ट कर पाएँगे.\n" ++"\n" ++"क्या आप जारी रखना चाहते हैं?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -111,7 +125,9 @@ msgstr "चेतावनी" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "अधिसूचना क्षेत्र एप्लेट जो ABRT के द्वारा पता किए मुद्दों के बारे में उपयोक्ता को सूचित करता है" ++msgstr "" ++"अधिसूचना क्षेत्र एप्लेट जो ABRT के द्वारा पता किए मुद्दों के बारे में " ++"उपयोक्ता को सूचित करता है" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -138,6 +154,7 @@ msgid "Ignore forever" + msgstr "सदा के लिये अनदेखा करें" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "खोलें" +@@ -152,6 +169,7 @@ msgstr "एक ज्ञात समस्या आ गई है" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "रिपोर्ट" +@@ -194,14 +212,20 @@ msgstr "जिओ चैनल के लिए गैर ब्लॉकिं + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "सत्र प्रबंधक में कनेक्शन खोलने में विफल: '%s', अगले लॉगिन में अधिसूचना फिर प्रकट हो सकता है" ++msgstr "" ++"सत्र प्रबंधक में कनेक्शन खोलने में विफल: '%s', अगले लॉगिन में अधिसूचना फिर " ++"प्रकट हो सकता है" + + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nएप्प्लेट जो उपयोक्ता को अधिसूचित करता है जब नई समस्या ABRT द्वारा पायी जाती है\n" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"एप्प्लेट जो उपयोक्ता को अधिसूचित करता है जब नई समस्या ABRT द्वारा पायी जाती " ++"है\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -222,11 +246,14 @@ msgstr "मौन संक्षिप्त रिपोर्टिंग" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "कोरडंप फाइल स्टैक ट्रैस जनित करने के लिए जरूरी है जो कि समय और स्थान की खपत करने वाला काम है. ABRT ऐसी सेवा प्रदान करता है कोरडंप से स्टैक ट्रैस जनित करता है लेकिन आपको इस सेवा में कोरडंप को अपलोड करना है. इस विकल्प के साथ निष्क्रिय ABRT बिना पूछे कोरडंप को अपलोड करेगा." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"कोरडंप फाइल स्टैक ट्रैस जनित करने के लिए जरूरी है जो कि समय और स्थान की खपत " ++"करने वाला काम है. ABRT ऐसी सेवा प्रदान करता है कोरडंप से स्टैक ट्रैस जनित " ++"करता है लेकिन आपको इस सेवा में कोरडंप को अपलोड करना है. इस विकल्प के साथ " ++"निष्क्रिय ABRT बिना पूछे कोरडंप को अपलोड करेगा." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -234,28 +261,41 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT निर्देशिका में समस्या आँकड़ा को जमा करता है. जब कभी ABRT को लिखने योग्य निर्देशिका चाहिए, निर्देशिका को आपके तंत्र स्थान से घर निर्देशिका में ले जाया जाता है. इस विकल्प के साथ निष्क्रिय ABRT समस्या निर्देशिका को बिना पूछे खिसकाएगा." ++msgstr "" ++"ABRT निर्देशिका में समस्या आँकड़ा को जमा करता है. जब कभी ABRT को लिखने योग्य " ++"निर्देशिका चाहिए, निर्देशिका को आपके तंत्र स्थान से घर निर्देशिका में ले " ++"जाया जाता है. इस विकल्प के साथ निष्क्रिय ABRT समस्या निर्देशिका को बिना पूछे " ++"खिसकाएगा." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport संक्षिप्त है और समस्या का पूरी तरह से बेनाम विवरण है. ABRT uReports का उपयोग तेज वैश्विक नकल जाँच के लिए करता है. तयशुदा विन्यास में uReport को रिपोर्टिंग प्रक्रिया के आरंभ में भेजा जाता है. इस विकल्प के सक्रिय किए जाने के साथ uReports को समस्या के पता के बाद तत्काल स्वतः भेजा जाता है." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport संक्षिप्त है और समस्या का पूरी तरह से बेनाम विवरण है. ABRT uReports " ++"का उपयोग तेज वैश्विक नकल जाँच के लिए करता है. तयशुदा विन्यास में uReport को " ++"रिपोर्टिंग प्रक्रिया के आरंभ में भेजा जाता है. इस विकल्प के सक्रिय किए जाने " ++"के साथ uReports को समस्या के पता के बाद तत्काल स्वतः भेजा जाता है." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "इस विकल्प के साथ सक्रिय रिपोर्टिंग प्रक्रिया जो रिपोर्ट बटन पर क्लिक करने से आरंभ होता है वह uReport के भेजे जाने के बाद बाधित होता है. आप हमेशा तयशुदा समस्या ब्राउज़र पूरी रपट बनाने के लिए उपयोग कर सकते हैं." ++msgstr "" ++"इस विकल्प के साथ सक्रिय रिपोर्टिंग प्रक्रिया जो रिपोर्ट बटन पर क्लिक करने से " ++"आरंभ होता है वह uReport के भेजे जाने के बाद बाधित होता है. आप हमेशा तयशुदा " ++"समस्या ब्राउज़र पूरी रपट बनाने के लिए उपयोग कर सकते हैं." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr " इस विकल्प के साथ सक्रिय ABRT रिपोर्ट किए गए समस्या को कभी नहीं दिखाता है. यह तभी प्रभावी होता है जब संक्षिप्त रिपोर्टिंग सक्रिय किया जाता है." ++msgstr "" ++" इस विकल्प के साथ सक्रिय ABRT रिपोर्ट किए गए समस्या को कभी नहीं दिखाता है. " ++"यह तभी प्रभावी होता है जब संक्षिप्त रिपोर्टिंग सक्रिय किया जाता है." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -265,7 +305,9 @@ msgstr "कोरडंप अपलोड के पहले पूछें" + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr " इस विकल्प के सक्रिय करने से ABRT हमेशा बग टिकट प्रतिबंधित पहुँच के साथ बनाता है यदि संभावित रूप से संवेदनशील आँकड़ों का पता किया जाता है." ++msgstr "" ++" इस विकल्प के सक्रिय करने से ABRT हमेशा बग टिकट प्रतिबंधित पहुँच के साथ " ++"बनाता है यदि संभावित रूप से संवेदनशील आँकड़ों का पता किया जाता है." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -280,7 +322,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "अपूर्ण समस्या का पता चलता है जब कंप्यूटर बंद किया जा रहा है या उपयोक्ता लॉग आउट है. मूल्यवान समस्या रिपोर्ट देने के क्रम में, ABRT आपको इन समस्याओं के सुपुर्द करने की छूट नहीं देगा." ++msgstr "" ++"अपूर्ण समस्या का पता चलता है जब कंप्यूटर बंद किया जा रहा है या उपयोक्ता लॉग " ++"आउट है. मूल्यवान समस्या रिपोर्ट देने के क्रम में, ABRT आपको इन समस्याओं के " ++"सुपुर्द करने की छूट नहीं देगा." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -312,7 +357,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nसंकुल डेटाबेस को प्रश्न करता है और संकुल और घटक नाम सहेजता है" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"संकुल डेटाबेस को प्रश्न करता है और संकुल और घटक नाम सहेजता है" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -375,7 +423,8 @@ 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 +@@ -401,7 +450,9 @@ msgstr "तत्व '%s' को समस्या निर्देशिक + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "नाम '%s' खो गया है, कृपया जाँचें कि क्या अन्य सेवाएँ जो नाम का स्वामित्व रखती है नहीं चल रहा हो.\n" ++msgstr "" ++"नाम '%s' खो गया है, कृपया जाँचें कि क्या अन्य सेवाएँ जो नाम का स्वामित्व " ++"रखती है नहीं चल रहा हो.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -415,11 +466,16 @@ msgstr "इस प्रोग्राम को जरूर बतौर र + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 आपको इस समस्या को सुपुर्द करने की अनुमति नहीं देगा. यदि आपके पास समय है और अपने प्रयास में डेवलेपर की मदद करना चाहते हैं ताकि इस समस्या का समाधान हो सके, तो कृपया उनसे सीधे संपर्क करें." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 आपको इस समस्या को सुपुर्द करने की अनुमति नहीं देगा." ++" यदि आपके पास समय है और अपने प्रयास में डेवलेपर की मदद करना चाहते हैं ताकि " ++"इस समस्या का समाधान हो सके, तो कृपया उनसे सीधे संपर्क करें." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -456,7 +512,15 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-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" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" ++"specified in abrt.conf\n" ++"\n" ++"If UPLOAD_DIRECTORY is not provided, uses a value of\n" ++"WatchCrashdumpArchiveDir option from abrt.conf" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -470,19 +534,74 @@ msgstr "सहवर्ती वर्कर की संख्या. तय + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB में अधिकतम कैश आकार. तयशुदा है " + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "सत्यापन बंद करें" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Red Hat समर्थन उपयोक्ता नाम" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++"Red Hat समर्थन कूटशब्द, यदि नहीं दिया हुआ है तो इसके लिए कोई प्रांप्ट निर्गत " ++"किया जाएगा" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "uReport SSL प्रमाणपत्र पथ या प्रमाणपत्र प्रकार" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "आपको --username को --password के लिए निर्दिष्ट करने की जरूरत होगी" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "आप या तो --username या --certificate का प्रयोग कर सकते हैं" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "आप या तो --username या --anonymous का प्रयोग कर सकते हैं" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "आप या तो --anonymous या --certificate का प्रयोग कर सकते हैं" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "तर्क की अवैध संख्या" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "अज्ञात विकल्प मान '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "कूटशब्द:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "कूटशब्द के बिना जारी नहीं रख सकते हैं\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "HTTP सत्यापन स्वचालित रिपोर्टिंग" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "SSL क्लायंट सत्यापन स्वचालित रिपोर्टिंग" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "अनाम स्वचालित रिपोर्टिंग" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -493,7 +612,14 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "प्रयोग: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n UPLOAD_DIR - Directory where uploaded archives are stored\n FILENAME - Uploaded archive file name\n" ++msgstr "" ++"प्रयोग: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -600,7 +726,9 @@ msgstr "अस्थायी फ़ाइल '%s' नहीं बना सक + 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:264 +@@ -614,11 +742,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nC/C++ बैकट्रेस को विश्लेषित करता है, नकल हैश उत्पन्न करता है, बैकट्रेस दर,\nऔर समस्या निर्देशिका DIR में क्रैश फंक्शन पहचानता है" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"C/C++ बैकट्रेस को विश्लेषित करता है, नकल हैश उत्पन्न करता है, बैकट्रेस दर,\n" ++"और समस्या निर्देशिका DIR में क्रैश फंक्शन पहचानता है" + ++#. + #. * 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" +@@ -633,7 +767,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nकोरडंप के UUID को समस्या निर्देशिका DIR में सहेजता और गणना करता है" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"कोरडंप के UUID को समस्या निर्देशिका DIR में सहेजता और गणना करता है" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -659,14 +796,20 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\nUUID और DUPHASH को वूप्स समस्या निर्देशिका DIR के लिए गणना और सहेजता है" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"UUID और DUPHASH को वूप्स समस्या निर्देशिका 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\nUUID और DUPHASH को एक्सऑर्ग समस्या निर्देशिका DIR के लिए गणना और सहेजता है" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"UUID और DUPHASH को एक्सऑर्ग समस्या निर्देशिका DIR के लिए गणना और सहेजता है" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -678,7 +821,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nUUID और DUPHASH को पायथन क्रैश डंप की गणना और सहेजता है" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"UUID और DUPHASH को पायथन क्रैश डंप की गणना और सहेजता है" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -693,10 +839,10 @@ msgid "Extracting the oops text from core" + msgstr "कोर से वूप्स पाठ निकाल रहा है" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "{0} की प्रक्रिया नहीं कर सकता है:\n" + "{1}" +-msgstr "{0} की प्रक्रिया नहीं कर सकता है:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -710,14 +856,20 @@ msgstr "वूप्स पाठ सफलतापूर्वक निका + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "कर्नेल लॉग बताता है कि हार्डवेयर त्रुटि का पता चला.\nयह अधिक संभव है कि सॉफ्टवेयर समस्या नहीं है.\n" ++msgstr "" ++"कर्नेल लॉग बताता है कि हार्डवेयर त्रुटि का पता चला.\n" ++"यह अधिक संभव है कि सॉफ्टवेयर समस्या नहीं है.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nसमस्या निर्देशिका DIR में कोरडंप विश्लेषित करता है, बैकट्रेस उत्पन्न करता है और सहेजता है" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"समस्या निर्देशिका DIR में कोरडंप विश्लेषित करता है, बैकट्रेस उत्पन्न करता है " ++"और सहेजता है" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -729,6 +881,7 @@ 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" +@@ -739,7 +892,10 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\ncoredump-level बैकट्रैस को कोर डंप और तदनुरूपी द्विपदीय से बनाता है" ++msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"coredump-level बैकट्रैस को कोर डंप और तदनुरूपी द्विपदीय से बनाता है" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -767,7 +923,8 @@ msgstr "उपयोक्ता कमांड पर बाहर निक + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -777,13 +934,33 @@ msgid "" + " -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" ++" --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" +-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" ++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_FILE में सूचीबद्ध सभी build-id के लिए डिबगइंफो\n" ++"CACHEDIR में संस्थापित करता है, TMPDIR को बतौर स्टेजिंग क्षेत्र उपयोग करके.\n" ++"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}" +@@ -814,21 +991,33 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "कोर डंप अपलोड करने के लिए ठीक? (इसमें संवेदनशील आँकड़े हो सकते हैं). यदि आपका उत्तर 'नहीं' है, तो एक स्टैक ट्रैस स्थानीय रूप से बनाया जाएगा. (यह बड़ी मात्रा में आँकड़ा डाउनलोड कर सकता है)." ++msgstr "" ++"कोर डंप अपलोड करने के लिए ठीक? (इसमें संवेदनशील आँकड़े हो सकते हैं). यदि " ++"आपका उत्तर 'नहीं' है, तो एक स्टैक ट्रैस स्थानीय रूप से बनाया जाएगा. (यह बड़ी " ++"मात्रा में आँकड़ा डाउनलोड कर सकता है)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"क्या आप स्टैक ट्रेस स्थानीय रूप से बनाना चाहते हैं? (यह बड़ी मात्रा में डाटा " ++"डाउनलोड कर सकता है लेकिन रिपोर्टिंग बिना स्टैक ट्रेस से जारी नहीं रह सकती " ++"है)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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) या फ़ाइल (-f) को DIRs में मिटाता है जबतक वे आकार से छोटे नहीं हैं.\nFILEs संरक्षित हैं (कभी मिटाया नहीं जाता है)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"समस्या निर्देशिका (-d) या फ़ाइल (-f) को DIRs में मिटाता है जबतक वे आकार से " ++"छोटे नहीं हैं.\n" ++"FILEs संरक्षित हैं (कभी मिटाया नहीं जाता है)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -859,7 +1048,8 @@ msgstr "प्रयोग: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "वर्तमान कार्यशील निर्देशिका पाने में असमर्थ क्योंकि यह मिटा दिया गया था" ++msgstr "" ++"वर्तमान कार्यशील निर्देशिका पाने में असमर्थ क्योंकि यह मिटा दिया गया था" + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +@@ -997,7 +1187,10 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nलॉग फ़ाइल FILE देखें, PROG चलाएँ जब यह बढ़ता है या प्रतिस्थापित होता है" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"लॉग फ़ाइल FILE देखें, PROG चलाएँ जब यह बढ़ता है या प्रतिस्थापित होता है" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1007,20 +1200,26 @@ msgstr "PROG मत चलाएँ यदि STR नहीं मिलता + 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: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: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). कर्नेल देखभाल कर्ता टेंट किया रिपोर्ट के निदान में असमर्थ है." ++msgstr "" ++"कर्नेल समस्या आयी, लेकिन आपका कर्नेल टेंट किया गया है (फ्लैग:%s). कर्नेल " ++"देखभाल कर्ता टेंट किया रिपोर्ट के निदान में असमर्थ है." + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1032,7 +1231,10 @@ msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" +-msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nExtract oops from FILE (or standard input)" ++msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extract oops from FILE (or standard input)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1040,6 +1242,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "DIR में हर वूप्स क्षण के लिए नयी समस्या निर्देशिका बनाएँ" +@@ -1082,7 +1285,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nफ़ाइल से Xorg क्रैश निकालें (या मानक इनपुट)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"फ़ाइल से Xorg क्रैश निकालें (या मानक इनपुट)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1096,10 +1302,13 @@ msgstr "DIR में हर क्रैश के लिए नयी सम + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "रिट्रेस सर्वर प्रयोग नहीं किया जा सका, क्योंकि क्रैश बहुत बड़ा है. स्थानीय रिट्रेसिंग को आजमाएँ." ++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 +@@ -1122,10 +1331,10 @@ msgstr "HTTP शीर्षिका को %d लंबाई में भे + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "अप्रत्याशित HTTP अनुक्रिया सर्वर से: %d\n" + "%s" +-msgstr "अप्रत्याशित HTTP अनुक्रिया सर्वर से: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1141,7 +1350,9 @@ msgstr "सर्वर से अवैध अनुक्रिया: अन + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "संकुल '%s.%s' की प्रक्रिया में रिट्रेस सर्वर असमर्थ है.\nक्या यह आधिकारिक '%s' रिपोजिटरी का हिस्सा है?" ++msgstr "" ++"संकुल '%s.%s' की प्रक्रिया में रिट्रेस सर्वर असमर्थ है.\n" ++"क्या यह आधिकारिक '%s' रिपोजिटरी का हिस्सा है?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1166,7 +1377,9 @@ msgstr "'%s' को सर्वर को रिट्रेस करने + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "आपके क्रैश का आकार %lld बाइट्स है, लेकिन रिट्रेस सर्वर केवल %lld बाइट्स से छोटा या बराबर क्रैश को स्वीकार करता है." ++msgstr "" ++"आपके क्रैश का आकार %lld बाइट्स है, लेकिन रिट्रेस सर्वर केवल %lld बाइट्स से " ++"छोटा या बराबर क्रैश को स्वीकार करता है." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1194,7 +1407,9 @@ msgstr "अपलोड करने के लिए एक अभिलेख + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "आपके अभिलेख का आकार %lld बाइट्स है, लेकिन रिट्रेस सर्वर केवल %lld बाइट्स से छोटा या बराबर क्रैश को स्वीकार करता है." ++msgstr "" ++"आपके अभिलेख का आकार %lld बाइट्स है, लेकिन रिट्रेस सर्वर केवल %lld बाइट्स से " ++"छोटा या बराबर क्रैश को स्वीकार करता है." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1237,13 +1452,17 @@ msgstr "अपलोड विफल" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "आपकी समस्या निर्देशिका खराब है और रिट्रेस सर्वर के द्वारा प्रक्रमित नहीं की जाती सकती है." ++msgstr "" ++"आपकी समस्या निर्देशिका खराब है और रिट्रेस सर्वर के द्वारा प्रक्रमित नहीं की " ++"जाती सकती है." + + #: ../src/plugins/abrt-retrace-client.c:759 + 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." +@@ -1259,10 +1478,10 @@ msgstr "रिट्रेस कार्य आरंभ" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "कार्य Id: %s\nकार्य कूटशब्द: %s\n" ++msgstr "कार्य Id: %s\n" ++"कार्य कूटशब्द: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1270,10 +1489,10 @@ msgstr "सर्वर से अवैध अनुक्रिया: अन + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "कार्य स्थिति: %s\n" + "%s\n" +-msgstr "कार्य स्थिति: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1286,7 +1505,9 @@ msgstr "%d लंबाई की HTTP शीर्षिका भेजने + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "रिट्रेस विफल. फिर कोशिश करें और यदि समस्या बनी रहती है तो इस इश्यू को रिपोर्ट कीजिए." ++msgstr "" ++"रिट्रेस विफल. फिर कोशिश करें और यदि समस्या बनी रहती है तो इस इश्यू को " ++"रिपोर्ट कीजिए." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1300,7 +1521,9 @@ msgstr "रिटेर्स सर्वर में असुरक्षि + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "मत जाँचें कि क्या रिट्रेस सर्वर क्या दिए गए संकुल की प्रक्रिया करने में समर्थ है अभिलेख को अपलोड करने के पहले" ++msgstr "" ++"मत जाँचें कि क्या रिट्रेस सर्वर क्या दिए गए संकुल की प्रक्रिया करने में " ++"समर्थ है अभिलेख को अपलोड करने के पहले" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1350,7 +1573,9 @@ msgstr "सर्वर पर आपके कार्य का कूटश + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [options]\nसंचालन: create/status/backtrace/log/batch/exploitable" ++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 +@@ -1382,14 +1607,19 @@ msgstr "स्थानीय GNU डिबगर" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "डिबगइंफो संकुल डाउनलोड करें और GDB के उपयोग से स्थानीय रूप से बैकट्रेस उत्पन्न करें" ++msgstr "" ++"डिबगइंफो संकुल डाउनलोड करें और GDB के उपयोग से स्थानीय रूप से बैकट्रेस " ++"उत्पन्न करें" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "डिबगइंफो संकुल को डाउनलोड करने की जरूरत है, जो कि महत्वपूर्ण समय ले सकता है, और डिस्क स्थान लेता है. हालाँकि, RetraceServer से अलग, कोरडंप को दूरस्थ मशीन में नहीं भेजता है." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"डिबगइंफो संकुल को डाउनलोड करने की जरूरत है, जो कि महत्वपूर्ण समय ले सकता है, " ++"और डिस्क स्थान लेता है. हालाँकि, RetraceServer से अलग, कोरडंप को दूरस्थ मशीन " ++"में नहीं भेजता है." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1397,12 +1627,17 @@ msgstr "विश्लेषण के लिए दूरस्थ रिट + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "किसी सर्वर में कोरडंप अपलोड करता है, जो बैकट्रेस जनन करता है और इसे फिर वापस करता है. पक्ष: डिबगइंफो डाउनलोड के लिए की कोई जरूरत नहीं. डिबगइंफो का रिट्रेस सर्वर डेटाबेस अधिक पूर्ण है. रिट्रेस सर्वर अधिक बैकट्रेस जनन कर सकता है. विपक्ष: आपके द्वारा अपलोड किया गया कोरडंप क्रैश किए प्रोग्राम से सभी आँकड़ों को समाहित किए है, जिसमें आपके निजी आँकड़े समाहित हैं, यदि कोई है." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"किसी सर्वर में कोरडंप अपलोड करता है, जो बैकट्रेस जनन करता है और इसे फिर वापस " ++"करता है. पक्ष: डिबगइंफो डाउनलोड के लिए की कोई जरूरत नहीं. डिबगइंफो का " ++"रिट्रेस सर्वर डेटाबेस अधिक पूर्ण है. रिट्रेस सर्वर अधिक बैकट्रेस जनन कर सकता " ++"है. विपक्ष: आपके द्वारा अपलोड किया गया कोरडंप क्रैश किए प्रोग्राम से सभी " ++"आँकड़ों को समाहित किए है, जिसमें आपके निजी आँकड़े समाहित हैं, यदि कोई है." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1427,10 +1662,13 @@ msgstr "क्या असुरक्षित कनेक्शन का + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "\"insecure\" लिखें असुरक्षित कनेक्शन की अनुमति देने के लिए <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"\"insecure\" लिखें असुरक्षित कनेक्शन की अनुमति देने के लिए <a href=" ++"\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1444,7 +1682,10 @@ msgstr "~/.xsession-errors फ़ाइल से संबंधित पं + 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." +@@ -1472,7 +1713,9 @@ msgstr "इश्यूर प्रमाणपत्र अवैध है: ' + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "प्रमाणपत्र को गैर भरोसेमंद निर्गतकर्ता के द्वारा हस्ताक्षर किया गया है: '%s'." ++msgstr "" ++"प्रमाणपत्र को गैर भरोसेमंद निर्गतकर्ता के द्वारा हस्ताक्षर किया गया है: '%s'." ++"" + + #: ../src/plugins/https-utils.c:103 + #, c-format +@@ -1602,7 +1845,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nबोधि सर्वर पर अद्यतन के लिए खोजें" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"बोधि सर्वर पर अद्यतन के लिए खोजें" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1620,16 +1866,22 @@ msgstr "संकुल का स्थानीय संस्करण उ + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "एक अद्यतन मौजूद है जो आपकी समस्याओं को फिक्स कर सकता है. आप इसे चलाकर संस्थापित कर सकते हैं: %s. क्या आप इस बग की रिपोर्टिंग जारी रखना चाहते हैं?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"एक अद्यतन मौजूद है जो आपकी समस्याओं को फिक्स कर सकता है. आप इसे चलाकर " ++"संस्थापित कर सकते हैं: %s. क्या आप इस बग की रिपोर्टिंग जारी रखना चाहते हैं?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\nफ़ाइल स्कैन करता है स्प्लिट वूप्स संदेस के लिए. उन्हें छाप और/या मिटा सकता है." ++msgstr "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"फ़ाइल स्कैन करता है स्प्लिट वूप्स संदेस के लिए. उन्हें छाप और/या मिटा सकता " ++"है." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1706,9 +1958,13 @@ msgstr "निर्दिष्ट समयस्टैंप से पुर + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "स्वचालित रिपोर्टिंग फ़ीचर निष्क्रिय है. कृपया इसे सक्रिय करने की सोचें\n'abrt-auto-reporting enabled' को बतौर उपयोक्ता रूट अधिकार चलाकर निर्गत करके\n" ++msgstr "" ++"स्वचालित रिपोर्टिंग फ़ीचर निष्क्रिय है. कृपया इसे सक्रिय करने की सोचें\n" ++"'abrt-auto-reporting enabled' को बतौर उपयोक्ता रूट अधिकार चलाकर निर्गत " ++"करके\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1738,7 +1994,9 @@ 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/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1783,7 +2041,9 @@ msgstr "टाइमस्टैंप के बाद पता चली स + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "दूरस्थ रिट्रेस सर्वर में कोर डंप भेजें यदि दूरस्थ विश्लेषण विफल रहता है तो विश्लेषण या स्थानीय विश्लेषण के लिए।" ++msgstr "" ++"दूरस्थ रिट्रेस सर्वर में कोर डंप भेजें यदि दूरस्थ विश्लेषण विफल रहता है तो " ++"विश्लेषण या स्थानीय विश्लेषण के लिए।" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1791,10 +2051,18 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "कोरडंप सर्वर में अपलोड करता है, जो बैकट्रेस बनाता है और इसे वापस करता है. यदि कोई उपयोक्ता अपने कोरडंप को कहीं भी अपलोड नहीं करना चाहते हैं तो किया गया कार्यक्रम स्थानीय विश्लेषण करता है. स्थानीय विश्लेषण रन इवेंट है यदि दूसर्थ विश्लेषण विफल रहा है. पक्ष: डिबगइंफो डाउनलोड की कोई जरूरत नहीं. डिबगइंफो का रिट्रेस सर्वर डाटाबेस अधिक संपूर्ण है. रिट्रेस सर्वर बेहतर बैकट्रेस बना सकता है. विपक्ष: आपके द्वारा अपलोड किया कोरडंप क्रैश हुए प्रोग्राम से सभी डाटा को समाहित करता है जिसमें आपका गोपनीयता आँकड़ा भी है यदि कोई मौजूद है." ++msgstr "" ++"कोरडंप सर्वर में अपलोड करता है, जो बैकट्रेस बनाता है और इसे वापस करता है. " ++"यदि कोई उपयोक्ता अपने कोरडंप को कहीं भी अपलोड नहीं करना चाहते हैं तो किया " ++"गया कार्यक्रम स्थानीय विश्लेषण करता है. स्थानीय विश्लेषण रन इवेंट है यदि " ++"दूसर्थ विश्लेषण विफल रहा है. पक्ष: डिबगइंफो डाउनलोड की कोई जरूरत नहीं. " ++"डिबगइंफो का रिट्रेस सर्वर डाटाबेस अधिक संपूर्ण है. रिट्रेस सर्वर बेहतर " ++"बैकट्रेस बना सकता है. विपक्ष: आपके द्वारा अपलोड किया कोरडंप क्रैश हुए " ++"प्रोग्राम से सभी डाटा को समाहित करता है जिसमें आपका गोपनीयता आँकड़ा भी है " ++"यदि कोई मौजूद है." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1803,13 +2071,17 @@ msgstr "वी एम कोर का विश्लेषण करे " + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "कर्नेल डिबगइंफो संकुल को संस्थापित करें, कर्नेल लॉग और वूप्स संदेश उत्पन्न करें" ++msgstr "" ++"कर्नेल डिबगइंफो संकुल को संस्थापित करें, कर्नेल लॉग और वूप्स संदेश उत्पन्न " ++"करें" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "कर्नेल डिबगइंफो संकुल को संस्थापित करने की जरूरत, जो महत्वपूर्ण समय ले सकता है, और डिस्क स्पेस ले पाता है." ++msgstr "" ++"कर्नेल डिबगइंफो संकुल को संस्थापित करने की जरूरत, जो महत्वपूर्ण समय ले सकता " ++"है, और डिस्क स्पेस ले पाता है." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1823,7 +2095,9 @@ msgstr "अनुप्रयोग के GConf निर्देशिका + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "gconftool-2 --recursive-list /apps/executable और इसे'gconf_subtree' तत्व के रूप में सहेजता है." ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable और इसे'gconf_subtree' तत्व के " ++"रूप में सहेजता है." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1837,7 +2111,9 @@ 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 "जाँचें कि vimrc और gvimrc फ़ाइल /etc में है और उन्हें बतौर system_vimrc और system_gvimrc क्रमशः सहेजता है." ++msgstr "" ++"जाँचें कि vimrc और gvimrc फ़ाइल /etc में है और उन्हें बतौर system_vimrc और " ++"system_gvimrc क्रमशः सहेजता है." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1849,9 +2125,11 @@ msgstr ".vimrc और .gvimrc को आपकी घर निर्देश + + #: ../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 "जाँचें कि क्या .vimrc और .gvimrc आपकी घर निर्देशिका में है और उन्हें बतौर user_vimrc और user_gvimrc क्रमशः सहेजता है." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"जाँचें कि क्या .vimrc और .gvimrc आपकी घर निर्देशिका में है और उन्हें बतौर " ++"user_vimrc और user_gvimrc क्रमशः सहेजता है." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/hr.po b/po/hr.po +index f73253f..50a3e0d 100644 +--- a/po/hr.po ++++ b/po/hr.po +@@ -5,17 +5,20 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Croatian (http://www.transifex.com/projects/p/fedora-abrt/language/hr/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Croatian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/hr/)\n" + "Language: hr\n" +-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" ++"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" ++"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +91,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +132,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +147,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +218,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +234,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +410,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +465,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +664,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +743,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +778,7 @@ 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" +@@ -756,7 +817,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +828,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +878,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1093,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1154,7 @@ 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,8 +1177,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1313,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1323,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1439,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1449,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1479,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1672,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1758,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1844,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1902,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/hu.po b/po/hu.po +index 0750a5e..22f7efa 100644 +--- a/po/hu.po ++++ b/po/hu.po +@@ -10,17 +10,19 @@ + # Peter Bojtos , 2013 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora-abrt/language/hu/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/hu/)\n" + "Language: hu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -30,20 +32,26 @@ msgstr "Önműködő Hibabejelentő Eszköz" + msgid "ABRT notification applet" + msgstr "ABRT értesítő alkalmazás" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" + 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.\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +-msgstr "" ++msgstr "Engedélyezi az automatikusan elküldött hibajelentéseket?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "" ++msgstr "Engedélyezi az automatikusan küldött anoním hibajelentéseket?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -75,10 +83,11 @@ msgstr "Problémát találtunk" + msgid "A problem in the %s package has been detected" + msgstr "%s csomagban egy hiba tapasztalható" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s és a diagnosztikai adatok sikeresen elküldésre kerültek" + + #: ../src/applet/applet.c:589 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 +@@ -93,7 +102,9 @@ msgstr "Jelzés nem bezárható: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -105,7 +116,9 @@ msgstr "Figyelmeztetés" + #: ../src/applet/applet.c:834 + 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" ++msgstr "" ++"Az értesítési területen megjelenő applet jelzi a felhasználóknak az ABRT " ++"által észlelt hibákat" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -132,6 +145,7 @@ msgid "Ignore forever" + msgstr "Mindig figyelmen kivül hagyja" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Megnyitás" +@@ -146,6 +160,7 @@ msgstr "Ismert probléma történt" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Jelentés" +@@ -188,40 +203,56 @@ msgstr "GIO nonblocking módja nem beállítható: %s" + 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 " ++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:1635 + 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" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Alkalmazás amely képes jelezni az ABRT-n keresztül a felhasználó felé ha új " ++"probléma történne\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Kérdezzen a mappa kisajátítása előtt" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "uReport automatikus küldése" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "Rövidített jelentés" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "Csendben elküldött rövidített jelentés" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" ++"A coredump fájl fontos a stack trace generálása érdekében. Mivel ez egy idő- " ++"és erőforrás-igényes folyamat, az ABRT ad szolgáltatást ehhez, ami ezt " ++"elvégzi, de előtte fel kell tölteni a coredump fájlt. Ezzel az opcióval " ++"természetesen az ABRT fel fogja tölteni őket kérdés nélkül." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" + "ABRT stores problem data in directories. Whenever ABRT needs writable " +@@ -229,31 +260,51 @@ msgid "" + "directory. With this option disabled ABRT will move the problem directory " + "without asking." + msgstr "" ++"Az ABRT mappákban tárolja a hibákra vonatkozó adatokat. Amikor az ABRT-nak " ++"szüksége van írási jogosultságra a mappát átmozgatja egy bizonyos " ++"rendszerbeli helyről a felhasználó mappájába. Ha ez az opció engedélyezett, " ++"akkor az ABRT kérdés nélkül elvégzi ezt a műveletet." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" ++"Az uReport egy rövid és abszolút anoním leírása egy problémának. Az ABRT " ++"ezeket az uReportokat használja a gyors és globális duplika azonosításra. " ++"Alaphelyzetből az uReport a jelentési folyamat előtt kerül elküldésre. Ezzel " ++"az opcióval viszont a uReport-ok kérdés nélkül rögtön a probléma észlelése " ++"után kerülnek elküldésre." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" ++"Ha ez az opció engedélyezve van, a jelentési folyamat, amit a probléma " ++"értesítő ablakban lévő Jelentés gombbal aktiváltunk - megszakítódik -, " ++"miután az uReport elküldésre került. Azonban, az alapértelmezett probléma " ++"kereső képes arra, hogy befejezze a jelentést, amit bármikor használhat." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" ++"Ha ez az opció engedélyezve van, akkor az ABRT sosem jelenít meg egy " ++"értesítést a jelentett problémákról. Csak akkor van érteleme, ha a " ++"Rövidített jelentés opció be van kapcsolva." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "Kérdezzen a coredump feltöltése előtt" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" +@@ -261,24 +312,31 @@ msgid "" + "access if possibly sensitive data are dected." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "Privát bejegyzés kérése érzékeny információk miatt" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Jelezze a hiányos problémákat" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" ++"Félkész hibákat akkor észlelhetőek, amikor a számítógép épp kikapcsol vagy a " ++"felhasználó kiléptetése zajlik. Mivel az ABRT célja, hogy hasznos hiba " ++"jelentéseket küldjön, így ezeket nem tudjuk elküldeni." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +-msgstr "" ++msgstr "_Kilépés" + + #: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" +@@ -306,7 +364,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nLekérdezi a csomagadatbázist, és menti a csomagot valamint a komponens nevét" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Lekérdezi a csomagadatbázist, és menti a csomagot valamint a komponens nevét" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -369,7 +430,9 @@ msgstr "Módosításhoz a probléma nem elérhető" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Chown parancs végrehajtása sikertelen a mappán. Ellenőrizze a rendszer logfájljait a további részletekért." ++msgstr "" ++"Chown parancs végrehajtása sikertelen a mappán. Ellenőrizze a rendszer " ++"logfájljait a további részletekért." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -395,7 +458,9 @@ msgstr "A probléma mappából '%s' nem törölhető '%s'" + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "A '%s' név elveszett, kérem elllenőrizze, hogy más futó szolgáltatás nem épp ezzel a névvel aktív-e vagy sem.\n" ++msgstr "" ++"A '%s' név elveszett, kérem elllenőrizze, hogy más futó szolgáltatás nem épp " ++"ezzel a névvel aktív-e vagy sem.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -409,11 +474,17 @@ msgstr "Ennek a programnak root jogokkal kell futnia." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "Hiba adatai nem teljesek. Ez általában akkor történik, amikor hibaérzékeléskor a számítógép leállásra készül, vagy a felhasználó épp kilép. A továbbiakban, hogy értékelhető hibajelentéseket tudjon továbbítani, ABRT nem fogja engedni az ilyen hibák továbbítását. Ha mégis úgy érzi ez a probléma megoldása fontos, és segíteni szeretne, lépjen kapcsolatba közvetlenül a fejlesztőkkel." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"Hiba adatai nem teljesek. Ez általában akkor történik, amikor " ++"hibaérzékeléskor a számítógép leállásra készül, vagy a felhasználó épp kilép." ++" A továbbiakban, hogy értékelhető hibajelentéseket tudjon továbbítani, ABRT " ++"nem fogja engedni az ilyen hibák továbbítását. Ha mégis úgy érzi ez a " ++"probléma megoldása fontos, és segíteni szeretne, lépjen kapcsolatba " ++"közvetlenül a fejlesztőkkel." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -450,7 +521,16 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Figyeli az UPLOAD_DIRECTORY-t és kicsomagolja a bejövő archív anyagokat a " ++"bejövő DumpLocation helyyre ami az\n" ++"abrt.conf alapján definiált\n" ++"\n" ++"Ha UPLOAD_DIRECTORY nincs, a \n" ++"WatchCrashdumpArchiveDir opciót alkalmazza az abrt.conf alapján" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -464,17 +544,73 @@ msgstr "Egyidejűleg elérhető dolgozók. Alapértelmezésben " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximális gyorstár mérete Mbyte-ban. Alapértelmezésben " + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " ++msgstr "& [ " ++ ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:251 ++msgid "Invalid number of arguments" ++msgstr "Érvénytelen számú paraméter" ++ ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" ++msgstr "Ismeretlen opcionális érték: '%s'\n" ++ ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" + msgstr "" + + #: ../src/daemon/abrt-handle-upload.in:69 +@@ -594,7 +730,9 @@ msgstr "'%s' ideiglenes fájl létrehozása sikertelen" + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-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'" ++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:264 +@@ -608,11 +746,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [opciók] -d DIR\n\nElemzi a C/C++ nyomkövetési adatokat, előállít duplikációs hash fájlokat, nyomkövetési adatminősítést,\nés azonosítja az összeomlott funkciót a hibagyüjtő DIR könyvtárban" ++msgstr "" ++"& [opciók] -d DIR\n" ++"\n" ++"Elemzi a C/C++ nyomkövetési adatokat, előállít duplikációs hash fájlokat, " ++"nyomkövetési adatminősítést,\n" ++"és azonosítja az összeomlott funkciót a hibagyüjtő DIR könyvtárban" + ++#. + #. * 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" +@@ -627,7 +772,11 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nKiszámítja és elmenti a DIR hibagyűjtó könyvtárban az összeomlási adatok UUID-it" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Kiszámítja és elmenti a DIR hibagyűjtó könyvtárban az összeomlási adatok " ++"UUID-it" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -653,14 +802,21 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\nCalculates and saves UUID and DUPHASH for oops problem directory DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calculates and saves UUID and DUPHASH for oops problem directory 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\nKiszámolja és elmenti az UUID és DUPHASH értékeit az xorg számára a probléma DIR mappájába" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Kiszámolja és elmenti az UUID és DUPHASH értékeit az xorg számára a probléma " ++"DIR mappájába" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -672,7 +828,11 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nKiszámítja és elmenti a UUID és DUPHASH adatokat a python összeomlási adatokból" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Kiszámítja és elmenti a UUID és DUPHASH adatokat a python összeomlási " ++"adatokból" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -687,10 +847,10 @@ msgid "Extracting the oops text from core" + msgstr "Oops szöveg kibontása a core-ból" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "nem feldolgozható {0}:\n" + "{1}" +-msgstr "nem feldolgozható {0}:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -700,18 +860,25 @@ msgstr "Oops üzenet nem kibontható: '{0}'" + msgid "Oops text extracted successfully" + msgstr "Oops szöveg sikeresen kibontva" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" ++"A kernelnapló szerint hardver hiba történt.\n" ++"Ez valószínűleg nem egy szoftver hiba.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nElemzi a összeomlási adatokat a hibagyűjtő DIR mappában, előállítja és elmenti a nyomkovetési adatokat " ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Elemzi a összeomlási adatokat a hibagyűjtő DIR mappában, előállítja és " ++"elmenti a nyomkovetési adatokat " + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -723,6 +890,7 @@ 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" +@@ -733,7 +901,11 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR \n\nEgy coredump-szintű nyomkövetési adatot készít a hibaadatokból és a kapcsolódó binárisból" ++msgstr "" ++"& [-v] [-r] -d DIR \n" ++"\n" ++"Egy coredump-szintű nyomkövetési adatot készít a hibaadatokból és a " ++"kapcsolódó binárisból" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -757,11 +929,13 @@ msgstr "Hiba: %s" + msgid "Exiting on user command" + msgstr "Kilépés felhasználói utasításra" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:88 + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -771,13 +945,31 @@ msgid "" + " -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" ++" --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" + msgstr "" ++"Használat: %s [-vy] [--ids=BUILD_IDS_FILE] \n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--" ++"size_mb=SIZE] \n" ++" [-e, --exact=PATH] \n" ++" A felsorolt azonosítók alapján felépíti és telepíti a debuginfot " ++"BUILD_IDS_FILE alapján \n" ++" a CACHEDIR segítségével a TMPDIR ideiglenes átmeneti területére . \n" ++" A régi fájlok tőrlődnek a CACHEDIRból amíg az kisebb, mint a SIZE . \n" ++" \n" ++" -v Legyen részletesebb \n" ++" -Y Legyen interaktív és válaszoljunk 'igen'el mindegyik kérdésre \n" ++" --ids Alapértelmezett: build_ids \n" ++" --tmpdir Alapértelmezett: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX \n" ++" --cache Alapértelmezett: /var/cache/abrt-di \n" ++" --size_mb Alapértelmezettt: 4096 \n" ++" -e,--exact Csak a megadott fájlok letöltése \n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -785,15 +977,18 @@ msgstr "Nem megnyitható {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "A hibakód referenciák {0}, debuginfo fájlok, {1} nem került telepítésre" ++msgstr "" ++"A hibakód referenciák {0}, debuginfo fájlok, {1} nem került telepítésre" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} debuginfo fájlok nincsenek telepítve" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Hiányzó igényelt fájlok: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -808,21 +1003,33 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Egyetért, hogy feltöltsük a core dump-ot? (Érzékeny adatokat is tartalmazhat) Ha a válasza 'Nem', a nyomkövetési adatokat helyben állítjuk elő. (Ezzel nagy mennyiségű adat kerülhet letöltésre)." ++msgstr "" ++"Egyetért, hogy feltöltsük a core dump-ot? (Érzékeny adatokat is " ++"tartalmazhat) Ha a válasza 'Nem', a nyomkövetési adatokat helyben állítjuk " ++"elő. (Ezzel nagy mennyiségű adat kerülhet letöltésre)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "Kívánja hogy helyben állítsuk elő a nyomkövetési adatokat? (Ezzel nagy mennyiségű adat kerülhet letöltésre, de enélkül a hibajelentés használhatatlan és a jelentés beküldése nem folytatódhat)." ++msgstr "" ++"Kívánja hogy helyben állítsuk elő a nyomkövetési adatokat? (Ezzel nagy " ++"mennyiségű adat kerülhet letöltésre, de enélkül a hibajelentés " ++"használhatatlan és a jelentés beküldése nem folytatódhat)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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\nTörli a hibakönyvtárakat (-d) vagy fájlokat (-f) a DIR könyvtárakban amíg kisebb nem lesz mint a SIZE méret.\nFILE fájlok megőriződnek (sosem kerülnek törlésre)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Törli a hibakönyvtárakat (-d) vagy fájlokat (-f) a DIR könyvtárakban amíg " ++"kisebb nem lesz mint a SIZE méret.\n" ++"FILE fájlok megőriződnek (sosem kerülnek törlésre)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -964,7 +1171,9 @@ msgstr "Ugrás egy érvénytelen címre" + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "Adjon hozzáférést a hozzárendelt fájlon túl, helytelen címzésekhez, rendezetlen hozzáférésekhez, stb." ++msgstr "" ++"Adjon hozzáférést a hozzárendelt fájlon túl, helytelen címzésekhez, " ++"rendezetlen hozzáférésekhez, stb." + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +@@ -991,30 +1200,42 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nMonitorozza a FILE logfjájlt, és futtassa a PROG programot ha az változik, vagy lecserélődik" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Monitorozza a FILE logfjájlt, és futtassa a PROG programot ha az változik, " ++"vagy lecserélődik" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" + msgstr "Ne futtassa a PROG ha STR nem található" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++"Kernelhiba történt egy hibás BIOS miatt. Sajnálatos módon, az ilyen " ++"problémákat nem tudják a kernel programozók kijavítani." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++"Kernelhiba történt és a hardvere nem támogatott, ezért a kernel programozók " ++"nem tudják megjavítani ezt a problémát." + + #: ../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." ++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:153 + #, c-format +@@ -1026,7 +1247,10 @@ 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)" ++msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE] \n" ++"\n" ++"Bontsa ki az oppsot okozó fájlt a (standard bemenetre)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1034,13 +1258,17 @@ 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: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" ++msgstr "" ++"Készítsen mindig új mappát DIR mappában minden egyes hibához amit talál" + + #: ../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" ++msgstr "" ++"Ugyanaz mint a -d DumpLocation, a DumpLocation-t pedig az abrt.conf " ++"tartalmazza" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1076,7 +1304,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nBontsa ki az Xorg összeomlást a FILE-ból (vagy szabványos bemenetről)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Bontsa ki az Xorg összeomlást a FILE-ból (vagy szabványos bemenetről)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1084,16 +1315,20 @@ msgstr "Nyomtassa ki az összeomlási adatokat a szabványos kimenetre" + + #: ../src/plugins/abrt-dump-xorg.c:246 + msgid "Create problem directory in DIR for every crash found" +-msgstr "Készítsen mindig új mappát DIR mappában minden egyes ütközéshez amit talál" ++msgstr "" ++"Készítsen mindig új mappát DIR mappában minden egyes ütközéshez amit talál" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "A nyomkövető kiszolgáló nem használható ebben az esetben, mivel az összeomlás túl nagy volt. Próbálja meg a helyi nyomkövetést." ++msgstr "" ++"A nyomkövető kiszolgáló nem használható ebben az esetben, mivel az " ++"összeomlás túl nagy volt. Próbálja meg a helyi nyomkövetést." + + #. 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,10 +1351,10 @@ msgstr "%d hosszúságú HTTP fejléc küldése sikertelen: NSS hiba %d." + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Váratlan HTTP válasz a kiszolgálótól: %d\n" + "%s" +-msgstr "Váratlan HTTP válasz a kiszolgálótól: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1135,7 +1370,9 @@ msgstr "Hibás válasz a kiszolgálótól: hiányzó HTTP üzenettörzs." + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "Nyomkövető kiszolgáló képtelen feldolgozni ezt a csomagot '%s.%s'.\nEz része bármelyik hivatalos %s tárolónak?" ++msgstr "" ++"Nyomkövető kiszolgáló képtelen feldolgozni ezt a csomagot '%s.%s'.\n" ++"Ez része bármelyik hivatalos %s tárolónak?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1153,14 +1390,19 @@ msgstr "A kiszolgáló megtagadta a kérést." + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "Az '%s' fájlnak közönséges fájlnak kell lennie, hogy használhassa a Retrace kiszolgálót." ++msgstr "" ++"Az '%s' fájlnak közönséges fájlnak kell lennie, hogy használhassa a Retrace " ++"kiszolgálót." + + #: ../src/plugins/abrt-retrace-client.c:514 + #, c-format + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Az összeomlás mérete nyomán keletkezett fájl %lld byte, de a nyomkövető szerver csak kisebb vagy ugyanilyen méretű fájlok fogadására képes: %lld byte." ++msgstr "" ++"Az összeomlás mérete nyomán keletkezett fájl %lld byte, de a nyomkövető " ++"szerver csak kisebb vagy ugyanilyen méretű fájlok fogadására képes: %lld " ++"byte." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1188,7 +1430,10 @@ msgstr "Az archívum előkészítése feltöltésre" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Az összeomlás mérete nyomán keletkezett fájl %lld byte, de a nyomkövető szerver csak kisebb vagy ugyanilyen méretű archív fájlok fogadására képes: %lld byte." ++msgstr "" ++"Az összeomlás mérete nyomán keletkezett fájl %lld byte, de a nyomkövető " ++"szerver csak kisebb vagy ugyanilyen méretű archív fájlok fogadására képes: " ++"%lld byte." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1231,13 +1476,17 @@ msgstr "Feltöltés sikeres" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "A hibákat tároló könyvtára hibás, és így nem dolgozható fel a nyomkövető kiszolgáló által." ++msgstr "" ++"A hibákat tároló könyvtára hibás, és így nem dolgozható fel a nyomkövető " ++"kiszolgáló által." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Az archív fájl rosszindulatú fájlokat tartalmaz (pl. szimbolikus linkeket) és így ezek a fájlok nem dolgozhatóak fel." ++msgstr "" ++"Az archív fájl rosszindulatú fájlokat tartalmaz (pl. szimbolikus linkeket) " ++"és így ezek a fájlok nem dolgozhatóak fel." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1253,10 +1502,10 @@ msgstr "Nyomkövetés előállítása elkezdődött" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" ++"Task Password: %s\n" ++msgstr "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Task Id: %s\nTask Password: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1264,10 +1513,10 @@ msgstr "Helytelen válasz a kiszolgálótól: hiányzó X-Task-Status" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Task Status: %s\n" + "%s\n" +-msgstr "Task Status: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1280,7 +1529,9 @@ msgstr "%d hosszúságú HTTP fejléc küldésekor hiba történt: NSS hiba %d." + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Nyomkövetés sikertelen. Próbálja később és a hiba később is fennáll, kérem jelentse be." ++msgstr "" ++"Nyomkövetés sikertelen. Próbálja később és a hiba később is fennáll, kérem " ++"jelentse be." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1294,7 +1545,9 @@ msgstr "nem biztonságos kapcsolat engedélyezése a nyomkövető szerverrel" + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "ne ellenőrizze hogy a nyomkövető szerver képes-e feldolgozni a megadott csomagot vagy sem mielött feltöltené az archívba" ++msgstr "" ++"ne ellenőrizze hogy a nyomkövető szerver képes-e feldolgozni a megadott " ++"csomagot vagy sem mielött feltöltené az archívba" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1326,7 +1579,8 @@ msgstr "Lekérdezési műveletek késleltetése" + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "(debug) nem törli az ideiglenes könyvtárban lévő létrehozott archívumot" ++msgstr "" ++"(debug) nem törli az ideiglenes könyvtárban lévő létrehozott archívumot" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1344,7 +1598,9 @@ msgstr "feladat jelszava a kiszolgálón" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [opciók]\nLehetséges parancsok: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client [opciók]\n" ++"Lehetséges parancsok: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1376,14 +1632,19 @@ msgstr "Helyi GNU Debugger" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Debuginfo csomagok letöltése és nyomkövetési információ előállítása helyben GDB segítségével" ++msgstr "" ++"Debuginfo csomagok letöltése és nyomkövetési információ előállítása helyben " ++"GDB segítségével" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Szükséges a debuginfo csomagok letöltése, ami elég sokáig eltarthat, és sok helyet emészthet fel. Akérhogyis, a nyomkövető szervertől eltérően, nem küld adatokat a távoli gépek felé." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Szükséges a debuginfo csomagok letöltése, ami elég sokáig eltarthat, és sok " ++"helyet emészthet fel. Akérhogyis, a nyomkövető szervertől eltérően, nem küld " ++"adatokat a távoli gépek felé." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1391,12 +1652,18 @@ msgstr "A core dump küldése a nyomkövető szervernek további analízisre" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Feltölti a coredump fájlokat a szerverre, ami nyomkövetési adatokat generál és visszaküldi ezeket. Előnye: nincs szükség a debuginfo csomagok letöltésére, valamint a nyomkövető szerver jobb eredményekre képes a teljesebb debuginfo csomagjaival. Hátrányok: a feltöltött coredump fájlok az összedőlt programból származnak, ami privát adatokat is tartalmazhat, ha van benne ilyen." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Feltölti a coredump fájlokat a szerverre, ami nyomkövetési adatokat generál " ++"és visszaküldi ezeket. Előnye: nincs szükség a debuginfo csomagok " ++"letöltésére, valamint a nyomkövető szerver jobb eredményekre képes a " ++"teljesebb debuginfo csomagjaival. Hátrányok: a feltöltött coredump fájlok az " ++"összedőlt programból származnak, ami privát adatokat is tartalmazhat, ha van " ++"benne ilyen." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1421,10 +1688,13 @@ msgstr "Függetlenül attól, hogy használ vagy sem nem biztonságos kapcsolato + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Írjon \"insecure\"-t hogy engedélyezze a nem biztonságos kapcsolatot <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Írjon \"insecure\"-t hogy engedélyezze a nem biztonságos kapcsolatot <a " ++"href=\"https://fedorahosted.org/abrt/wiki/" ++"AbrtRetraceServerInsecureConnection\" >(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1438,7 +1708,10 @@ msgstr "Kapcsolódó sorok mentése a ~/.xsession-errors fájlból" + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "átnézi a ~/.xsession-errors fájl hibáit, és elmenti azokat a sorokat amelyek tartalmazzák a végrehajtó nevét. Az eredmény 'xsession-errors' néven kerül mentésre. " ++msgstr "" ++"átnézi a ~/.xsession-errors fájl hibáit, és elmenti azokat a sorokat amelyek " ++"tartalmazzák a végrehajtó nevét. Az eredmény 'xsession-errors' néven kerül " ++"mentésre. " + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1596,7 +1869,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nKeressen frissítéseket bodhi szervereken" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Keressen frissítéseket bodhi szervereken" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1614,16 +1890,22 @@ msgstr "A helyben lévő csomag verziója frissebb mint a frissítésekben levő + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Ehhez egy frissítés létezik, ami lehet megoldja a problémát. Ez telepítheti a következő futtatásával: %s. Kívánja folytatni a hiba bejelentését?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Ehhez egy frissítés létezik, ami lehet megoldja a problémát. Ez telepítheti " ++"a következő futtatásával: %s. Kívánja folytatni a hiba bejelentését?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE... \n\nAz osztott oops üzeneteket kinyomtathatja/törölheti az átviszgált fájlban ." ++msgstr "" ++"& [-v] [-od] FILE... \n" ++"\n" ++"Az osztott oops üzeneteket kinyomtathatja/törölheti az átviszgált fájlban ." ++"" + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1636,15 +1918,17 @@ msgstr "Fájlok törlése közben oops történt" + #: ../src/cli/abrt-cli-core.c:91 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "'%s' egyidejűleg egyszerre több problémagyüjtő könyvtára is azonosított" ++msgstr "" ++"'%s' egyidejűleg egyszerre több problémagyüjtő könyvtára is azonosított" + + #: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Használat: abrt-cli [--version] COMMAND [DIR]..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "Listázza a még be nem jelentett hibákat [DIR könyvtárakban]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1680,9 +1964,10 @@ msgstr "" + msgid "& list [options] [DIR]..." + msgstr "& list [opciók] [DIR]..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "Csak a nem jelentett problémákat listázza" + + #. deprecate -d option with --pretty=full + #: ../src/cli/list.c:190 ../src/cli/list.c:243 +@@ -1691,18 +1976,27 @@ msgstr "Részletes jelentés megjelenítése" + + #: ../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" ++msgstr "" ++"Csak azoknak az esetek számát jelenítse meg ami frissebb, mintt a " ++"meghatározott időbélyeg" + + #: ../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" ++msgstr "" ++"Csak azokat a megadott eseteket jelenítse meg amik régebbiek mint az " ++"időbélyeg" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" ++"Az Autoreport képesség (önműködő jelentés) ki van kapcsolva. Kérem " ++"engedélyezze root jogú felhasználóként a 'abrt-auto-reporting enabled' " ++"paranccsal.\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1723,16 +2017,22 @@ msgstr "& status [DIR]..." + + #: ../src/cli/status.c:78 + msgid "Print only the problem count without any message" +-msgstr "Jelenítse meg csak azoknak az eseteknek a számát ahol minden üzenet nélkül történt" ++msgstr "" ++"Jelenítse meg csak azoknak az eseteknek a számát ahol minden üzenet nélkül " ++"történt" + + #: ../src/cli/status.c:79 + msgid "Print only the problems more recent than specified timestamp" +-msgstr "Csak azoknak az eseteknek a számát jelenítse meg, ami a megjelölt időbélyeg óta történt" ++msgstr "" ++"Csak azoknak az eseteknek a számát jelenítse meg, ami a megjelölt időbélyeg " ++"óta történt" + + #: ../src/cli/status.c:104 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" +-msgstr "Az ABRT több hibát is talált %u (s) . További információhoz futtasa az abrt-cli list %s parancsot\n" ++msgstr "" ++"Az ABRT több hibát is talált %u (s) . További információhoz futtasa az abrt-" ++"cli list %s parancsot\n" + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1777,7 +2077,9 @@ msgstr "" + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Küldje a core dump-ot a távoli Retrace kiszolgálónak analízisre vagy készítse el helyben az analízist, ha a távoli folyamat sikertelen lenne" ++msgstr "" ++"Küldje a core dump-ot a távoli Retrace kiszolgálónak analízisre vagy " ++"készítse el helyben az analízist, ha a távoli folyamat sikertelen lenne" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1785,10 +2087,18 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Feltölti a coredump-ot a kiszolgálóra, ami nyomkövetési adatokat állít elő, és azt küldi vissza. Ha a felhasználó nem kívánja feltölteni az adatait bárhová is, az esemény helyben készíti el az analízist. Helyi analízis indul akkor is, ha távoli elemzés sikertelen. Előnye: nincs szükség a debuginfo csomagok letöltésére. A nyomkövető kiszolgálók debuginfo adatbázisa még teljesebb, így a távoli szerverek jobb nyomkövetési adatot állíthatnak elő. Hátránya: a feltöltött adatokkal személyes adatok is kerülhetnek a feltöltésbe, ha van ilyen." ++msgstr "" ++"Feltölti a coredump-ot a kiszolgálóra, ami nyomkövetési adatokat állít elő, " ++"és azt küldi vissza. Ha a felhasználó nem kívánja feltölteni az adatait " ++"bárhová is, az esemény helyben készíti el az analízist. Helyi analízis indul " ++"akkor is, ha távoli elemzés sikertelen. Előnye: nincs szükség a debuginfo " ++"csomagok letöltésére. A nyomkövető kiszolgálók debuginfo adatbázisa még " ++"teljesebb, így a távoli szerverek jobb nyomkövetési adatot állíthatnak elő. " ++"Hátránya: a feltöltött adatokkal személyes adatok is kerülhetnek a " ++"feltöltésbe, ha van ilyen." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1797,13 +2107,17 @@ msgstr "VM mag elemzése" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Telepítse a kernel debuginfo csomagokat, állítson elő kernel log-ot, és hibaüzeneteket." ++msgstr "" ++"Telepítse a kernel debuginfo csomagokat, állítson elő kernel log-ot, és " ++"hibaüzeneteket." + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Szükséges a kernel debuginfo csomagok telepítése, ami elég sokáig eltarthat, és rengeteg tárhelyet emészthet fel." ++msgstr "" ++"Szükséges a kernel debuginfo csomagok telepítése, ami elég sokáig eltarthat, " ++"és rengeteg tárhelyet emészthet fel." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1817,7 +2131,9 @@ msgstr "Konfiguráció mentése az alkalmazás GConf könyvtárából" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "A gconftool-2 --recursive-list /apps/executable és elmenti, mint 'gconf_subtree' elemként." ++msgstr "" ++"A gconftool-2 --recursive-list /apps/executable és elmenti, mint " ++"'gconf_subtree' elemként." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1831,7 +2147,9 @@ msgstr "Az /etc/vimrc és /etc/gvimrc mentése" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Ellenőrzi hogy a vimrc és gvimrc fájlok jelen vannak-e az /etc könyvtárban és elmenti őket, mint system_vimrc és system_gvimrc." ++msgstr "" ++"Ellenőrzi hogy a vimrc és gvimrc fájlok jelen vannak-e az /etc könyvtárban " ++"és elmenti őket, mint system_vimrc és system_gvimrc." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1843,9 +2161,11 @@ msgstr "A .vimrc és .gvimrc fájlok fájlok mentése a /home könyvtárból" + + #: ../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 "Ellenőrzi hogy a .vimrc és .gvimrc fájlok jelen vannak-e az /home könyvtárban és elmenti őket, mint system_vimrc és system_gvimrc." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Ellenőrzi hogy a .vimrc és .gvimrc fájlok jelen vannak-e az /home " ++"könyvtárban és elmenti őket, mint system_vimrc és system_gvimrc." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/hy.po b/po/hy.po +index a48c9fa..353c5c5 100644 +--- a/po/hy.po ++++ b/po/hy.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Armenian (http://www.transifex.com/projects/p/fedora-abrt/language/hy/)\n" ++"Language-Team: Armenian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/hy/)\n" ++"Language: hy\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: hy\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/ia.po b/po/ia.po +index b89f748..c9e1fd4 100644 +--- a/po/ia.po ++++ b/po/ia.po +@@ -6,25 +6,29 @@ + # Nik Kalach , 2012 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Interlingua (http://www.transifex.com/projects/p/fedora-abrt/language/ia/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Interlingua (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ia/)\n" + "Language: ia\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +-msgstr "" ++msgstr "Instrumento pro reportage automatic de defectos" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "ABRT notification applet" +-msgstr "" ++msgstr "Mini-application de notification ABRT" + + #: ../src/applet/applet.c:130 + msgid "" +@@ -76,11 +80,12 @@ msgstr "" + msgid "%s and the diagnostic data has been submitted" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:589 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" +-msgstr "" ++msgstr "Impossibile executar '%s'" + + #: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format +@@ -89,19 +94,25 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +-msgstr "" ++msgstr "Advertimento" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" ++"Mini-application pro le area de notification que signala al usator le " ++"problemas detegite per ARBT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -128,6 +139,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -142,13 +154,15 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Reportar" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" +-msgstr "" ++msgstr "Un problema ha occurrite" + + #: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" +@@ -212,10 +226,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +242,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -315,9 +328,10 @@ msgstr "" + msgid "Problem directory" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:395 + msgid "Configuration file" +-msgstr "" ++msgstr "File de configuration" + + #: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 +@@ -328,15 +342,17 @@ msgstr "" + msgid "Use NUM as client uid" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++msgstr "Registrar in syslog" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" +-msgstr "" ++msgstr "Adder nomines de programma in registro" + + #: ../src/dbus/abrt-dbus.c:123 + msgid "Unknown error" +@@ -405,19 +421,21 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +-msgstr "" ++msgstr "Non lancear como demone" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:498 + msgid "Log to syslog even with -d" +-msgstr "" ++msgstr "Registrar in syslog mesmo con -d" + + #: ../src/daemon/abrt-handle-event.c:388 + msgid "& [-v -i] -e|--event EVENT DIR..." +@@ -460,19 +478,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -606,13 +677,16 @@ msgid "" + "and identifies crash function in problem directory DIR" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt ++#. + #. * 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 "" ++msgstr "Error durante le analyse del retraciamento de %s" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" +@@ -683,8 +757,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -709,20 +782,24 @@ msgid "" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +-msgstr "" ++msgstr "Directorios debuginfo additional" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "" ++msgstr "Terminar gdb si execution dura plus de NUM secundas" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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 "" ++msgstr "Le retraciamento es generate e salveguardate, %u bytes" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" +@@ -749,15 +826,17 @@ msgstr "" + msgid "Error: %s" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" +-msgstr "" ++msgstr "Exito al commando del usator" + + #: ../src/plugins/abrt-action-install-debuginfo.in:88 + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +846,8 @@ msgid "" + " -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" ++" --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" +@@ -816,7 +896,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1024,19 +1105,24 @@ msgid "" + "Extract oops from FILE (or standard input)" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +-msgstr "" ++msgstr "Imprimer le \"oops\" trovate sur output 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++"Identic a \"-d locodelinstantaneo\"; le loco del instantaneo es specificate " ++"in abrt.conf" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1082,20 +1168,25 @@ msgstr "" + msgid "Create problem directory in DIR for every crash found" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." + msgstr "" ++"Le servitor de retraciamento non pote esser usate perque le instantaneo del " ++"programma fallite es troppo grande. Essaya un retraciamento local." + + #. 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 "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 + #: ../src/plugins/abrt-retrace-client.c:666 +@@ -1103,7 +1194,9 @@ msgstr "" + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d" + msgstr "" ++"Error durante le invio de un capite HTTP con longitude %d: error NSS %d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 + #: ../src/plugins/abrt-retrace-client.c:765 +@@ -1112,11 +1205,12 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Responsa HTTP inexpectate del servitor: %d\n" + "%s" +-msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 + #: ../src/plugins/abrt-retrace-client.c:841 +@@ -1124,7 +1218,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:982 + #: ../src/plugins/abrt-retrace-client.c:1052 + msgid "Invalid response from server: missing HTTP message body." +-msgstr "" ++msgstr "Responsa invalide del servitor: le corpore del message HTTP manca." + + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format +@@ -1133,17 +1227,20 @@ msgid "" + "Is it a part of official '%s' repositories?" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +-msgstr "" ++msgstr "Consulta le configuration del servitor" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." +-msgstr "" ++msgstr "Le servitor es totalmente occupate. Reproba plus tarde." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." +-msgstr "" ++msgstr "Le servitor ha refusate tu requesta." + + #: ../src/plugins/abrt-retrace-client.c:484 + #: ../src/plugins/abrt-retrace-client.c:500 +@@ -1158,26 +1255,30 @@ msgid "" + "crashes smaller or equal to %lld bytes." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +-msgstr "" ++msgstr "Le servitor non supporta le archivos tar comprimite con xz." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:571 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" ++msgstr "Le edition '%s' non es supportate per le servitor de retraciamento." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:575 + msgid "The server is not able to handle your request." +-msgstr "" ++msgstr "Le servitor non es capace de tractar tu requesta." + + #: ../src/plugins/abrt-retrace-client.c:594 + msgid "Unknown package sent to Retrace server." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:603 + msgid "Preparing an archive to upload" +-msgstr "" ++msgstr "Archivo incargabile in preparation" + + #: ../src/plugins/abrt-retrace-client.c:616 + #, c-format +@@ -1191,9 +1292,10 @@ msgstr "" + msgid "You are going to upload %d megabytes. Continue?" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:638 + msgid "Cancelled by user" +-msgstr "" ++msgstr "Cancellate per usator" + + #: ../src/plugins/abrt-retrace-client.c:673 + #, c-format +@@ -1205,86 +1307,108 @@ msgstr "" + msgid "Uploading %lld bytes\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:699 + #, c-format + msgid "Uploading %d%%\n" +-msgstr "" ++msgstr "Incarga %d%%\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:711 + msgid "Failed to read from a pipe" +-msgstr "" ++msgstr "Error durante le lectura ab un tubo" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:724 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" ++msgstr "Error durante le invio de datos: error NSS %d (%s): %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:735 + msgid "Upload successful" +-msgstr "" ++msgstr "Incargamento succedite" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:757 + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." + msgstr "" ++"Le directorio de problemas es corrumpite e non pote esser tractate per le " ++"servitor de retraciamento." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." + msgstr "" ++"Le archivo contine files malitiose (p.ex. ligamines symbolic) e dunque non " ++"pote esser tractate." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" ++msgstr "Responsa invalide del servitor: manca X-Task-Id." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:778 + msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" ++msgstr "Responsa invalide del servitor: manca X-Task-Password." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:785 + msgid "Retrace job started" +-msgstr "" ++msgstr "Action de retraciamento comenciate" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "" ++msgstr "ID del action: %s\n" ++"Contrasigno del action: %s\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" ++msgstr "Responsa invalide del servitor: manca X-Task-Status." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Stato del action: %s\n" + "%s\n" +-msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++msgstr "Fallimento de inviar un capite HTTP de longitude %d: error NSS %d." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1160 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." + msgstr "" ++"Le retraciamento ha fallite. Reproba plus tarde. Si le problema persiste, " ++"reporta lo, per favor." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +-msgstr "" ++msgstr "registrar in syslog" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1209 + msgid "allow insecure connection to retrace server" +-msgstr "" ++msgstr "permitter un connexion insecur a un servitor de retraciamento" + + #: ../src/plugins/abrt-retrace-client.c:1211 + msgid "" +@@ -1292,49 +1416,58 @@ msgid "" + "uploading the archive" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +-msgstr "" ++msgstr "URL del servitor de retraciamento" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1216 + msgid "retrace server port" +-msgstr "" ++msgstr "porto del servitor de retraciamento" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1218 + msgid "(debug) show received HTTP headers" +-msgstr "" ++msgstr "(debug) monstrar le capites HTTP recipite" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1219 + msgid "For create and batch operations" +-msgstr "" ++msgstr "Pro le operationes de creation e de tractamento per lotes" + + #: ../src/plugins/abrt-retrace-client.c:1221 + msgid "read data from ABRT problem directory" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1223 + msgid "read data from coredump" +-msgstr "" ++msgstr "leger datos ab un instantaneo de memoria" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1225 + msgid "Delay for polling operations" +-msgstr "" ++msgstr "Retardo pro operationes de polling" + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +-msgstr "" ++msgstr "Pro operationes de stato, retraciamento e registro" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1231 + msgid "id of your task on server" +-msgstr "" ++msgstr "ID de tu action in le servitor" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1233 + msgid "password of your task on server" +-msgstr "" ++msgstr "contrasigno de tu action in le servitor" + + #: ../src/plugins/abrt-retrace-client.c:1237 + msgid "" +@@ -1347,62 +1480,83 @@ msgstr "" + msgid "Either problem directory or coredump is needed." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1294 + #: ../src/plugins/abrt-retrace-client.c:1302 + #: ../src/plugins/abrt-retrace-client.c:1310 + #: ../src/plugins/abrt-retrace-client.c:1318 + msgid "Task id is needed." +-msgstr "" ++msgstr "Le ID del action es necessari." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++msgstr "Le contrasigno del action es necessari." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1324 + #, c-format + msgid "Unknown operation: %s." +-msgstr "" ++msgstr "Operation incognite: %s." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" +-msgstr "" ++msgstr "Debugger GNU local" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" + msgstr "" ++"Discargar pacchettos debuginfo e generar retraciamento localmente con GDB" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" ++"Es necessari discargar le pacchettos debuginfo, lo que pote prender multe " ++"tempore e occupar spatio sur disco. Nonobstante, contrarimente a " ++"RetraceServer, non invia un instantaneo del memoria a alcun machina remote." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" + msgstr "" ++"Inviar le instantaneo del memoria al servitor de retraciamento pro analyse" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" ++"Invia le instantaneo del memoria a un servitor, le qual genera le " ++"retraciamento e lo reinvia. Avantages: non es necessari discargar debuginfo; " ++"le information debuginfo sur le servitor de retraciamento es plus complete; " ++"le servitor pote generar melior retraciamentos. Disavantages: le instantaneo " ++"del memoria que tu invia contine tote le datos del programma fallite, " ++"incluse tu datos private, si existe." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 + msgid "Retrace server URL" +-msgstr "" ++msgstr "URL del servitor de retraciamento" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 + #: ../src/plugins/analyze_CCpp.xml.in.h:4 + msgid "Address of the retrace server" +-msgstr "" ++msgstr "Adresse del servitor de retraciamento" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 + #: ../src/plugins/analyze_CCpp.xml.in.h:5 +@@ -1417,24 +1571,29 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "" ++msgstr "Salveguardar le lineas pertinente del file ~/.xsession-errors" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++"Percurre le file ~/.xsession-errors e salveguarda le lineas que contine le " ++"nomine del executabile. Le resultato es salveguardate como elemento " ++"'xsession_errors'." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1454,34 +1613,42 @@ msgstr "" + msgid "An error occurred while connecting to '%s'" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:97 + #, c-format + msgid "Issuer certificate is invalid: '%s'." +-msgstr "" ++msgstr "Le certificato de emissor non es valide: '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" ++msgstr "Le certificato es signate per un emissor non approbate: '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." + msgstr "" ++"Le nomine del subjecto del certificato '%s' non corresponde al nomine del " ++"machina de destination '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +-msgstr "" ++msgstr "Le certificato remote ha expirate." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" ++msgstr "Le emissor del certificato non es recognoscite: '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" ++msgstr "Mal certificato recipite. Subjecto '%s', emissor '%s'." + + #: ../src/plugins/https-utils.c:149 + #, c-format +@@ -1499,17 +1666,20 @@ msgstr "" + msgid "Can't resolve host name '%s'." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." +-msgstr "" ++msgstr "Fallimento de mitter le socket in modo blocante." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:213 + msgid "Failed to wrap TCP socket by SSL." +-msgstr "" ++msgstr "Fallimento de incapsular le socket TCP in SSL." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." +-msgstr "" ++msgstr "Fallimento de negotiar un connexion del cliente al socket SSL." + + #: ../src/plugins/https-utils.c:220 + msgid "Failed to enable SSL3." +@@ -1519,61 +1689,70 @@ msgstr "" + msgid "Failed to enable TLS." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +-msgstr "" ++msgstr "Fallimento de definir le adresse URL del socket SSL." + + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +-msgstr "" ++msgstr "Fallimento de fixar le hook del certificato." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." +-msgstr "" ++msgstr "Fallimento de fixar le appello de retorno del negotiation initial." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." +-msgstr "" ++msgstr "Fallimento de reinitialisar le negotiation initial." + + #: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." +-msgstr "" ++msgstr "Fallimento de clauder le socket SSL." + + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." +-msgstr "" ++msgstr "Fallimento de reception de datos: error NSS %d." + + #: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." +-msgstr "" ++msgstr "Fallimento de initialisar NSS." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." +-msgstr "" ++msgstr "Fallimento de initialisar le modulo de securitate." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." +-msgstr "" ++msgstr "Fallimento de arrestar NSS." + + #: ../src/plugins/bodhi.c:375 + msgid "List of bug ids" +@@ -1610,8 +1789,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1680,10 +1859,11 @@ msgstr "" + msgid "List only not-reported problems" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full + #: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" +-msgstr "" ++msgstr "Monstrar un reporto detaliate" + + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +@@ -1696,7 +1876,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1781,14 +1962,15 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +-msgstr "" ++msgstr "Analysar le instantaneo de memoria virtual" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" +@@ -1839,8 +2021,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/id.po b/po/id.po +index 4b3c3f3..87b35bc 100644 +--- a/po/id.po ++++ b/po/id.po +@@ -10,17 +10,19 @@ + # Prima Yogi Loviniltra , 2012 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Indonesian (http://www.transifex.com/projects/p/fedora-abrt/language/id/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Indonesian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/id/)\n" + "Language: id\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -93,7 +95,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -105,7 +109,9 @@ msgstr "Peringatan" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "Pemberitahuan daerah applet yang memberitahu pengguna tentang masalah terdeteksi oleh ABRT" ++msgstr "" ++"Pemberitahuan daerah applet yang memberitahu pengguna tentang masalah " ++"terdeteksi oleh ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -132,6 +138,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -146,6 +153,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Laporan" +@@ -216,10 +224,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -233,15 +240,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -409,10 +416,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -464,19 +471,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -610,9 +670,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -687,8 +749,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -723,6 +784,7 @@ 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" +@@ -761,7 +823,8 @@ msgstr "Keluar dari perintah pengguna" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -771,7 +834,8 @@ msgid "" + " -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" ++" --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" +@@ -820,7 +884,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1034,6 +1099,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1094,6 +1160,7 @@ 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,8 +1183,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1253,8 +1319,7 @@ msgstr "Retrace dimulai" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1264,8 +1329,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,14 +1440,18 @@ msgstr "GNU Debugger Lokal " + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Unduh paket debuginfo dan menghasilkan backtrace lokal menggunakan GDB" ++msgstr "" ++"Unduh paket debuginfo dan menghasilkan backtrace lokal menggunakan GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Butuh untuk mengunduh paket debuginfo, yang mungkin memakan waktu signifikan, dan mengambil ruang disk. Namun, tidak seperti RetraceServer, tidak mengirim coredump ke mesin remote." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Butuh untuk mengunduh paket debuginfo, yang mungkin memakan waktu " ++"signifikan, dan mengambil ruang disk. Namun, tidak seperti RetraceServer, " ++"tidak mengirim coredump ke mesin remote." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1391,11 +1459,11 @@ msgstr "Kirim core dump untuk retrace remote server untuk analisis" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1421,9 +1489,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1614,8 +1682,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1700,7 +1768,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1785,8 +1854,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1843,8 +1912,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/ilo.po b/po/ilo.po +index add264b..4126acd 100644 +--- a/po/ilo.po ++++ b/po/ilo.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Iloko (http://www.transifex.com/projects/p/fedora-abrt/language/ilo/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Iloko (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ilo/)\n" + "Language: ilo\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/is.po b/po/is.po +index 243537e..c0ad8f3 100644 +--- a/po/is.po ++++ b/po/is.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Icelandic (http://www.transifex.com/projects/p/fedora-abrt/language/is/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Icelandic (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/is/)\n" + "Language: is\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/it.po b/po/it.po +index d9eece6..986806c 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -14,19 +14,22 @@ + # Luigi Votta , 2011 + # Mauro Gaggiotti , 2012 + # Silvio Pierro , 2012 ++# Francesco Valente , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-24 01:54+0000\n" +-"Last-Translator: fvalen \n" +-"Language-Team: Italian (http://www.transifex.com/projects/p/fedora-abrt/language/it/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-06 06:14-0500\n" ++"Last-Translator: Francesco Valente \n" ++"Language-Team: Italian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/it/)\n" + "Language: it\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -41,7 +44,11 @@ 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" +-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" ++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?" +@@ -60,7 +67,8 @@ msgstr "Impossibile collegarsi a NetworkManager attraverso DBus: %s" + #: ../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" ++msgstr "" ++"Impossibile determinare lo stato della rete tramite NetworkManager: %s" + + #: ../src/applet/applet.c:342 + #, c-format +@@ -99,10 +107,18 @@ msgstr "Impossibile chiudere la notifica: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "Stai per disattivare le notifiche di un problema specifico. Così facendo non sarai in grado di visualizzare l'avviso relativo a questo problema, tuttavia ABRT continuerà con il rilevamento e ti permetterà di eseguire il riporto dalla GUI di ABRT.\n\nDesideri continuare?" ++msgstr "" ++"Stai per disattivare le notifiche di un problema specifico. Così facendo non " ++"sarai in grado di visualizzare l'avviso relativo a questo problema, tuttavia " ++"ABRT continuerà con il rilevamento e ti permetterà di eseguire il riporto " ++"dalla GUI di ABRT.\n" ++"\n" ++"Desideri continuare?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -111,7 +127,9 @@ msgstr "Attenzione" + #: ../src/applet/applet.c:834 + 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" ++msgstr "" ++"Applet area di notifica che informa gli utenti sulla presenza di " ++"problematiche rilevate da ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -138,6 +156,7 @@ msgid "Ignore forever" + msgstr "Ignora sempre" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Apri" +@@ -152,6 +171,7 @@ msgstr "Si è verificato un errore noto" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Notifica" +@@ -194,14 +214,20 @@ msgstr "Impossibile abilitare la modalità nonblocking per il canale gio: %s" + 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" ++msgstr "" ++"Errore nell'aprire la connessione al session manager: '%s', la notifica può " ++"riapparire al prossimo login" + + #: ../src/applet/applet.c:1635 + 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" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Applet che notifica all'utente il rilevamento di un nuovo problema da parte " ++"di ABRT\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -222,11 +248,15 @@ msgstr "Notifica abbreviata silenziosa" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "Il file coredump è necessario per la generazione degli stack trace. Questa operazione richiederà tempo e spazio. ABRT fornisce un servizio in grado di generare uno stack trace da coredump, e a tal proposito sarà necessario caricare coredump per il suddetto servizio. Con questa opzione disabilitata, ABRT caricherà coredump senza richiederlo all'utente." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"Il file coredump è necessario per la generazione degli stack trace. Questa " ++"operazione richiederà tempo e spazio. ABRT fornisce un servizio in grado di " ++"generare uno stack trace da coredump, e a tal proposito sarà necessario " ++"caricare coredump per il suddetto servizio. Con questa opzione disabilitata, " ++"ABRT caricherà coredump senza richiederlo all'utente." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -234,28 +264,44 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT archivia i dati del problema nelle directory. Ogni qualvolta ABRT necessita di una directory modificabile, la directory desidetrata verrà spostata nella home directory. Se l'opzione è disabilitata, ABRT sposterà la directory senza richiederlo all'utente." ++msgstr "" ++"ABRT archivia i dati del problema nelle directory. Ogni qualvolta ABRT " ++"necessita di una directory modificabile, la directory desidetrata verrà " ++"spostata nella home directory. Se l'opzione è disabilitata, ABRT sposterà la " ++"directory senza richiederlo all'utente." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport è una descrizione breve e anonima del problema. ABRT utilizza uReport per un rilevamento rapido del duplicato. In una configurazione predefinita uReport viene inviato all'inizio del processo di notifica. Se l'opzione è abilitata, dopo il rilevamento del problema verranno inviati automaticamente gli uReport." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport è una descrizione breve e anonima del problema. ABRT utilizza " ++"uReport per un rilevamento rapido del duplicato. In una configurazione " ++"predefinita uReport viene inviato all'inizio del processo di notifica. Se " ++"l'opzione è abilitata, dopo il rilevamento del problema verranno inviati " ++"automaticamente gli uReport." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "Se questa opzione è abilitata il processo di notifica iniziato selezionando il pulsante Riporta nell'avviso di notifica, verrà interrotto dopo l'invio di uReport. È possibile utilizzare il browser predefinito per inviare una notifica completa." ++msgstr "" ++"Se questa opzione è abilitata il processo di notifica iniziato selezionando " ++"il pulsante Riporta nell'avviso di notifica, verrà interrotto dopo l'invio " ++"di uReport. È possibile utilizzare il browser predefinito per inviare una " ++"notifica completa." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "Se questa opzione è abilitata, ABRT non mostrerà mai le notifiche dei problemi riportati. Questa impostazione è effettiva solo se è stata abilitata la Notifica abbreviata." ++msgstr "" ++"Se questa opzione è abilitata, ABRT non mostrerà mai le notifiche dei " ++"problemi riportati. Questa impostazione è effettiva solo se è stata " ++"abilitata la Notifica abbreviata." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -265,7 +311,9 @@ msgstr "Chiedi prima di caricare coredump" + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "Se questa opzione è abilitata ABRT creerà sempre un ticket per il bug con un accesso limitato in presenza di dati sensibili." ++msgstr "" ++"Se questa opzione è abilitata ABRT creerà sempre un ticket per il bug con un " ++"accesso limitato in presenza di dati sensibili." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -280,7 +328,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "I problemi incompleti vengono rilevati durante lo spegnimento del computer o durante l'operazione di logout di un utente. Al fine di fornire notifiche utili, ABRT non permetterà l'invio di questi problemi." ++msgstr "" ++"I problemi incompleti vengono rilevati durante lo spegnimento del computer o " ++"durante l'operazione di logout di un utente. Al fine di fornire notifiche " ++"utili, ABRT non permetterà l'invio di questi problemi." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -312,7 +363,11 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nInterroga il database del pacchetto e salva il nome del componente e quello del pacchetto" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Interroga il database del pacchetto e salva il nome del componente e quello " ++"del pacchetto" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -375,7 +430,9 @@ msgstr "Impossibile accedere al problema per la modifica" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Modifica proprietario della directory fallita. Controllare i log del sistema per maggiori informazioni." ++msgstr "" ++"Modifica proprietario della directory fallita. Controllare i log del sistema " ++"per maggiori informazioni." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -394,14 +451,17 @@ msgstr "Nessuno spazio del problema rimasto" + #: ../src/dbus/abrt-dbus.c:627 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "Impossibile cancellare l'elemento '%s' dalla directory del problema '%s'" ++msgstr "" ++"Impossibile cancellare l'elemento '%s' dalla directory del problema '%s'" + + #: ../src/dbus/abrt-dbus.c:763 ../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 "Il nome '%s' è stato perso, verificare che altri servizi che utilizzano questo nome non siano in esecuzione.\n" ++msgstr "" ++"Il nome '%s' è stato perso, verificare che altri servizi che utilizzano " ++"questo nome non siano in esecuzione.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -415,11 +475,16 @@ msgstr "Questo programma deve essere eseguito come root." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "Dati del problema incompleti. Questo solitamente accade quando si riscontra un problema mentre il computer è in fase di spegnimento o l'utente esegue il logout. Al fine di fornire solo report accurati sui problemi, ABRT non permetterà di inviare questo problema. Se hai un po' di tempo e vuoi aiutare gli sviluppatori a correggere il malfunzionameto, contattali direttamente." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"Dati del problema incompleti. Questo solitamente accade quando si riscontra " ++"un problema mentre il computer è in fase di spegnimento o l'utente esegue il " ++"logout. Al fine di fornire solo report accurati sui problemi, ABRT non " ++"permetterà di inviare questo problema. Se hai un po' di tempo e vuoi aiutare " ++"gli sviluppatori a correggere il malfunzionameto, contattali direttamente." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -444,7 +509,9 @@ msgstr "Comunica direttamente all'utente" + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "Nessun thread di lavoro disponibile e buffer pieno. Esclusione archivio '%s' " ++msgstr "" ++"Nessun thread di lavoro disponibile e buffer pieno. Esclusione archivio '%s' " ++"" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -456,7 +523,16 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-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" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Controlla UPLOAD_DIRECTORY e decomprime gli archivi in ingresso in " ++"DumpLocation\n" ++"specificato con abrt.conf\n" ++"\n" ++"In assenza di UPLOAD_DIRECTORY verrà utilizzato il valore di\n" ++"WatchCrashdumpArchiveDir disponibile in abrt.conf" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -470,19 +546,74 @@ msgstr "Numero di thread di lavoro simultanei. L'impostazione predfinita è" + msgid "Maximal cache size in MiB. Default is " + msgstr "Dimensione cache massima in MiB. L'impostazione predefinita è" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr " Disabilita l'autenticazione" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Nome utente per il Red Hat Support" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++"Password per il Red Hat Support, se non specificata verrà richiesto di " ++"inserirne una" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "Tipo di certificato o percorsi per il certificato SSL uReport" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "Specificare --username per --password" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "Usare --username o --certificate" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "Usare --username o --anonymous" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "Usare --anonymous o --certificate" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "Numero non valido di argomenti" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valore opzione sconosciuto: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "Password:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "Impossibile continuare senza password\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "Auto reporting autenticato con HTTP" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "Auto reporting autenticato con client SSL" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "auto reporting anonimo" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -493,7 +624,16 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "Utilizzo: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory nella quale vengono estratti gli archivi validi caricati\n UPLOAD_DIR - Directory nella quale sono conservati gli archivi caricati\n FILENAME - Nome del file dell'archivio caricato\n" ++msgstr "" ++"Utilizzo: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory nella quale vengono estratti gli archivi " ++"validi caricati\n" ++" UPLOAD_DIR - Directory nella quale sono conservati gli archivi " ++"caricati\n" ++" FILENAME - Nome del file dell'archivio caricato\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -600,13 +740,16 @@ msgstr "Impossibile creare il file temporaneo '%s'" + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-msgstr "Impossibile scrivere su '%s'. Il problema '%s' non verrà rimosso dai problemi ignorati '%s'" ++msgstr "" ++"Impossibile scrivere su '%s'. Il problema '%s' non verrà rimosso dai " ++"problemi ignorati '%s'" + + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, 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'" ++msgstr "" ++"Impossibile rinominare '%s' in '%s'. Fallita rimozione del problema '%s'" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" +@@ -614,11 +757,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [opzioni] -d DIR\n\nAnalizza C/C++ backtrace, genera gli hash di duplicazione, classifica i messaggi di backtrace, ed identifica le funzioni di crash nella directory del problema DIR" ++msgstr "" ++"& [opzioni] -d DIR\n" ++"\n" ++"Analizza C/C++ backtrace, genera gli hash di duplicazione, classifica i " ++"messaggi di backtrace, ed identifica le funzioni di crash nella directory " ++"del problema DIR" + ++#. + #. * 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" +@@ -633,7 +783,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nCalcola e salva UUID di coredump nella directory del problema DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcola e salva UUID di coredump nella directory del problema DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -659,26 +812,37 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\nCalcola e salva UUID e DUPHASH per la directory DIR con problemi oops" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcola e salva UUID e DUPHASH per la directory DIR con problemi oops" + + #: ../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\nCalcola e salva UUID e DUPHASH per la directory DIR con problemi xorg" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcola e salva UUID e DUPHASH per la directory DIR con problemi xorg" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" +-msgstr "Il modulo '%s' è stato caricato - non verrà eseguita la notifica di questo crash" ++msgstr "" ++"Il modulo '%s' è stato caricato - non verrà eseguita la notifica di questo " ++"crash" + + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nCalcola e salva UUID e DUPHASH dei crash dump di python" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcola e salva UUID e DUPHASH dei crash dump di python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -693,10 +857,10 @@ msgid "Extracting the oops text from core" + msgstr "Estrazione testo oops dal core" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "Impossibile processare {0}:\n" + "{1}" +-msgstr "Impossibile processare {0}:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -710,14 +874,20 @@ msgstr "Estratto con successo il testo oops" + 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" ++msgstr "" ++"Il log del kernel indica che sono stati rilevati errori hardware.\n" ++"Questo molto probabilmente non è un errore software.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [opzioni] -d DIR\n\nAnalizza coredump nella directory del problema DIR, genera e salva i messaggi di backtrace" ++msgstr "" ++"& [opzioni] -d DIR\n" ++"\n" ++"Analizza coredump nella directory del problema DIR, genera e salva i " ++"messaggi di backtrace" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -729,6 +899,7 @@ 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" +@@ -739,7 +910,10 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\nCreate il backtrace coredump-level dal core dump e dai binari corrispondenti" ++msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"Create il backtrace coredump-level dal core dump e dai binari corrispondenti" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -767,7 +941,8 @@ msgstr "Uscita su comando utente" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -777,13 +952,35 @@ msgid "" + " -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" ++" --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" +-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" ++msgstr "" ++"Utilizzo: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Installa le informazioni di debug per tutti gli id di compilazione presenti " ++"in BUILD_IDS_FILE\n" ++"per il CACHEDIR, utilizzando TMPDIR come area di staging temporanea.\n" ++"I 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}" +@@ -791,7 +988,8 @@ msgstr "Impossibile aprire {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Riferimenti Coredump {0} file debuginfo, {1} di loro non è stato installato" ++msgstr "" ++"Riferimenti Coredump {0} file debuginfo, {1} di loro non è stato installato" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -814,21 +1012,32 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Sicuri di inviare il core dump? (Può contenere dati sensibili). Se si risponde 'No', uno stack trace sarà generato localmente. (Può scaricare una grande quantità di dati)." ++msgstr "" ++"Sicuri di inviare il core dump? (Può contenere dati sensibili). Se si " ++"risponde 'No', uno stack trace sarà generato localmente. (Può scaricare una " ++"grande quantità di dati)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "Si vuole generare uno stack trace locale? (potrebbe scaricare una grande quantità di dati ma non si può fare un report senza uno stack trace)" ++msgstr "" ++"Si vuole generare uno stack trace locale? (potrebbe scaricare una grande " ++"quantità di dati ma non si può fare un report senza uno stack trace)" + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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\nCancella le dir dei problemi (-d) o file (-f) in DIR fino a quando non sono più piccoli di SIZE.\nI FILE vengono preservati (mai cancellati)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Cancella le dir dei problemi (-d) o file (-f) in DIR fino a quando non sono " ++"più piccoli di SIZE.\n" ++"I FILE vengono preservati (mai cancellati)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -859,7 +1068,9 @@ msgstr "Utilizzo: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "Impossibile ottenere la directory di lavoro corrente poichè probebilmente è stata rimossa" ++msgstr "" ++"Impossibile ottenere la directory di lavoro corrente poichè probebilmente è " ++"stata rimossa" + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +@@ -970,7 +1181,9 @@ msgstr "Salto a un indirizzo non valido" + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "Accesso oltre la fine di un file mappato, indirizzo non valido, accesso non-allineato, ecc" ++msgstr "" ++"Accesso oltre la fine di un file mappato, indirizzo non valido, accesso non-" ++"allineato, ecc" + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +@@ -997,7 +1210,11 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nVerifica il file log FILE, esegue PROG quando questo aumenta di dimensione o viene rimpiazzato" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Verifica il file log FILE, esegue PROG quando questo aumenta di dimensione o " ++"viene rimpiazzato" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1007,20 +1224,29 @@ msgstr "Non eseguire PROG se non sono stati trovati STR" + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-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." ++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:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-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." ++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: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." ++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:153 + #, c-format +@@ -1032,7 +1258,10 @@ 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)" ++msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE]⏎\n" ++"⏎\n" ++"Estrae errori da FILE (o dall'input standard)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1040,6 +1269,7 @@ 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: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" +@@ -1082,7 +1312,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nEstrae il crash di Xorg da FILE (o da standard input)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Estrae il crash di Xorg da FILE (o da standard input)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1096,10 +1329,13 @@ msgstr "Crea una nuova directory del problema in DIR per ogni crash rilevato" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Impossibile usare il Retrace server poichè il crash è troppo grande. Provare il retrace locale." ++msgstr "" ++"Impossibile usare il Retrace server poichè il crash è troppo grande. Provare " ++"il retrace locale." + + #. 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 +@@ -1122,10 +1358,10 @@ msgstr "Invio intestazione HTTP di lunghezza %d fallito: Errore NSS %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Risposta HTTP dal server inattesa: %d\n" + "%s" +-msgstr "Risposta HTTP dal server inattesa: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1134,14 +1370,18 @@ msgstr "Risposta HTTP dal server inattesa: %d\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 "Risposta del server non valida: il corpo del messaggio HTTP risulta mancante." ++msgstr "" ++"Risposta del server non valida: il corpo del messaggio HTTP risulta mancante." ++"" + + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "Il server Retrace non è in grado di processare il pacchetto '%s.%s'.\nIl pacchetto fa parte del repository '%s' ufficiale?" ++msgstr "" ++"Il server Retrace non è in grado di processare il pacchetto '%s.%s'.\n" ++"Il pacchetto fa parte del repository '%s' ufficiale?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1166,7 +1406,9 @@ msgstr "'%s' deve essere un file regolare per poter usare il retrace server." + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "La dimensione del crash è di %lld byte, ma il Retrace server accetta solo crash uguali o minori a %lld byte." ++msgstr "" ++"La dimensione del crash è di %lld byte, ma il Retrace server accetta solo " ++"crash uguali o minori a %lld byte." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1194,7 +1436,9 @@ msgstr "Preparazione di un archivio da caricare in corso" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "La dimensione dell'archivio è di %lld byte, ma il Retrace server accetta solo archivi uguali o minori a %lld byte." ++msgstr "" ++"La dimensione dell'archivio è di %lld byte, ma il Retrace server accetta " ++"solo archivi uguali o minori a %lld byte." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1237,13 +1481,17 @@ msgstr "Caricamento effettuato" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "La directory del problema è corrotta e non può essere processata dal Retrace server." ++msgstr "" ++"La directory del problema è corrotta e non può essere processata dal Retrace " ++"server." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "L'archivio contiene file maliziosi (come i symlink) e non può essere processato." ++msgstr "" ++"L'archivio contiene file maliziosi (come i symlink) e non può essere " ++"processato." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1259,10 +1507,10 @@ msgstr "Istanza di Retrace avviata" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Id istanza: %s\nPassword istanza: %s\n" ++msgstr "Id istanza: %s\n" ++"Password istanza: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1270,10 +1518,10 @@ msgstr "Risposta del server non valida: X-Task-Status mancante." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Stato istanza: %s\n" + "%s\n" +-msgstr "Stato istanza: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1286,7 +1534,9 @@ msgstr "Invio intestazione HTTP di lunghezza %d fallita: Errore NSS %d." + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Retrace fallito. Riprovare più tardi e se il problema persiste riportare il problema." ++msgstr "" ++"Retrace fallito. Riprovare più tardi e se il problema persiste riportare il " ++"problema." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1300,7 +1550,9 @@ msgstr "abilita la connessione non sicura per il Retrace server" + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "non controllare se il server retrace è in grado di elaborare il pacchetto fornito prima di procedere al caricamento dell'archivio" ++msgstr "" ++"non controllare se il server retrace è in grado di elaborare il pacchetto " ++"fornito prima di procedere al caricamento dell'archivio" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1350,7 +1602,9 @@ msgstr "password della istanza sul server" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [options]\nOperazioni: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client [options]\n" ++"Operazioni: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1382,14 +1636,18 @@ msgstr "Debugger GNU locale" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Scarica i pacchetti debuginfo e genera il backtrace localmente usando GDB" ++msgstr "" ++"Scarica i pacchetti debuginfo e genera il backtrace localmente usando GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "È necessario scaricare i pacchetti debuginfo, questa operazione potrebbe richiedere molto tempo e utilizzare tutto lo spazio su disco. Tuttavia, diversamente da RetraceServer, non invia coredump su macchine remote." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"È necessario scaricare i pacchetti debuginfo, questa operazione potrebbe " ++"richiedere molto tempo e utilizzare tutto lo spazio su disco. Tuttavia, " ++"diversamente da RetraceServer, non invia coredump su macchine remote." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1397,12 +1655,18 @@ msgstr "Invia il core dump sul retrace server remoto per l'analisi" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Carica il coredump sul server, generando un backtrace e successivamente ritornandolo. Pro: non c'è bisogno di scaricare le informazioni di debug. Il database delle informazioni di debug sul retrace server è più completo. Il retrace server può generare backtrace migliori. Contro: il coredump da caricare contiene tutti i dati del programma, incluso dati privati quando presenti." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Carica il coredump sul server, generando un backtrace e successivamente " ++"ritornandolo. Pro: non c'è bisogno di scaricare le informazioni di debug. Il " ++"database delle informazioni di debug sul retrace server è più completo. Il " ++"retrace server può generare backtrace migliori. Contro: il coredump da " ++"caricare contiene tutti i dati del programma, incluso dati privati quando " ++"presenti." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1427,10 +1691,13 @@ msgstr "Usare, o meno, una connessione non sicura" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Scrivere \"insecure\" per abilitare una connessione non sicura <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Scrivere \"insecure\" per abilitare una connessione non sicura <a href=" ++"\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1444,7 +1711,10 @@ msgstr "Salva le righe rilevanti del file ~/.xsession-errors " + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Esegue la scansione del file ~/.xsession-errors e salva le righe che contengono il nome dell'eseguibile. Il risultato sarà salvato come elemento di 'xsession_errors'." ++msgstr "" ++"Esegue la scansione del file ~/.xsession-errors e salva le righe che " ++"contengono il nome dell'eseguibile. Il risultato sarà salvato come elemento " ++"di 'xsession_errors'." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1472,12 +1742,15 @@ msgstr "Certificato autorità emittente invalido: '%s'." + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "Il certificato è stato firmato da una autorità emittente non fidata: '%s'." ++msgstr "" ++"Il certificato è stato firmato da una autorità emittente non fidata: '%s'." + + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "Il nome del soggetto del certificato '%s' non corrisponde al nome host di destinazione '%s'." ++msgstr "" ++"Il nome del soggetto del certificato '%s' non corrisponde al nome host di " ++"destinazione '%s'." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1491,7 +1764,8 @@ msgstr "L'autorità emittente del certificato non è stata riconosciuta: '%s'." + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "Ricevuto un certificato errato. Soggetto '%s', autorità emittente '%s'." ++msgstr "" ++"Ricevuto un certificato errato. Soggetto '%s', autorità emittente '%s'." + + #: ../src/plugins/https-utils.c:149 + #, c-format +@@ -1602,7 +1876,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nRicerca aggiornamenti disponibili su un server bodhi" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Ricerca aggiornamenti disponibili su un server bodhi" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1615,21 +1892,29 @@ msgstr "Non sono stati trovati aggiornamenti per questo pacchetto" + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" +-msgstr "La versione locale del pacchetto è più recente rispetto a quella disponibile negli aggiornamenti" ++msgstr "" ++"La versione locale del pacchetto è più recente rispetto a quella disponibile " ++"negli aggiornamenti" + + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Esiste un aggiornamento che potrebbe risolvere il tuo problema. Si può installare eseguendo: %s. Si vuole procedere con il bug report?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Esiste un aggiornamento che potrebbe risolvere il tuo problema. Si può " ++"installare eseguendo: %s. Si vuole procedere con il bug report?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...⏎\n⏎\nControlla i file per messaggi di errore divisi. Si possono stampare e/o cancellare" ++msgstr "" ++"& [-v] [-od] FILE...⏎\n" ++"⏎\n" ++"Controlla i file per messaggi di errore divisi. Si possono stampare e/o " ++"cancellare" + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1680,7 +1965,9 @@ msgstr "Consultare 'abrt-cli COMMAND --help' per maggiori informazioni" + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +-msgstr "%sEsegui 'abrt-cli report %s' per creare un caso nel Portale clienti di Red Hat\n" ++msgstr "" ++"%sEsegui 'abrt-cli report %s' per creare un caso nel Portale clienti di Red " ++"Hat\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1706,9 +1993,12 @@ msgstr "Elenca solo i problemi più vecchi della data specificata" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "La funzione di auto-reporting è disabilitata. Abilitarla con il comando\n'abrt-auto-reporting enabled' come utente con privilegi root\n" ++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:235 + msgid "& info [options] DIR..." +@@ -1738,7 +2028,9 @@ msgstr "Stampa solo i problemi più recenti di un timestamp specificato" + #: ../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 ha trovato %u problema(i). Per maggiori informazioni usare: abrt-cli list%s\n" ++msgstr "" ++"ABRT ha trovato %u problema(i). Per maggiori informazioni usare: abrt-cli " ++"list%s\n" + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1783,7 +2075,9 @@ msgstr "Seleziona solo i problemi rilevati dopo il timestamp" + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Invia il core dump al retrace server remoto per l'analisi oppure effettua l'analisi localmente se quella remota fallisce" ++msgstr "" ++"Invia il core dump al retrace server remoto per l'analisi oppure effettua " ++"l'analisi localmente se quella remota fallisce" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1791,10 +2085,18 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Carica il coredump sul server, generando un backtrace e successivamente ritornandolo. Se l'utente non vuole inviare il suo coredump all'esterno, viene effettuata una analisi locale. La analisi locale è usata anche quando quella remota fallisce. Pro: non c'è bisogno di scaricare le informazioni di debug. Il database delle informazioni di debug sul retrace server è più completo. Il retrace server può generare backtrace migliori. Contro: il coredump da caricare contiene tutti i dati del programma, incluso dati privati quando presenti." ++msgstr "" ++"Carica il coredump sul server, generando un backtrace e successivamente " ++"ritornandolo. Se l'utente non vuole inviare il suo coredump all'esterno, " ++"viene effettuata una analisi locale. La analisi locale è usata anche quando " ++"quella remota fallisce. Pro: non c'è bisogno di scaricare le informazioni di " ++"debug. Il database delle informazioni di debug sul retrace server è più " ++"completo. Il retrace server può generare backtrace migliori. Contro: il " ++"coredump da caricare contiene tutti i dati del programma, incluso dati " ++"privati quando presenti." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1803,13 +2105,17 @@ msgstr "Analizza VM core" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Installa i pacchetti debuginfo del kernel, genera i messaggi oops ed i log del kernel" ++msgstr "" ++"Installa i pacchetti debuginfo del kernel, genera i messaggi oops ed i log " ++"del kernel" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Necessita di una installazione dei pacchetti debuginfo del kernel, questo processo potrebbe richiedere molto tempo e spazio del disco." ++msgstr "" ++"Necessita di una installazione dei pacchetti debuginfo del kernel, questo " ++"processo potrebbe richiedere molto tempo e spazio del disco." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1823,7 +2129,9 @@ msgstr "Salva configurazione dalla directory GConf dell'applicazione" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Esegue gconftool-2 --recursive-list /apps/executable e lo salva come elemento 'gconf_subtree'." ++msgstr "" ++"Esegue gconftool-2 --recursive-list /apps/executable e lo salva come " ++"elemento 'gconf_subtree'." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1837,7 +2145,9 @@ msgstr "Salva /etc/vimrc e /etc/gvimrc" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Controlla la presenza dei file vimrc e gvimrc in /etc archiviandoli rispettivamente come system_vimrc e system_gvimrc." ++msgstr "" ++"Controlla la presenza dei file vimrc e gvimrc in /etc archiviandoli " ++"rispettivamente come system_vimrc e system_gvimrc." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1849,9 +2159,11 @@ msgstr "Salva .vimrc e .gvimrc dalla tua directory home" + + #: ../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 "Controlla la presenza .vimrc e .gvimrc nella directory home archiviandoli come user_vimrc e user_gvimrc." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Controlla la presenza .vimrc e .gvimrc nella directory home archiviandoli " ++"come user_vimrc e user_gvimrc." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/ja.po b/po/ja.po +index 926478e..da482e4 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -12,19 +12,22 @@ + # noriko , 2014 + # noriko , 2010,2012-2013 + # carrotsoft , 2011-2012 ++# Noriko Mizumoto , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-16 09:16+0000\n" +-"Last-Translator: noriko \n" +-"Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-abrt/language/ja/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-08 11:11-0500\n" ++"Last-Translator: Noriko Mizumoto \n" ++"Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ja/)\n" + "Language: ja\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -97,10 +100,16 @@ msgstr "通知を閉じることができません: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "特定の問題の通知を無音にします。この問題では通知ポップアップが表示されませんが、ABRT はこれを検出し、ABRT GUI からこれを報告することができます。\n\n続けますか?" ++msgstr "" ++"特定の問題の通知を無音にします。この問題では通知ポップアップが表示されませんが、ABRT はこれを検出し、ABRT GUI " ++"からこれを報告することができます。\n" ++"\n" ++"続けますか?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -113,7 +122,10 @@ msgstr "ABRT によって検出された問題をユーザーに通知するた + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "Casey Jones \nHajime Taira \nNoriko Mizumoto " ++msgstr "" ++"Casey Jones \n" ++"Hajime Taira \n" ++"Noriko Mizumoto " + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -136,6 +148,7 @@ msgid "Ignore forever" + msgstr "永久に無視" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "開く" +@@ -150,6 +163,7 @@ msgstr "既知の問題が発生しました" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "報告する" +@@ -199,7 +213,9 @@ msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\n新しい問題が ABRT で検出されるとユーザーに通知するアプレットです\n" ++msgstr "& [-v] [DIR]...\n" ++"\n" ++"新しい問題が ABRT で検出されるとユーザーに通知するアプレットです\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -220,11 +236,13 @@ msgstr "サイレントの短縮形レポート" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "coredump ファイルは、時間がかかりスペースを消費する操作であるスタックトレースの生成に必要です。ABRT は、coredump からスタックトレースを生成するサービスを提供しますが、coredump をこのサービスにアップロードする必要があります。このオプションを無効にすると、ABRT は尋ねることなく coredump をアップロードします。" ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"coredump ファイルは、時間がかかりスペースを消費する操作であるスタックトレースの生成に必要です。ABRT は、coredump " ++"からスタックトレースを生成するサービスを提供しますが、coredump " ++"をこのサービスにアップロードする必要があります。このオプションを無効にすると、ABRT は尋ねることなく coredump をアップロードします。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -232,22 +250,30 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT は、問題のデータをディレクトリに保存します。ABRT が書き込み可能なディレクトリを必要とする時は常に、このディレクトリはシステムからユーザーのホームディレクトリに移動されます。このオプションを無効にすると、ABRT は尋ねることなく問題のディレクトリを移動します。" ++msgstr "" ++"ABRT は、問題のデータをディレクトリに保存します。ABRT " ++"が書き込み可能なディレクトリを必要とする時は常に、このディレクトリはシステムからユーザーのホームディレクトリに移動されます。このオプションを無効にすると、ABRT " ++"は尋ねることなく問題のディレクトリを移動します。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport は、問題を説明したもので、簡潔で完全に匿名のものです。ABRT は uReport を使用して、グローバルな重複を素早く検出します。デフォルト設定では、uReport はレポーティングプロセスの最初に送信されます。このオプションを有効にすると、問題の検出後に直ちに uReport が自動的に送信されます。" ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport は、問題を説明したもので、簡潔で完全に匿名のものです。ABRT は uReport " ++"を使用して、グローバルな重複を素早く検出します。デフォルト設定では、uReport " ++"はレポーティングプロセスの最初に送信されます。このオプションを有効にすると、問題の検出後に直ちに uReport が自動的に送信されます。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "このオプションを有効にすると、問題通知のポップアップ内のレポートボタンをクリックして開始されたレポーティングプロセスは、uReport の送信後に中断されます。デフォルトの問題ブラウザを使った完全なレポート作成は、常に可能です。" ++msgstr "" ++"このオプションを有効にすると、問題通知のポップアップ内のレポートボタンをクリックして開始されたレポーティングプロセスは、uReport " ++"の送信後に中断されます。デフォルトの問題ブラウザを使った完全なレポート作成は、常に可能です。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" +@@ -278,7 +304,9 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "コンピューターのシャットダウン中またはユーザーのログアウト中に完了していない問題が検出されました。価値のある問題レポートを提出するため、ABRT はユーザーによるこれらの問題の提出を許可しません。" ++msgstr "" ++"コンピューターのシャットダウン中またはユーザーのログアウト中に完了していない問題が検出されました。価値のある問題レポートを提出するため、ABRT " ++"はユーザーによるこれらの問題の提出を許可しません。" + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -310,7 +338,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nパッケージのデータベースに問い合わせを行い、 パッケージとコンポーネント名を保存します" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"パッケージのデータベースに問い合わせを行い、 パッケージとコンポーネント名を保存します" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -413,11 +444,13 @@ msgstr "このプログラムは root で実行しなければなりません" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 によりこの問題の送信は許可されません。この問題を解決するため時間をとって開発者にご協力頂ける場合は、開発者に直接ご連絡ください。" ++"detected while computer is shutting down or user is logging out. In order to " ++"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 " ++"によりこの問題の送信は許可されません。この問題を解決するため時間をとって開発者にご協力頂ける場合は、開発者に直接ご連絡ください。" + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -454,7 +487,15 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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 オプションの値を使用します。" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"UPLOAD_DIRECTORY をウォッチし、abrt.conf で指定された \n" ++"DumpLocation に格納されたアーカイブを展開します。\n" ++"\n" ++"UPLOAD_DIRECTORY が指定されていない場合、\n" ++"abrt.conf の WatchCrashdumpArchiveDir オプションの値を使用します。" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -468,19 +509,72 @@ msgstr "同時実行ワーカー数。規定値は次のとおりです。" + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB 単位の最大キャッシュ容量。規定値は次のとおりです。" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "認証をオフにする" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Red Hat サポートユーザー名" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "Red Hat Support パスワード、入力しないとあとで入力が求められます" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "uReport SSL 証明書パスまたは証明書タイプ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "--password には --username も指定してください" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "--username または --certificate のいずれかを使用します" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "--username または --anonymous のいずれかを使用します" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "--anonymous または --certificate のいずれかを使用します" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "引数の数が無効な数です" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "不明なオプション値です: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "パスワード:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "パスワードを入力しないと先に進めません\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "HTTP 認証の自動報告" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "SSL クライアント認証の自動報告" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "anonymous 自動報告" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -491,7 +585,14 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "使い方: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - 冗長表示にする\n -d - アップロード済みのアーカイブを削除する\n ABRT_SPOOL_DIR - アップロード済みの有効なアーカイブが解凍されるディレクトリ\n UPLOAD_DIR - アップロード済みアーカイブが保存されるディレクトリ\n FILENAME - アップロード済みアーカイブファイル名\n" ++msgstr "" ++"使い方: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - 冗長表示にする\n" ++" -d - アップロード済みのアーカイブを削除する\n" ++" ABRT_SPOOL_DIR - アップロード済みの有効なアーカイブが解凍されるディレクトリ\n" ++" UPLOAD_DIR - アップロード済みアーカイブが保存されるディレクトリ\n" ++" FILENAME - アップロード済みアーカイブファイル名\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -612,11 +713,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [オプション] -d DIR\n\nC/C++ バックトレースを分析し、重複ハッシュ、バックトレース\nレーティングを生成、DIR 問題ディレクトリ内のクラッシュ関数を\n識別します" ++msgstr "" ++"& [オプション] -d DIR\n" ++"\n" ++"C/C++ バックトレースを分析し、重複ハッシュ、バックトレース\n" ++"レーティングを生成、DIR 問題ディレクトリ内のクラッシュ関数を\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" +@@ -631,7 +739,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nDIR 問題ディレクトリ内のコアダンプの UUID を算出して保存\nします" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"DIR 問題ディレクトリ内のコアダンプの UUID を算出して保存\n" ++"します" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -657,14 +768,19 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-vs] -d DIR\n\noops 問題ディレクトリ DIR の UUID と DUPHASH を算出して\n保存します" ++msgstr "& [-vs] -d DIR\n" ++"\n" ++"oops 問題ディレクトリ DIR の UUID と DUPHASH を算出して\n" ++"保存します" + + #: ../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" ++"\n" ++"xorg 問題ディレクトリ DIR の UUID と DUPHASH を算出して保存します" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -676,7 +792,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\npython クラッシュダンプの UUID と DUPHASH を算出して保存\nします" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"python クラッシュダンプの UUID と DUPHASH を算出して保存\n" ++"します" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -691,10 +810,10 @@ msgid "Extracting the oops text from core" + msgstr "core からウップステキストを抽出します" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "{0} を処理できません:\n" + "{1}" +-msgstr "{0} を処理できません:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -708,14 +827,18 @@ msgstr "ウップステキストが正常に抽出されました" + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "カーネルログではハードウェア関連のエラーが検出されたことが示されているため、\nこれはおそらくソフトウェアに関する問題ではないでしょう。\n" ++msgstr "カーネルログではハードウェア関連のエラーが検出されたことが示されているため、\n" ++"これはおそらくソフトウェアに関する問題ではないでしょう。\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [オプション] -d DIR\n\nDIR 問題ディレクトリ内のコアダンプを分析し、バックトレースを\n生成して保存します" ++msgstr "& [オプション] -d DIR\n" ++"\n" ++"DIR 問題ディレクトリ内のコアダンプを分析し、バックトレースを\n" ++"生成して保存します" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -727,6 +850,7 @@ 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" +@@ -737,7 +861,9 @@ 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" ++"\n" ++"該当バイナリとコアダンプからコアダンプレベルのバックトレースを作成します" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -765,7 +891,8 @@ msgstr "ユーザーからのコマンドで終了しています" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -775,13 +902,32 @@ msgid "" + " -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" ++" --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" +-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" ++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_FILE に記載されている全 build-id の debuginfo を CACHEDIR に\n" ++"インストールします。TMPDIR を一時的なステージングエリアに使用します。\n" ++"CACHEDIR の大きさが 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}" +@@ -812,21 +958,30 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "コアダンプをアップロードしてもよいですか (これには機密情報が含まれている可能性があります) ?「いいえ」の場合にはスタックトレースがローカルに生成されます (これにより大量のデータがダウンロードされる可能性があります)。" ++msgstr "" ++"コアダンプをアップロードしてもよいですか (これには機密情報が含まれている可能性があります) " ++"?「いいえ」の場合にはスタックトレースがローカルに生成されます (これにより大量のデータがダウンロードされる可能性があります)。" + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"スタックトレースをローカルに生成しますか? " ++"(これにより大量のデータがダウンロードされる可能性がありますが、スタックトレースがなくては報告を続行することができません。)" + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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\nDIR のサイズが SIZE 未満になるまで DIR 内の問題ディレクトリ (-d) または問題ファイル (-f) を削除します。\nFILE については維持されます (削除しないようにします)。" ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"DIR のサイズが SIZE 未満になるまで DIR 内の問題ディレクトリ (-d) または問題ファイル (-f) を削除します。\n" ++"FILE については維持されます (削除しないようにします)。" + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -995,7 +1150,10 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nFILE ログファイルを監視し、ファイルサイズが増大した場合またはファイルが置換された場合には PROG を実行します" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"FILE ログファイルを監視し、ファイルサイズが増大した場合またはファイルが置換された場合には PROG を実行します" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1018,7 +1176,8 @@ msgstr "カーネル関連の問題が発生しましたが、お使いのハー + msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." +-msgstr "カーネル関連の問題が発生しましたが、カーネル自体が破損しています (フラグ:%s)。破損したレポートの診断はカーネルメンテナーでは行なえません。" ++msgstr "" ++"カーネル関連の問題が発生しましたが、カーネル自体が破損しています (フラグ:%s)。破損したレポートの診断はカーネルメンテナーでは行なえません。" + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1030,7 +1189,9 @@ 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" ++"\n" ++"FILE (または標準入力) から oops を抽出します" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1038,6 +1199,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "検出される oops ごと DIR 内に新規の問題ディレクトリを作成します" +@@ -1080,7 +1242,9 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nFILE (または標準入力) から Xorg クラッシュを抽出します" ++msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"FILE (または標準入力) から Xorg クラッシュを抽出します" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1098,6 +1262,7 @@ 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 +@@ -1120,10 +1285,10 @@ msgstr "長さ %d の HTTP ヘッダーの送信に失敗しました: NSS エ + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "サーバーからの予期しない HTTP 応答です: %d \n" + "%s" +-msgstr "サーバーからの予期しない HTTP 応答です: %d \n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1139,7 +1304,8 @@ msgstr "サーバーからの無効な応答です: HTTP メッセージの本 + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "リトレースサーバーでパッケージ「'%s.%s」の処理ができません。\nこのパッケージは正式な「%s」レポジトリの一部ですか?" ++msgstr "リトレースサーバーでパッケージ「'%s.%s」の処理ができません。\n" ++"このパッケージは正式な「%s」レポジトリの一部ですか?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1164,7 +1330,8 @@ msgstr "Retrace サーバーを使用するには '%s' が普通のファイル + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "クラッシュサイズは %lld バイトですが、リトレースサーバーで受け取れるクラッシュサイズは %lld バイトか、それ以下のサイズになります。" ++msgstr "" ++"クラッシュサイズは %lld バイトですが、リトレースサーバーで受け取れるクラッシュサイズは %lld バイトか、それ以下のサイズになります。" + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1192,7 +1359,8 @@ msgstr "アップロードするアーカイブを準備中" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "アーカイブのサイズは %lld バイトですが、リトレースサーバーで受け取れるクラッシュサイズは %lld バイトか、それ以下のサイズになります。" ++msgstr "" ++"アーカイブのサイズは %lld バイトですが、リトレースサーバーで受け取れるクラッシュサイズは %lld バイトか、それ以下のサイズになります。" + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1257,10 +1425,10 @@ msgstr "リトレースジョブが開始されました" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "タスク Id: %s\nタスクパスワード: %s\n" ++msgstr "タスク Id: %s\n" ++"タスクパスワード: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1268,10 +1436,10 @@ msgstr "サーバーからの無効な応答です: X-Task-Status がありま + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "タスクの状態: %s\n" + "%s\n" +-msgstr "タスクの状態: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1348,7 +1516,9 @@ msgstr "サーバー上でのユーザータスクのパスワード" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [オプション]\n処理: create/status/backtrace/log/batch/exploitable" ++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 +@@ -1385,9 +1555,11 @@ msgstr "debuginfo パッケージをダウンロードし、GDB を使用して + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "debuginfo パッケージをダウンロードする必要があります。これにはかなりの時間とディスク領域を要する場合があります。ただし、リトレースサーバーとは異なり、コアダンプをリモートマシンに送信することはありません。" ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"debuginfo " ++"パッケージをダウンロードする必要があります。これにはかなりの時間とディスク領域を要する場合があります。ただし、リトレースサーバーとは異なり、コアダンプをリモートマシンに送信することはありません。" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1395,12 +1567,15 @@ msgstr "コアダンプを分析のためリモートのリトレースサーバ + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "コアダンプをサーバーにアップロードします。これによりバックトレースが生成され返されます。debuginfo をダウンロードする必要がない点が利点となります。リトレースサーバーの debaguinfo データベースの方がより完全なデータベースとなるため、リトレースサーバーの方がより適切なバックトレースを生成することができます。一方、アップロードするコアダンプにはクラッシュしたプログラムの全データが含まれるため、プライベートデータがある場合には、そのデータも含まれることになります。" ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"コアダンプをサーバーにアップロードします。これによりバックトレースが生成され返されます。debuginfo " ++"をダウンロードする必要がない点が利点となります。リトレースサーバーの debaguinfo " ++"データベースの方がより完全なデータベースとなるため、リトレースサーバーの方がより適切なバックトレースを生成することができます。一方、アップロードするコアダンプにはクラッシュしたプログラムの全データが含まれるため、プライベートデータがある場合には、そのデータも含まれることになります。" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1425,10 +1600,12 @@ msgstr "安全ではない接続を使用する、または使用しない" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "安全ではない接続を許可する場合は「insecure」と記述します <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(警告)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"安全ではない接続を許可する場合は「insecure」と記述します <a href=\"https://fedorahosted.org/abrt/" ++"wiki/AbrtRetraceServerInsecureConnection\" >(警告)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1442,7 +1619,9 @@ msgstr "~/.xsession-errors ファイルから関連した行を保存する" + 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." +@@ -1600,7 +1779,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nbodhi サーバー上で更新を検索します" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"bodhi サーバー上で更新を検索します" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1618,8 +1800,8 @@ msgstr "このパッケージは、利用可能な更新よりローカルバー + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "問題を修正できる可能性のある更新があります。 %s を実行すると更新をインストールすることができます。バグの報告を続行しますか?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1627,7 +1809,10 @@ 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" ++"\n" ++"ファイルをスキャンして分離した oops メッセージを探します。メッセージの表示、削除が可能です。" + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1704,9 +1889,12 @@ msgstr "指定したタイムスタンプよりも古い問題のみを表示し + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "自動報告機能は無効になっています。root の特権を持つユーザーで\n'abrt-auto-reporting enabled' を発行し、この機能を有効にすることを検討してみてください\n" ++msgstr "" ++"自動報告機能は無効になっています。root の特権を持つユーザーで\n" ++"'abrt-auto-reporting enabled' を発行し、この機能を有効にすることを検討してみてください\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1789,10 +1977,14 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "コアダンプをサーバーにアップロードします。これによりバックトレースが生成され返されます。コアダンプをどこにもアップロードしたくない場合、 ローカルの分析が行われます。リモートの分析に失敗した場合にもローカルの分析が実行されます。debuginfo をダウンロードする必要がない点が利点となります。リトレースサーバーの debaguinfo データベースの方がより完全なデータベースとなるため、リトレースサーバーの方がより適切なバックトレースを生成することができます。一方、アップロードするコアダンプにはクラッシュしたプログラムの全データが含まれるため、プライベートデータがある場合には、そのデータも含まれることになります。" ++msgstr "" ++"コアダンプをサーバーにアップロードします。これによりバックトレースが生成され返されます。コアダンプをどこにもアップロードしたくない場合、 " ++"ローカルの分析が行われます。リモートの分析に失敗した場合にもローカルの分析が実行されます。debuginfo " ++"をダウンロードする必要がない点が利点となります。リトレースサーバーの debaguinfo " ++"データベースの方がより完全なデータベースとなるため、リトレースサーバーの方がより適切なバックトレースを生成することができます。一方、アップロードするコアダンプにはクラッシュしたプログラムの全データが含まれるため、プライベートデータがある場合には、そのデータも含まれることになります。" + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1807,7 +1999,8 @@ msgstr "カーネル debuginfo パッケージをインストールしてカー + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "カーネル debuginfo パッケージをインストールする必要があります。インストールにはかなりの時間とディスク領域を要する場合があります。" ++msgstr "" ++"カーネル debuginfo パッケージをインストールする必要があります。インストールにはかなりの時間とディスク領域を要する場合があります。" + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1821,7 +2014,9 @@ msgstr "アプリケーションの GConf ディレクトリから設定を保 + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "gconftool-2 --recursive-list /apps/executable を実行して、「gconf_subtree」エレメントとして保存します" ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable " ++"を実行して、「gconf_subtree」エレメントとして保存します" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1835,7 +2030,9 @@ 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" +@@ -1847,9 +2044,10 @@ msgstr "ホームディレクトリの .vimrc と .gvimrc を保存します" + + #: ../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 "ホームディレクトリ内に .vimrc と .gvimrc があるか確認し、それぞれ user_vimrc と user_gvimrc として保存します。" ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"ホームディレクトリ内に .vimrc と .gvimrc があるか確認し、それぞれ user_vimrc と user_gvimrc として保存します。" + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/ka.po b/po/ka.po +index f00d6ff..c650c41 100644 +--- a/po/ka.po ++++ b/po/ka.po +@@ -6,17 +6,19 @@ + # George Machitidze , 2012 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Georgian (http://www.transifex.com/projects/p/fedora-abrt/language/ka/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Georgian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ka/)\n" + "Language: ka\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -89,14 +91,17 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +-msgstr "" ++msgstr "ყურადღება" + + #: ../src/applet/applet.c:834 + msgid "" +@@ -128,6 +133,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -142,6 +148,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "ანგარიში" +@@ -212,10 +219,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +235,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -405,10 +411,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -460,19 +466,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -606,9 +665,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -683,8 +744,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -719,6 +779,7 @@ 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" +@@ -757,7 +818,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +829,8 @@ msgid "" + " -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" ++" --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" +@@ -816,7 +879,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1030,6 +1094,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1090,6 +1155,7 @@ 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 +@@ -1112,8 +1178,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1249,8 +1314,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1260,8 +1324,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1377,8 +1440,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1387,11 +1450,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1417,9 +1480,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1610,8 +1673,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1696,7 +1759,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1781,8 +1845,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1839,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/kk.po b/po/kk.po +index 2ed069d..67f118d 100644 +--- a/po/kk.po ++++ b/po/kk.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Kazakh (http://www.transifex.com/projects/p/fedora-abrt/language/kk/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Kazakh (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/kk/)\n" + "Language: kk\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/km.po b/po/km.po +index 2e204a1..f655e17 100644 +--- a/po/km.po ++++ b/po/km.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Khmer (http://www.transifex.com/projects/p/fedora-abrt/language/km/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Khmer (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/km/)\n" + "Language: km\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/kn.po b/po/kn.po +index 6b1cc01..52219bb 100644 +--- a/po/kn.po ++++ b/po/kn.po +@@ -8,19 +8,22 @@ + # Shankar Prasad , 2014 + # shankar , 2013 + # shanky , 2013-2014 ++# Shankar Prasad , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-15 08:15+0000\n" +-"Last-Translator: shanky \n" +-"Language-Team: Kannada (http://www.transifex.com/projects/p/fedora-abrt/language/kn/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-06 02:10-0500\n" ++"Last-Translator: Shankar Prasad \n" ++"Language-Team: Kannada (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/kn/)\n" + "Language: kn\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -35,15 +38,21 @@ 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" +-msgstr "ಕಳುಹಿಸಲಾಗುವ ವರದಿಯು ಯಾವುದೆ ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಯನ್ನು ಹೊಂದಿಲ್ಲ. ಆದ್ದರಿಂದ, ಮುಂದಿನ ಬಾರಿ ನಿಮಗೆ ಯಾವುದೆ ತೊಂದರೆ ನೀಡುವ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ ಮತ್ತು ನಿಮ್ಮಿಂದ ಯಾವುದೆ ಕ್ರಮದ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ.\n" ++msgstr "" ++"ಕಳುಹಿಸಲಾಗುವ ವರದಿಯು ಯಾವುದೆ ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಯನ್ನು ಹೊಂದಿಲ್ಲ. ಆದ್ದರಿಂದ, " ++"ಮುಂದಿನ ಬಾರಿ ನಿಮಗೆ ಯಾವುದೆ ತೊಂದರೆ ನೀಡುವ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ ಮತ್ತು ನಿಮ್ಮಿಂದ ಯಾವುದೆ " ++"ಕ್ರಮದ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ.\n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +-msgstr " ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸಲ್ಲಿಸಲಾದ ಕುಸಿತದ ವರದಿಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ನೀವು ಬಯಸುವಿರಾ?" ++msgstr "" ++" ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸಲ್ಲಿಸಲಾದ ಕುಸಿತದ ವರದಿಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ನೀವು ಬಯಸುವಿರಾ?" + + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸಲ್ಲಿಸಲಾದ ಅನಾಮಧೇಯ ಕುಸಿತದ ವರದಿಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ನೀವು ಬಯಸುವಿರಾ?" ++msgstr "" ++"ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸಲ್ಲಿಸಲಾದ ಅನಾಮಧೇಯ ಕುಸಿತದ ವರದಿಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲು ನೀವು " ++"ಬಯಸುವಿರಾ?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -93,10 +102,17 @@ msgstr "ಸೂಚನೆಯನ್ನು ಮುಚ್ಚಲು ಸಾಧ್ಯವ + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "ನೀವು ಒಂದು ನಿರ್ದಿಷ್ಟ ತೊಂದರೆಯ ಸೂಚನೆಗಳನ್ನು ಮೂಕಗೊಳಿಸಲಿದ್ದೀರಿ. ಈ ತೊಂದರೆಗಾಗಿ ನಿಮಗೆ ಮುಂದೆ ಯಾವುದೆ ಸೂಚನೆಯು ಕಾಣಿಸಿಕೊಳ್ಳುವುದಿಲ್ಲ, ಹಾಗಿದ್ದರೂ ಸಹ ABRTಯು ಅದನ್ನು ಪತ್ತೆ ಮಾಡುತ್ತದೆ ಮತ್ತು ಅದನ್ನು ನೀವು ABRT GUI ಇಂದ ವರದಿ ಮಾಡಲು ಸಾಧ್ಯವಿರುತ್ತದೆ.\n\nನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುವಿರಾ?" ++msgstr "" ++"ನೀವು ಒಂದು ನಿರ್ದಿಷ್ಟ ತೊಂದರೆಯ ಸೂಚನೆಗಳನ್ನು ಮೂಕಗೊಳಿಸಲಿದ್ದೀರಿ. ಈ ತೊಂದರೆಗಾಗಿ ನಿಮಗೆ " ++"ಮುಂದೆ ಯಾವುದೆ ಸೂಚನೆಯು ಕಾಣಿಸಿಕೊಳ್ಳುವುದಿಲ್ಲ, ಹಾಗಿದ್ದರೂ ಸಹ ABRTಯು ಅದನ್ನು ಪತ್ತೆ " ++"ಮಾಡುತ್ತದೆ ಮತ್ತು ಅದನ್ನು ನೀವು ABRT GUI ಇಂದ ವರದಿ ಮಾಡಲು ಸಾಧ್ಯವಿರುತ್ತದೆ.\n" ++"\n" ++"ನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುವಿರಾ?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -105,7 +121,8 @@ msgstr "ಎಚ್ಚರಿಕೆ" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "ABRT ಇಂದ ಪತ್ತೆ ಮಾಡಲಾದ ತೊಂದರೆಗಳನ್ನು ಬಳಕೆದಾರರಿಗೆ ಸೂಚಿಸುವ ಸೂಚನಾ ಸ್ಥಳದ ಆಪ್ಲೆಟ್" ++msgstr "" ++"ABRT ಇಂದ ಪತ್ತೆ ಮಾಡಲಾದ ತೊಂದರೆಗಳನ್ನು ಬಳಕೆದಾರರಿಗೆ ಸೂಚಿಸುವ ಸೂಚನಾ ಸ್ಥಳದ ಆಪ್ಲೆಟ್" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -132,6 +149,7 @@ msgid "Ignore forever" + msgstr "ಯಾವಾಗಲೂ ಕಡೆಗಣಿಸು" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "ತೆರೆ" +@@ -146,6 +164,7 @@ msgstr "ಒಂದು ಗೊತ್ತಿರುವ ತೊಂದರೆಯು ಎದ + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "ವರದಿ" +@@ -181,21 +200,27 @@ msgstr "gio ಚಾನಲ್‌ನಲ್ಲಿ ಎನ್ಕೋಡಿಂಗ್ ಅ + #: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "gio ಚಾನಲ್‌ಗಾಗಿ ಬ್ಲಾಕಿಂಗ್ ಸ್ಥಿತಿಯಲ್ಲದ ಕ್ರಮವನ್ನು ಆನ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ: %s" ++msgstr "" ++"gio ಚಾನಲ್‌ಗಾಗಿ ಬ್ಲಾಕಿಂಗ್ ಸ್ಥಿತಿಯಲ್ಲದ ಕ್ರಮವನ್ನು ಆನ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ: %s" + + #: ../src/applet/applet.c:1494 + #, 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:1635 + 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" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Applet which notifies user when new problems are detected by ABRT\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -216,11 +241,15 @@ msgstr "ನಿಶ್ಯಬ್ಧವಾದ ಕಿರಿದಾದ ವರದಿಮ + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "ಕೋರ್‌ಡಂಪ್ ಕಡತವು ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ ಅನ್ನು ರಚಿಸಲು ಅಗತ್ಯವಿರುತ್ತದೆ ಆದರೆ ಇದಕ್ಕಾಗಿ ಹೆಚ್ಚಿನ ಸಮಯ ಹಾಗು ಸ್ಥಳವು ಬೇಕಿರುತ್ತದೆ. ABRT ಯು ಕೋರ್‌ಡಂಪ್‌ನಿಂದ ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ ಅನ್ನು ಉತ್ಪಾದಿಸುವ ಒಂದು ಸೇವೆಯನ್ನು ಒದಗಿಸುತ್ತದೆ ಆದರೆ ಈ ಸೇವೆಗಾಗಿ ನೀವು ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡಬೇಕಿರುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ನಿಮ್ಮನ್ನು ಕೇಳದೆ ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುತ್ತದೆ." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"ಕೋರ್‌ಡಂಪ್ ಕಡತವು ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ ಅನ್ನು ರಚಿಸಲು ಅಗತ್ಯವಿರುತ್ತದೆ ಆದರೆ ಇದಕ್ಕಾಗಿ " ++"ಹೆಚ್ಚಿನ ಸಮಯ ಹಾಗು ಸ್ಥಳವು ಬೇಕಿರುತ್ತದೆ. ABRT ಯು ಕೋರ್‌ಡಂಪ್‌ನಿಂದ ಸ್ಟಾಕ್‌ ಟ್ರೇಸ್ " ++"ಅನ್ನು ಉತ್ಪಾದಿಸುವ ಒಂದು ಸೇವೆಯನ್ನು ಒದಗಿಸುತ್ತದೆ ಆದರೆ ಈ ಸೇವೆಗಾಗಿ ನೀವು ಕೋರ್‌ಡಂಪ್ " ++"ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡಬೇಕಿರುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT " ++"ನಿಮ್ಮನ್ನು ಕೇಳದೆ ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -228,28 +257,44 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT ಯು ಸಮಸ್ಯೆ ಮಾಹಿತಿಯನ್ನು ಕೋಶಗಳಲ್ಲಿ ಶೇಖರಿಸಿ ಇರಿಸುತ್ತದೆ. ABRT ಗೆ ಬರೆಯಬಹುದಾದ ಕೋಶದ ಅಗತ್ಯವಿದ್ದಾಗಲೆಲ್ಲಾ, ಕೋಶವನ್ನು ವ್ಯವಸ್ಥೆಯ ಸ್ಥಳದಿಂದ ನಿಮ್ಮ ನೆಲೆ ಕೋಶಕ್ಕೆ ಸ್ಥಳಾಂತರಿಸಲಾಗುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ಯು ನಿಮ್ಮನ್ನು ಕೇಳದೆ ಸಮಸ್ಯೆಯ ಕೋಶವನ್ನು ಸ್ಥಳಾಂತರಿಸುತ್ತದೆ." ++msgstr "" ++"ABRT ಯು ಸಮಸ್ಯೆ ಮಾಹಿತಿಯನ್ನು ಕೋಶಗಳಲ್ಲಿ ಶೇಖರಿಸಿ ಇರಿಸುತ್ತದೆ. ABRT ಗೆ ಬರೆಯಬಹುದಾದ " ++"ಕೋಶದ ಅಗತ್ಯವಿದ್ದಾಗಲೆಲ್ಲಾ, ಕೋಶವನ್ನು ವ್ಯವಸ್ಥೆಯ ಸ್ಥಳದಿಂದ ನಿಮ್ಮ ನೆಲೆ ಕೋಶಕ್ಕೆ " ++"ಸ್ಥಳಾಂತರಿಸಲಾಗುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ಯು ನಿಮ್ಮನ್ನು " ++"ಕೇಳದೆ ಸಮಸ್ಯೆಯ ಕೋಶವನ್ನು ಸ್ಥಳಾಂತರಿಸುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport ಎನ್ನುವುದು ಸಮಸ್ಯೆಯ ಸಂಕ್ಷಿಪ್ತವಾದ ಮತ್ತು ಸಂಪೂರ್ಣವಾಗಿ ಅನಾಮಧೇಯವಾದಂತಹ ವಿವರಣೆಯಾಗಿರುತ್ತದೆ. ABRT ಯು ವೇಗವಾದ ಸಾರ್ವತ್ರಿಕ ನಕಲುಪ್ರತಿ ಪತ್ತೆ ಮಾಡಲು uReports ಅನ್ನು ಬಳಸುತ್ತದೆ. ಪೂರ್ವನಿಯೋಜಿತ ಸಂರಚನೆಯಲ್ಲಿ uReport ಅನ್ನು ವರದಿಯ ಪ್ರಕ್ರಿಯೆಯ ಆರಂಭದಲ್ಲಿ ಕಳುಹಿಸಲಾಗುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಸಮಸ್ಯೆಯು ಕಂಡುಬಂದ ತಕ್ಷಣವೆ ಸ್ವಯಂಚಾಲಿತವಾಗಿ uReports ಅನ್ನು ಕಳುಹಿಸಲಾಗುತ್ತದೆ." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport ಎನ್ನುವುದು ಸಮಸ್ಯೆಯ ಸಂಕ್ಷಿಪ್ತವಾದ ಮತ್ತು ಸಂಪೂರ್ಣವಾಗಿ ಅನಾಮಧೇಯವಾದಂತಹ " ++"ವಿವರಣೆಯಾಗಿರುತ್ತದೆ. ABRT ಯು ವೇಗವಾದ ಸಾರ್ವತ್ರಿಕ ನಕಲುಪ್ರತಿ ಪತ್ತೆ ಮಾಡಲು uReports " ++"ಅನ್ನು ಬಳಸುತ್ತದೆ. ಪೂರ್ವನಿಯೋಜಿತ ಸಂರಚನೆಯಲ್ಲಿ uReport ಅನ್ನು ವರದಿಯ ಪ್ರಕ್ರಿಯೆಯ " ++"ಆರಂಭದಲ್ಲಿ ಕಳುಹಿಸಲಾಗುತ್ತದೆ. ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ಸಮಸ್ಯೆಯು ಕಂಡುಬಂದ " ++"ತಕ್ಷಣವೆ ಸ್ವಯಂಚಾಲಿತವಾಗಿ uReports ಅನ್ನು ಕಳುಹಿಸಲಾಗುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಾಗ ತೊಂದರೆ ಸೂಚನಾ ಗುಳ್ಳೆಯ ಮೇಲಿರುವ ವರದಿ ಗುಂಡಿಯ ಮೇಲೆ ಕ್ಲಿಕ್ ಮಾಡುವ ಮೂಲಕ ಆರಂಭಗೊಳ್ಳುವ ವರದಿ ಮಾಡುವ ಪ್ರಕ್ರಿಯೆಯನ್ನು uReport ಅನ್ನು ಕಳುಹಿಸಿದ ನಂತರೆ ನಿಲ್ಲಿಸಲಾಗುತ್ತದೆ. ಸಂಪೂರ್ಣ ವರದಿಯನ್ನು ತಯಾರಿಸಲು ನೀವು ಯಾವಾಗಲೂ ಪೂರ್ವನಿಯೋಜಿತ ಸಮಸ್ಯೆಯ ವೀಕ್ಷಕವನ್ನು ಬಳಸಬಹುದು." ++msgstr "" ++"ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಾಗ ತೊಂದರೆ ಸೂಚನಾ ಗುಳ್ಳೆಯ ಮೇಲಿರುವ ವರದಿ ಗುಂಡಿಯ ಮೇಲೆ " ++"ಕ್ಲಿಕ್ ಮಾಡುವ ಮೂಲಕ ಆರಂಭಗೊಳ್ಳುವ ವರದಿ ಮಾಡುವ ಪ್ರಕ್ರಿಯೆಯನ್ನು uReport ಅನ್ನು " ++"ಕಳುಹಿಸಿದ ನಂತರೆ ನಿಲ್ಲಿಸಲಾಗುತ್ತದೆ. ಸಂಪೂರ್ಣ ವರದಿಯನ್ನು ತಯಾರಿಸಲು ನೀವು ಯಾವಾಗಲೂ " ++"ಪೂರ್ವನಿಯೋಜಿತ ಸಮಸ್ಯೆಯ ವೀಕ್ಷಕವನ್ನು ಬಳಸಬಹುದು." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ಎಂದಿಗೂ ಸಹ ವರದಿ ಮಾಡಲಾದ ಸಮಸ್ಯೆಗಳ ಸೂಚನೆಗಳನ್ನು ತೋರಿಸುವುದಿಲ್ಲ. ಕಿರಿದಾಗಿಸಲಾದ (ಶಾರ್ಟನ್ಡ್‌) ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದಲ್ಲಿ ಮಾತ್ರ ಕಾರ್ಯರೂಪಕ್ಕೆ ಬರುತ್ತದೆ." ++msgstr "" ++"ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ಎಂದಿಗೂ ಸಹ ವರದಿ ಮಾಡಲಾದ ಸಮಸ್ಯೆಗಳ " ++"ಸೂಚನೆಗಳನ್ನು ತೋರಿಸುವುದಿಲ್ಲ. ಕಿರಿದಾಗಿಸಲಾದ (ಶಾರ್ಟನ್ಡ್‌) ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು " ++"ಸಕ್ರಿಯಗೊಳಿಸಿದ್ದಲ್ಲಿ ಮಾತ್ರ ಕಾರ್ಯರೂಪಕ್ಕೆ ಬರುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -259,7 +304,9 @@ msgstr "ಕೋರ್‌ಡಂಪ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮ + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ಯು, ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಯು ಕಂಡುಬಂದಲ್ಲಿ ಯಾವಾಗಲೂ ಸಹ ನಿರ್ಬಂಧಿತ ನಿಲುಕನ್ನು ಹೊಂದಿರುವ ದೋಷದ ಟಿಕೆಟ್ ಅನ್ನು ರಚಿಸುತ್ತದೆ." ++msgstr "" ++"ಈ ಆಯ್ಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ ABRT ಯು, ಸೂಕ್ಷ್ಮಸಂವೇದಿ ಮಾಹಿತಿಯು ಕಂಡುಬಂದಲ್ಲಿ " ++"ಯಾವಾಗಲೂ ಸಹ ನಿರ್ಬಂಧಿತ ನಿಲುಕನ್ನು ಹೊಂದಿರುವ ದೋಷದ ಟಿಕೆಟ್ ಅನ್ನು ರಚಿಸುತ್ತದೆ." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -274,7 +321,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "ಗಣಕವನ್ನು ಸ್ಥಗಿತಗೊಳಿಸುತ್ತಿದ್ದರೆ ಅಥವ ಬಳಕೆದಾರರು ನಿರ್ಗಮಿಸುತ್ತಿದ್ದರೆ ಅಪೂರ್ಣವಾದ ಸಮಸ್ಯೆಗಲು ಕಂಡುಬರಬಹುದು. ಮೌಲ್ಯಯುತವಾದ ಸಮಸ್ಯೆಯ ವರದಿಗಳನ್ನು ಒದಗಿಸಲು, ABRT ಈ ಸಮಸ್ಯೆಗಳನ್ನು ಸಲ್ಲಿಸಲು ನಿಮಗೆ ಅನುಮತಿಸುವುದಿಲ್ಲ." ++msgstr "" ++"ಗಣಕವನ್ನು ಸ್ಥಗಿತಗೊಳಿಸುತ್ತಿದ್ದರೆ ಅಥವ ಬಳಕೆದಾರರು ನಿರ್ಗಮಿಸುತ್ತಿದ್ದರೆ ಅಪೂರ್ಣವಾದ " ++"ಸಮಸ್ಯೆಗಲು ಕಂಡುಬರಬಹುದು. ಮೌಲ್ಯಯುತವಾದ ಸಮಸ್ಯೆಯ ವರದಿಗಳನ್ನು ಒದಗಿಸಲು, ABRT ಈ " ++"ಸಮಸ್ಯೆಗಳನ್ನು ಸಲ್ಲಿಸಲು ನಿಮಗೆ ಅನುಮತಿಸುವುದಿಲ್ಲ." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -306,7 +356,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nQuery package database and save package and component name" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Query package database and save package and component name" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -369,7 +422,9 @@ msgstr "ಮಾರ್ಪಡಿಸುವ ಸಲುವಾಗಿ ತೊಂದರೆ + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "ಕೋಶವನ್ನು chown ಮಾಡುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ. ಹೆಚ್ಚಿನ ವಿವರಗಳಿಗಾಗಿ ವ್ಯವಸ್ಥೆಯ ದಾಖಲೆಗಳನ್ನು ಪರಿಶೀಲಿಸಿ." ++msgstr "" ++"ಕೋಶವನ್ನು chown ಮಾಡುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ. ಹೆಚ್ಚಿನ ವಿವರಗಳಿಗಾಗಿ ವ್ಯವಸ್ಥೆಯ " ++"ದಾಖಲೆಗಳನ್ನು ಪರಿಶೀಲಿಸಿ." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -395,7 +450,9 @@ msgstr "'%s' ಘಟಕವನ್ನು '%s' ತೊಂದರೆಯ ಕೋಶದಿ + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "'%s' ಎಂಬ ಹೆಸರು ಕಾಣೆಯಾಗಿದೆ, ಇದೇ ಹೆಸರಿನ ಇನ್ನೊಂದು ಸೇವೆಯು ಚಾಲನೆಯಲ್ಲಿಲ್ಲವೆ ಎಂದು ಪರೀಕ್ಷಿಸಿ.\n" ++msgstr "" ++"'%s' ಎಂಬ ಹೆಸರು ಕಾಣೆಯಾಗಿದೆ, ಇದೇ ಹೆಸರಿನ ಇನ್ನೊಂದು ಸೇವೆಯು ಚಾಲನೆಯಲ್ಲಿಲ್ಲವೆ ಎಂದು " ++"ಪರೀಕ್ಷಿಸಿ.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -409,11 +466,16 @@ msgstr "ಈ ಪ್ರೊಗ್ರಾಮ್ ಅನ್ನು ನಿರ್ವಾಹ + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 ಯು ನಿಮಗೆ ಈ ತೊಂದರೆಯನ್ನು ಸಲ್ಲಿಸಲು ಅನುಮತಿಸುವುದಿಲ್ಲ. ನಿಮಗೆ ಸಮಯವಿದ್ದರೆ ಮತ್ತು ವಿಕಸನೆಗಾರರಿಗೆ ಈ ತೊಂದರೆಯನ್ನು ಸರಿಪಡಿಸಲು ನೀವು ನೆರವಾಗಲು ಬಯಸಿದಲ್ಲಿ, ದಯವಿಟ್ಟು ಅವರನ್ನು ನೇರವಾಗಿ ಸಂಪರ್ಕಿಸಿ." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 ಯು ನಿಮಗೆ ಈ ತೊಂದರೆಯನ್ನು ಸಲ್ಲಿಸಲು " ++"ಅನುಮತಿಸುವುದಿಲ್ಲ. ನಿಮಗೆ ಸಮಯವಿದ್ದರೆ ಮತ್ತು ವಿಕಸನೆಗಾರರಿಗೆ ಈ ತೊಂದರೆಯನ್ನು " ++"ಸರಿಪಡಿಸಲು ನೀವು ನೆರವಾಗಲು ಬಯಸಿದಲ್ಲಿ, ದಯವಿಟ್ಟು ಅವರನ್ನು ನೇರವಾಗಿ ಸಂಪರ್ಕಿಸಿ." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -438,7 +500,9 @@ msgstr "ಬಳಕೆದಾರರೊಂದಿಗೆ ನೇರವಾಗಿ ವ್ + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "ಯಾವುದೆ ಮುಕ್ತ ಕೆಲಸಗಾರರು ಅಥವ ಪೂರ್ಣ ಬಫರ್ ಇಲ್ಲ. '%s'ಆರ್ಕೈವ್ ಅನ್ನು ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ" ++msgstr "" ++"ಯಾವುದೆ ಮುಕ್ತ ಕೆಲಸಗಾರರು ಅಥವ ಪೂರ್ಣ ಬಫರ್ ಇಲ್ಲ. '%s'ಆರ್ಕೈವ್ ಅನ್ನು " ++"ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -450,7 +514,16 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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 ಆಯ್ಕೆಯ ಮೌಲ್ಯವನ್ನು ಬಳಸುತ್ತದೆ" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"UPLOAD_DIRECTORY ಅನ್ನು ಗಮನಿಸುತ್ತದೆ ಮತ್ತು ಒಳಬರುವ ಆರ್ಕೈವ್‌ಗಳನ್ನು abrt.conf " ++"ನಲ್ಲಿ ಸೂಚಿಸಲಾದ\n" ++"DumpLocation ಗೆ ಹೊರತೆಗೆಯುತ್ತದೆ\n" ++"\n" ++"UPLOAD_DIRECTORY ಅನ್ನು ಒದಗಿಸಲಾಗಿರದೆ ಇದ್ದಲ್ಲಿ, abrt.conf ನಲ್ಲಿರುವ\n" ++"WatchCrashdumpArchiveDir ಆಯ್ಕೆಯ ಮೌಲ್ಯವನ್ನು ಬಳಸುತ್ತದೆ" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -464,19 +537,74 @@ msgstr "ಏಕಕಾಲದ ಕೆಲಸಗಾರರ ಸಂಖ್ಯೆ. ಪೂ + msgid "Maximal cache size in MiB. Default is " + msgstr "ಕ್ಯಾಶೆಯ ಗರಿಷ್ಟ ಗಾತ್ರ, MiB ಯಲ್ಲಿ. ಪೂರ್ವನಿಯೋಜಿತವು ಹೀಗಿದೆ" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "ದೃಢೀಕರಣವನ್ನು ಆಫ್ ಮಾಡುತ್ತದೆ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Red Hat ಸಪೋರ್ಟ್‌ನ ಬಳಕೆದಾರ ಹೆಸರು" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++"Red Hat ಸಪೋರ್ಟ್‌ಗಾಗಿನ ಗುಪ್ತಪದ, ನೀಡಲಾಗಿರದೆ ಇದ್ದರೆ, ಒಂದು ಪ್ರಾಂಪ್ಟ್ ಅನ್ನು " ++"ನೀಡಲಾಗುತ್ತದೆ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "uReport SSL ಪ್ರಮಾಣಪತ್ರದ ಮಾರ್ಗಗಳು ಅಥವ ಪ್ರಮಾಣಪತ್ರದ ಬಗೆ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "--password ಕ್ಕಾಗಿ ನೀವು --username ಅನ್ನೂ ಸಹ ಒದಗಿಸಬೇಕು" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "ನೀವು --username ಮತ್ತು --certificate ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "ನೀವು --username ಮತ್ತು --anonymous ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "ನೀವು --anonymous ಮತ್ತು --certificate ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "ಅಮಾನ್ಯವಾದ ಆರ್ಗ್ಯುಮೆಂಟ್‌ಗಳ ಸಂಖ್ಯೆ" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ಗೊತ್ತಿರದ ಆಯ್ಕೆ ಮೌಲ್ಯ: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "ಗುಪ್ತಪದ:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "ಗುಪ್ತಪದವಿಲ್ಲದೆ ಮುಂದುವರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "HTTP ಯು ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ದೃಢೀಕರಿಸಿದೆ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "SSL ಕ್ಲೈಂಟ್‌ ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ದೃಢೀಕರಿಸಿದೆ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "ಅನಾಮಧೇಯವಾಗಿ ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆ" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -487,7 +615,15 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "ಬಳಕೆ: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - ವರ್ಬೋಸ್\n -d - ಅಪ್‌ಲೋಡ್ ಮಾಡಲಾದ ಆರ್ಕೈವ್‌ ಅನ್ನು ಅಳಿಸು\n ABRT_SPOOL_DIR - ಮಾನ್ಯವಾದ ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ಗಳನ್ನು ಅನ್‌ಪ್ಯಾಕ್‌ ಮಾಡಲಾಗುವ ಕೋಶ\n UPLOAD_DIR - ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ಗಳನ್ನು ಇರಿಸಲಾಗುವ ಕೋಶ\n FILENAME - ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ ಕಡತದ ಹೆಸರು\n" ++msgstr "" ++"ಬಳಕೆ: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - ವರ್ಬೋಸ್\n" ++" -d - ಅಪ್‌ಲೋಡ್ ಮಾಡಲಾದ ಆರ್ಕೈವ್‌ ಅನ್ನು ಅಳಿಸು\n" ++" ABRT_SPOOL_DIR - ಮಾನ್ಯವಾದ ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ಗಳನ್ನು ಅನ್‌ಪ್ಯಾಕ್‌ ಮಾಡಲಾಗುವ " ++"ಕೋಶ\n" ++" UPLOAD_DIR - ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ಗಳನ್ನು ಇರಿಸಲಾಗುವ ಕೋಶ\n" ++" FILENAME - ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ ಕಡತದ ಹೆಸರು\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -594,13 +730,17 @@ msgstr "'%s' ನಲ್ಲಿ ತಾತ್ಕಾಲಿಕ ಕಡತವನ್ನ + 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:264 + #, 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 "" +@@ -608,11 +748,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nAnalyzes C/C++ backtrace, generates duplication hash, backtrace rating,\nand identifies crash function in problem directory DIR" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" ++"and identifies crash function in problem directory DIR" + ++#. + #. * 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" +@@ -627,7 +773,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nCalculates and saves UUID of coredump in problem directory DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calculates and saves UUID of coredump in problem directory DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -653,14 +802,22 @@ 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" ++"\n" ++"oops ತೊಂದರೆ ಕೋಶ DIR ಗಾಗಿ UUID ಮತ್ತು DUPHASH ಅನ್ನು ಲೆಕ್ಕಹಾಕುತ್ತದೆ ಮತ್ತು " ++"ಉಳಿಸುತ್ತದೆ" + + #: ../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" ++"\n" ++"xorg ತೊಂದರೆ ಕೋಶ DIR ಗಾಗಿ UUID ಮತ್ತು DUPHASH ಅನ್ನು ಲೆಕ್ಕಹಾಕುತ್ತದೆ ಮತ್ತು " ++"ಉಳಿಸುತ್ತದೆ" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -672,7 +829,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nCalculates and saves UUID and DUPHASH of python crash dumps" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calculates and saves UUID and DUPHASH of python crash dumps" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -687,10 +847,10 @@ msgid "Extracting the oops text from core" + msgstr "ಕೋರ್ ಇಂದ oops ಪಠ್ಯವನ್ನು ಹೊರತೆಗೆಯುವಿಕೆ" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "{0} ಅನ್ನು ಸಂಸ್ಕರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ:\n" + "{1}" +-msgstr "{0} ಅನ್ನು ಸಂಸ್ಕರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -704,14 +864,19 @@ msgstr "Oops ಪಠ್ಯವನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಹೊ + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "ಯಂತ್ರಾಂಶ ದೋಷಗಳು ಕಂಡುಬಂದಿವೆ ಎಂದು ಕರ್ನಲ್ ಲಾಗ್ ಸೂಚಿಸಿದೆ.\nಇದು ಬಹುಷಃ ತಂತ್ರಾಂಶದ ತೊಂದರೆಯಾಗಿಲ್ಲ.\n" ++msgstr "" ++"ಯಂತ್ರಾಂಶ ದೋಷಗಳು ಕಂಡುಬಂದಿವೆ ಎಂದು ಕರ್ನಲ್ ಲಾಗ್ ಸೂಚಿಸಿದೆ.\n" ++"ಇದು ಬಹುಷಃ ತಂತ್ರಾಂಶದ ತೊಂದರೆಯಾಗಿಲ್ಲ.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nAnalyzes coredump in problem directory DIR, generates and saves backtrace" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analyzes coredump in problem directory DIR, generates and saves backtrace" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -723,6 +888,7 @@ 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" +@@ -733,7 +899,11 @@ 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" ++"\n" ++"ಕೋರ್ ಡಂಪ್‌ನಿಂದ ಮತ್ತು ಸಂಬಂಧಿಸಿದ ಬೈನರಿಯಿಂದ ಕೋರ್ ಡಂಪ್-ಹಂತದ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಅನ್ನು " ++"ರಚಿಸುತ್ತದೆ" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -761,7 +931,8 @@ msgstr "ಬಳಕೆದಾರರ ಆಜ್ಞೆಯ ಮೇರೆಗೆ ನಿರ + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -771,13 +942,34 @@ msgid "" + " -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" ++" --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" +-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" ++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_FILE ನಲ್ಲಿ ಅನುಸ್ಥಾಪಿಸಲಾದ ಎಲ್ಲಾ ನಿರ್ಮಾಣ-ಐಡಿಗಳಿಗಾಗಿ debuginfos ಅನ್ನು " ++"CACHEDIR ಗೆ ಅನುಸ್ಥಾಪಿಸುತ್ತದೆ\n" ++"TMPDIR ಅನ್ನು ತಾತ್ಕಾಲಿಕ ಸ್ಟೇಜಿಂಗ್ ಸ್ಥಳವಾಗಿ ಬಳಸಿಕೊಂಡು.\n" ++"CACHEDIR ನಲ್ಲಿ ಹಳೆಯ ಕಡತಗಳು 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}" +@@ -785,7 +977,9 @@ msgstr "{0} ಅನ್ನು ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "{0} debuginfo ಕಡತಗಳನ್ನು Coredump ಉಲ್ಲೇಖಿಸುತ್ತದೆ, ಅವುಗಳಲ್ಲಿ {1} ಅನ್ನು ಅನುಸ್ಥಾಪಿಸಲಾಗಿಲ್ಲ" ++msgstr "" ++"{0} debuginfo ಕಡತಗಳನ್ನು Coredump ಉಲ್ಲೇಖಿಸುತ್ತದೆ, ಅವುಗಳಲ್ಲಿ {1} ಅನ್ನು " ++"ಅನುಸ್ಥಾಪಿಸಲಾಗಿಲ್ಲ" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -808,21 +1002,33 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "ಕೋರ್ ಡಂಪ್ ಮಾಡಲು ಸರಿಯಾಗಿದೆಯೆ? (ಇದು ಕೆಲವು ಸೂಕ್ಷ್ಮ ಮಾಹಿತಿಯನ್ನು ಹೊಂದಿರಬಹುದು). ನಿಮ್ಮ ಉತ್ತರವು 'ಇಲ್ಲ' ಆಗಿದ್ದಲ್ಲಿ, ಸ್ಥಳೀಯವಾಗಿ ಒಂದು ಸ್ಟ್ಯಾಕ್ ಟ್ರೇಸ್‌ ಅನ್ನು ಉತ್ಪಾದಿಸಲಾಗುತ್ತದೆ. (ಇದು ದೊಡ್ಡ ಮೊತ್ತದ ದತ್ತಾಂಶವನ್ನು ಇಳಿಸಿಕೊಳ್ಳಬಹುದು)." ++msgstr "" ++"ಕೋರ್ ಡಂಪ್ ಮಾಡಲು ಸರಿಯಾಗಿದೆಯೆ? (ಇದು ಕೆಲವು ಸೂಕ್ಷ್ಮ ಮಾಹಿತಿಯನ್ನು ಹೊಂದಿರಬಹುದು). " ++"ನಿಮ್ಮ ಉತ್ತರವು 'ಇಲ್ಲ' ಆಗಿದ್ದಲ್ಲಿ, ಸ್ಥಳೀಯವಾಗಿ ಒಂದು ಸ್ಟ್ಯಾಕ್ ಟ್ರೇಸ್‌ ಅನ್ನು " ++"ಉತ್ಪಾದಿಸಲಾಗುತ್ತದೆ. (ಇದು ದೊಡ್ಡ ಮೊತ್ತದ ದತ್ತಾಂಶವನ್ನು ಇಳಿಸಿಕೊಳ್ಳಬಹುದು)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"ನೀವು ಸ್ಥಳೀಯವಾಗಿ ಸ್ಟ್ಯಾಕ್ ಟ್ರೇಸ್ ಅನ್ನು ಉತ್ಪಾದಿಸಲು ಬಯಸುತ್ತೀರಾ? (ಇದು ದೊಡ್ಡ " ++"ಮೊತ್ತದ ದತ್ತಾಂಶವನ್ನು ಇಳಿಸಿಕೊಳ್ಳಬಹುದು ಆದರೆ ಸ್ಟ್ಯಾಕ್ ಟ್ರೇಸ್ ಇಲ್ಲದೆ ವರದಿ " ++"ಮಾಡುವಿಕೆಯು ಮುಂದುವರೆಯುವುದಿಲ್ಲ)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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" ++"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\nDeletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\nFILEs are preserved (never deleted)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -853,7 +1059,8 @@ msgstr "ಬಳಕೆ: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "ಪ್ರಸಕ್ತ ಕೆಲಸದ ಕೋಶವನ್ನು ಬಹುಷಃ ಅಳಿಸಲಾಗಿರುವ ಕಾರಣದಿಂದ ಅದನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" ++msgstr "" ++"ಪ್ರಸಕ್ತ ಕೆಲಸದ ಕೋಶವನ್ನು ಬಹುಷಃ ಅಳಿಸಲಾಗಿರುವ ಕಾರಣದಿಂದ ಅದನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +@@ -964,11 +1171,15 @@ 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 "" ++"ಇಲ್ಲ ಎಂಬ ಸಂಕೇತವನ್ನು ಪಡೆಯಲಾಗಿಲ್ಲ ಮತ್ತು ಪ್ರಯೋಜನಪಡೆಯುವಿಕೆಯ (ಎಕ್ಸಪ್ಲಾಯ್ಟೆಬಲ್) " ++"ವಿಶ್ಲೇಷಣೆ\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +@@ -991,7 +1202,11 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nದಿನಚರಿ ಕಡತ FILE ಅನ್ನು ನೋಡಿ, ಅದು ಬೆಳೆದಲ್ಲಿ ಅಥವ ಬದಲಾಯಿಸಲ್ಪಟ್ಟಲ್ಲಿ PROG ಅನ್ನು ಚಲಾಯಿಸು" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"ದಿನಚರಿ ಕಡತ FILE ಅನ್ನು ನೋಡಿ, ಅದು ಬೆಳೆದಲ್ಲಿ ಅಥವ ಬದಲಾಯಿಸಲ್ಪಟ್ಟಲ್ಲಿ PROG ಅನ್ನು " ++"ಚಲಾಯಿಸು" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1001,20 +1216,26 @@ msgstr "STRಗಳು ಕಂಡುಬರದೆ ಇದ್ದಲ್ಲಿ PROG ಅ + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "ಹಾಳಾಗಿರುವ BIOS ಕಾರಣದಿಂದಾಗಿ ಒಂದು ಕರ್ನಲ್ ತೊಂದರೆ ಕಾಣಿಸಿಕೊಂಡಿದೆ. ದುರದೃಷ್ಟವಶಾತ್, ಆ ತೊಂದರೆಗಳನ್ನು ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕಗಳಿಂದ ಸರಿಪಡಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." ++msgstr "" ++"ಹಾಳಾಗಿರುವ BIOS ಕಾರಣದಿಂದಾಗಿ ಒಂದು ಕರ್ನಲ್ ತೊಂದರೆ ಕಾಣಿಸಿಕೊಂಡಿದೆ. ದುರದೃಷ್ಟವಶಾತ್, " ++"ಆ ತೊಂದರೆಗಳನ್ನು ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕಗಳಿಂದ ಸರಿಪಡಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." + + #: ../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: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). ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕರಿಂದ ಸೋಂಕು ವರದಿಗಳನ್ನು ತಪಾಸಣೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ." ++msgstr "" ++"ಒಂದು ಕರ್ನಲ್ ತೊಂದರೆ ಎದುರಾಗಿದೆ, ಆದರೆ ಕರ್ನಲ್‌ಗೆ ಸೋಂಕು ಹಿಡಿದಿದೆ (flags:%s). " ++"ಕರ್ನಲ್ ಮೇಲ್ವಿಚಾರಕರಿಂದ ಸೋಂಕು ವರದಿಗಳನ್ನು ತಪಾಸಣೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ." + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1026,7 +1247,10 @@ 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" ++"\n" ++"FILE ನಿಂದ oops ಅನ್ನು ಹೊರತೆಗೆ (ಅಥವ ಶಿಷ್ಟವಾದ ಇನ್‌ಪುಟ್)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1034,13 +1258,15 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ DIR ಯಲ್ಲಿ ಹೊಸ ತೊಂದರೆ ಕೋಶವನ್ನು ರಚಿಸು" + + #: ../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 ಅನ್ನು ಸೂಚಿಸಲಾಗಿರುತ್ತದೆ" ++msgstr "" ++"-d DumpLocation ನಂತೆಯೆ, abrt.conf ನಲ್ಲಿ DumpLocation ಅನ್ನು ಸೂಚಿಸಲಾಗಿರುತ್ತದೆ" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1064,7 +1290,8 @@ msgstr "regex ಅನ್ನು ಕಂಪೈಲ್ ಮಾಡಲು ವಿಫಲಗ + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +-msgstr "ತೊಂದರೆಯನ್ನು ಅಪ್‌ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ; ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ oops ಕಂಡುಬಂದಿದೆ" ++msgstr "" ++"ತೊಂದರೆಯನ್ನು ಅಪ್‌ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ; ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ oops ಕಂಡುಬಂದಿದೆ" + + #: ../src/plugins/abrt-dump-oops.c:421 + #, c-format +@@ -1076,7 +1303,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nXorg ಕುಸಿತವನ್ನು FILE (ಅಥವ ಶಿಷ್ಟವಾದ ಇನ್‌ಪುಟ್‌) ಇಂದ ಹೊರತೆಗೆ" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Xorg ಕುಸಿತವನ್ನು FILE (ಅಥವ ಶಿಷ್ಟವಾದ ಇನ್‌ಪುಟ್‌) ಇಂದ ಹೊರತೆಗೆ" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1090,10 +1320,13 @@ msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕವನ್ನು ಬಳಸಲು ಸಾಧ್ಯವಿಲ್ಲ, ಏಕೆಂದರೆ ಕುಸಿತವು ಬಹಳ ದೊಡ್ಡದಾಗಿದೆ. ಸ್ಥಳೀಯವಾಗಿ ರಿಟ್ರೇಸ್ ಮಾಡಲು ಪ್ರಯತ್ನಿಸಿ." ++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 +@@ -1106,7 +1339,8 @@ msgstr "ಇಲ್ಲಿ ತಾತ್ಕಾಲಿಕ ಕಡತವನ್ನು ನ + #: ../src/plugins/abrt-retrace-client.c:832 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "%d ಯಷ್ಟು ದೊಡ್ಡದಾದ HTTP ಹೆಡರ್ ಅನ್ನು ಕಳುಹಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ: NSS ದೋಷ %d" ++msgstr "" ++"%d ಯಷ್ಟು ದೊಡ್ಡದಾದ HTTP ಹೆಡರ್ ಅನ್ನು ಕಳುಹಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ: NSS ದೋಷ %d" + + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 +@@ -1116,10 +1350,10 @@ msgstr "%d ಯಷ್ಟು ದೊಡ್ಡದಾದ HTTP ಹೆಡರ್ ಅನ + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "ಪೂರೈಕೆಗಣಕದಿಂದ ಅನಿರೀಕ್ಷಿತವಾದ HTTP ಪ್ರತ್ಯುತ್ತರ ಬಂದಿದೆ: %d\n" + "%s" +-msgstr "ಪೂರೈಕೆಗಣಕದಿಂದ ಅನಿರೀಕ್ಷಿತವಾದ HTTP ಪ್ರತ್ಯುತ್ತರ ಬಂದಿದೆ: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1128,14 +1362,18 @@ msgstr "ಪೂರೈಕೆಗಣಕದಿಂದ ಅನಿರೀಕ್ಷಿತ + #: ../src/plugins/abrt-retrace-client.c:982 + #: ../src/plugins/abrt-retrace-client.c:1052 + msgid "Invalid response from server: missing HTTP message body." +-msgstr "ಪೂರೈಕೆಗಣಕದಿಂದ ಅಮಾನ್ಯವಾದ ಪ್ರತ್ಯುತ್ತರ ಬಂದಿದೆ: HTTP ಸಂದೇಶದ ಮುಖ್ಯಭಾಗವು ಕಂಡುಬಂದಿಲ್ಲ." ++msgstr "" ++"ಪೂರೈಕೆಗಣಕದಿಂದ ಅಮಾನ್ಯವಾದ ಪ್ರತ್ಯುತ್ತರ ಬಂದಿದೆ: HTTP ಸಂದೇಶದ ಮುಖ್ಯಭಾಗವು " ++"ಕಂಡುಬಂದಿಲ್ಲ." + + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "'%s.%s' ಪ್ಯಾಕೇಜನ್ನು ಸಂಸ್ಕರಿಸಲು ರಿಟ್ರೇಸ್‌ ಪೂರೈಕೆಗಣಕದಿಂದ ಸಾಧ್ಯವಾಗಿಲ್ಲ.\nಇದು ಅಧೀಕೃತ '%s' ರೆಪೊಸಿಟರಿಗಳ ಒಂದು ಭಾಗವೆ?" ++msgstr "" ++"'%s.%s' ಪ್ಯಾಕೇಜನ್ನು ಸಂಸ್ಕರಿಸಲು ರಿಟ್ರೇಸ್‌ ಪೂರೈಕೆಗಣಕದಿಂದ ಸಾಧ್ಯವಾಗಿಲ್ಲ.\n" ++"ಇದು ಅಧೀಕೃತ '%s' ರೆಪೊಸಿಟರಿಗಳ ಒಂದು ಭಾಗವೆ?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1160,7 +1398,9 @@ msgstr "ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕದಲ್ಲಿ ಬ + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "ಕುಸಿತದ ಗಾತ್ರವು %lld ಬೈಟ್‌ಗಳಾಗಿವೆ, ಆದರೆ ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕವು ಕೇವಲ %lld ಬೈಟ್‌ಗಳಿಗಿಂದ ಚಿಕ್ಕದಾದ ಅಥವ ಅದಕ್ಕೆ ಸಮನಾದ ಕುಸಿತಗಳನ್ನು ಮಾತ್ರ ಒಪ್ಪಿಕೊಳ್ಳುತ್ತದೆ." ++msgstr "" ++"ಕುಸಿತದ ಗಾತ್ರವು %lld ಬೈಟ್‌ಗಳಾಗಿವೆ, ಆದರೆ ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕವು ಕೇವಲ %lld " ++"ಬೈಟ್‌ಗಳಿಗಿಂದ ಚಿಕ್ಕದಾದ ಅಥವ ಅದಕ್ಕೆ ಸಮನಾದ ಕುಸಿತಗಳನ್ನು ಮಾತ್ರ ಒಪ್ಪಿಕೊಳ್ಳುತ್ತದೆ." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1188,7 +1428,10 @@ msgstr "ಒಂದು ಆರ್ಕೈವ್ ಅನ್ನು ಅಪ್‌ಲೋಡ + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "ಆರ್ಕೈವ್‌ನ ಗಾತ್ರವು %lld ಬೈಟ್‌ಗಳಾಗಿವೆ, ಆದರೆ ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕವು ಕೇವಲ %lld ಬೈಟ್‌ಗಳಿಗಿಂದ ಚಿಕ್ಕದಾದ ಅಥವ ಅದಕ್ಕೆ ಸಮನಾದ ಆರ್ಕೈವ್‌ಗಳನ್ನು ಮಾತ್ರ ಒಪ್ಪಿಕೊಳ್ಳುತ್ತದೆ." ++msgstr "" ++"ಆರ್ಕೈವ್‌ನ ಗಾತ್ರವು %lld ಬೈಟ್‌ಗಳಾಗಿವೆ, ಆದರೆ ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕವು ಕೇವಲ %lld " ++"ಬೈಟ್‌ಗಳಿಗಿಂದ ಚಿಕ್ಕದಾದ ಅಥವ ಅದಕ್ಕೆ ಸಮನಾದ ಆರ್ಕೈವ್‌ಗಳನ್ನು ಮಾತ್ರ ಒಪ್ಪಿಕೊಳ್ಳುತ್ತದೆ." ++"" + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1231,13 +1474,17 @@ msgstr "ಅಪ್‌ಲೋಡ್ ಯಶಸ್ವಿಯಾಗಿದೆ" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "ನಿಮ್ಮ ತೊಂದರೆ ಕೋಶವು ಹಾಳಾಗಿದೆ ಹಾಗು ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕದಿಂದ ಸಂಸ್ಕರಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." ++msgstr "" ++"ನಿಮ್ಮ ತೊಂದರೆ ಕೋಶವು ಹಾಳಾಗಿದೆ ಹಾಗು ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕದಿಂದ ಸಂಸ್ಕರಿಸಲು " ++"ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "ನಿಮ್ಮ ಆರ್ಕೈವ್‌ ದುರುದ್ಧೇಶಪೂರಿತವಾದ ಕಡತಗಳನ್ನು (ಸಾಂಕೇತಿಕಕೊಂಡಿಗಳಂತಹ) ಹಾಗು ಅದನ್ನು ಸಂಸ್ಕರಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." ++msgstr "" ++"ನಿಮ್ಮ ಆರ್ಕೈವ್‌ ದುರುದ್ಧೇಶಪೂರಿತವಾದ ಕಡತಗಳನ್ನು (ಸಾಂಕೇತಿಕಕೊಂಡಿಗಳಂತಹ) ಹಾಗು ಅದನ್ನು " ++"ಸಂಸ್ಕರಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1245,7 +1492,8 @@ msgstr "ಪೂರೈಕೆಗಣಕದಿಂದ ಅಮಾನ್ಯವಾದ ಪ + + #: ../src/plugins/abrt-retrace-client.c:778 + msgid "Invalid response from server: missing X-Task-Password." +-msgstr "ಪೂರೈಕೆಗಣಕದಿಂದ ಅಮಾನ್ಯವಾದ ಪ್ರತ್ಯುತ್ತರ ಬಂದಿದೆ: X-Task-Password ಕಾಣಿಸುತ್ತಿಲ್ಲ." ++msgstr "" ++"ಪೂರೈಕೆಗಣಕದಿಂದ ಅಮಾನ್ಯವಾದ ಪ್ರತ್ಯುತ್ತರ ಬಂದಿದೆ: X-Task-Password ಕಾಣಿಸುತ್ತಿಲ್ಲ." + + #: ../src/plugins/abrt-retrace-client.c:785 + msgid "Retrace job started" +@@ -1253,34 +1501,38 @@ msgstr "ಕೆಲಸವನ್ನು ರಿಟ್ರೇಸ್ ಮಾಡಲು ಆ + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "ಕಾರ್ಯದ Id: %s\nಕಾರ್ಯದ ಗುಪ್ತಪದ: %s\n" ++msgstr "ಕಾರ್ಯದ Id: %s\n" ++"ಕಾರ್ಯದ ಗುಪ್ತಪದ: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +-msgstr "ಪೂರೈಕೆಗಣಕದಿಂದ ಅಮಾನ್ಯವಾದ ಪ್ರತ್ಯುತ್ತರ ಬಂದಿದೆ: X-Task-Status ಕಾಣಿಸುತ್ತಿಲ್ಲ." ++msgstr "" ++"ಪೂರೈಕೆಗಣಕದಿಂದ ಅಮಾನ್ಯವಾದ ಪ್ರತ್ಯುತ್ತರ ಬಂದಿದೆ: X-Task-Status ಕಾಣಿಸುತ್ತಿಲ್ಲ." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "ಕಾರ್ಯದ ಸ್ಥಿತಿ: %s\n" + "%s\n" +-msgstr "ಕಾರ್ಯದ ಸ್ಥಿತಿ: %s\n%s\n" + + #: ../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 ಯಷ್ಟು ದೊಡ್ಡದಾದ HTTP ಹೆಡರ್ ಅನ್ನು ಕಳುಹಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ: NSS ದೋಷ %d." ++msgstr "" ++"%d ಯಷ್ಟು ದೊಡ್ಡದಾದ HTTP ಹೆಡರ್ ಅನ್ನು ಕಳುಹಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ: NSS ದೋಷ %d." + + #: ../src/plugins/abrt-retrace-client.c:1160 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "ರಿಟ್ರೇಸ್ ವಿಫಲಗೊಂಡಿದೆ. ಸ್ವಲ್ಪ ಸಮಯದ ನಂತರ ಪ್ರಯತ್ನಿಸಿ ಹಾಗು ಆದರೂ ಸಹ ತೊಂದರೆ ಹಾಗೆಯೆ ಇದ್ದಲ್ಲಿ ದಯವಿಟ್ಟು ಈ ಸಮಸ್ಯೆಯನ್ನು ವರದಿ ಮಾಡಿ." ++msgstr "" ++"ರಿಟ್ರೇಸ್ ವಿಫಲಗೊಂಡಿದೆ. ಸ್ವಲ್ಪ ಸಮಯದ ನಂತರ ಪ್ರಯತ್ನಿಸಿ ಹಾಗು ಆದರೂ ಸಹ ತೊಂದರೆ ಹಾಗೆಯೆ " ++"ಇದ್ದಲ್ಲಿ ದಯವಿಟ್ಟು ಈ ಸಮಸ್ಯೆಯನ್ನು ವರದಿ ಮಾಡಿ." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1294,7 +1546,9 @@ msgstr "ಅಸುರಕ್ಷಿತ ಸಂಪರ್ಕವನ್ನು ಪೂರ + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "ಆರ್ಕೈವ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುವ ಮೊದಲು ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕವು ಒದಗಿಸಲಾದ ಪ್ಯಾಕೇಜನ್ನು ಸಂಸ್ಕರಿಸಲು ಸಮರ್ಥವಾಗಿದೆಯೆ ಎಂದು ಪರೀಕ್ಷಿಸಬೇಡಿ" ++msgstr "" ++"ಆರ್ಕೈವ್ ಅನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡುವ ಮೊದಲು ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕವು ಒದಗಿಸಲಾದ ಪ್ಯಾಕೇಜನ್ನು " ++"ಸಂಸ್ಕರಿಸಲು ಸಮರ್ಥವಾಗಿದೆಯೆ ಎಂದು ಪರೀಕ್ಷಿಸಬೇಡಿ" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1344,7 +1598,9 @@ msgstr "ಪೂರೈಕೆಗಣಕದಲ್ಲಿನ ನಿಮ್ಮ ಕಾರ + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [ಆಯ್ಕೆಗಳು]\nOperations: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client [ಆಯ್ಕೆಗಳು]\n" ++"Operations: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1376,14 +1632,19 @@ msgstr "ಸ್ಥಳೀಯ GNU ಡೀಬಗ್ಗರ್" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "ದೋಷನಿವಾರಣಾಮಾಹಿತಿ ಪ್ಯಾಕೇಜುಗಳನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡಿ ಹಾಗು GDB ಅನ್ನು ಬಳಸಿಕೊಂಡು ಸ್ಥಳೀಯವಾಗಿ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಅನ್ನು ಉತ್ಪಾದಿಸಿ" ++msgstr "" ++"ದೋಷನಿವಾರಣಾಮಾಹಿತಿ ಪ್ಯಾಕೇಜುಗಳನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡಿ ಹಾಗು GDB ಅನ್ನು ಬಳಸಿಕೊಂಡು " ++"ಸ್ಥಳೀಯವಾಗಿ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಅನ್ನು ಉತ್ಪಾದಿಸಿ" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "ದೋಷನಿವಾರಣಾಮಾಹಿತಿ ಪ್ಯಾಕೇಜುಗಳ ಅಗತ್ಯವಿರುತ್ತದೆ, ಇದಕ್ಕೆ ಗಮನಾರ್ಹವಾದ ಸಮಯ ತಗಲಬಹುದು, ಹಾಗು ಡಿಸ್ಕಿನ ಜಾಗವನ್ನೂ ಸಹ ತೆಗೆದುಕೊಳ್ಳಬಹುದು. ಆದರೆ, RetraceServer ದಲ್ಲಿರುವಂತೆ, ಇದು ದೂರಸ್ಥ ಗಣಕಯಂತ್ರಗಳಿಗೆ ಕೋರ್ ಡಂಪ್ ಅನ್ನು ಕಳುಹಿಸುವುದಿಲ್ಲ." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"ದೋಷನಿವಾರಣಾಮಾಹಿತಿ ಪ್ಯಾಕೇಜುಗಳ ಅಗತ್ಯವಿರುತ್ತದೆ, ಇದಕ್ಕೆ ಗಮನಾರ್ಹವಾದ ಸಮಯ ತಗಲಬಹುದು, " ++"ಹಾಗು ಡಿಸ್ಕಿನ ಜಾಗವನ್ನೂ ಸಹ ತೆಗೆದುಕೊಳ್ಳಬಹುದು. ಆದರೆ, RetraceServer ದಲ್ಲಿರುವಂತೆ, " ++"ಇದು ದೂರಸ್ಥ ಗಣಕಯಂತ್ರಗಳಿಗೆ ಕೋರ್ ಡಂಪ್ ಅನ್ನು ಕಳುಹಿಸುವುದಿಲ್ಲ." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1391,12 +1652,19 @@ msgstr "ಕೋರ್ ಡಂಪ್ ಅನ್ನು ವಿಶ್ಲೇಷಣೆಗ + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "ಕೋರ್ ಡಂಪ್‌ಗಳನ್ನು ಪೂರೈಕೆಗಣಕಕ್ಕೆ ಅಪ್‌ಲೋಡ್ ಮಾಡುತ್ತದೆ, ಇದು ಬ್ಯಾಕ್‌ಟ್ರೇಸ್‌ ಅನ್ನು ಉತ್ಪಾದಿಸುತ್ತದೆ ಹಾಗು ಅದನ್ನು ಮರಳಿಸುತ್ತದೆ. ಅನುಕೂಲಗಳು: ದೋಷನಿವಾರಣಾಮಾಹಿತಿಯನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡುವ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ. ದೋಷನಿವಾರಣಾಮಾಹಿತಿಯ ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕದ ದತ್ತಸಂಚಯವು ಹೆಚ್ಚು ಪರಿಪೂರ್ಣವಾಗಿರುತ್ತದೆ. ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕವು ಉತ್ತಮವಾದ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್‌ಗಳನ್ನು ಉತ್ಪಾದಿಸಬಲ್ಲದು. ಅನಾನುಕೂಲಗಳು: ನೀವು ಅಪ್‌ಲೋಡ್ ಮಾಡುವ ಕೋರ್ ಡಂಪ್ ನಿಮ್ಮ ಯಾವುದಾದರೂ ಖಾಸಗಿ ಮಾಹಿತಿ ಇದ್ದಲ್ಲಿ ಅದೂ ಸೇರಿದಂತೆ ಕುಸಿತಗೊಂಡ ಪ್ರೊಗ್ರಾಮ್‌ನ ಎಲ್ಲಾ ಮಾಹಿತಿಯನ್ನು ಹೊಂದಿರುತ್ತದೆ." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"ಕೋರ್ ಡಂಪ್‌ಗಳನ್ನು ಪೂರೈಕೆಗಣಕಕ್ಕೆ ಅಪ್‌ಲೋಡ್ ಮಾಡುತ್ತದೆ, ಇದು ಬ್ಯಾಕ್‌ಟ್ರೇಸ್‌ ಅನ್ನು " ++"ಉತ್ಪಾದಿಸುತ್ತದೆ ಹಾಗು ಅದನ್ನು ಮರಳಿಸುತ್ತದೆ. ಅನುಕೂಲಗಳು: ದೋಷನಿವಾರಣಾಮಾಹಿತಿಯನ್ನು " ++"ಡೌನ್‌ಲೋಡ್ ಮಾಡುವ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ. ದೋಷನಿವಾರಣಾಮಾಹಿತಿಯ ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕದ " ++"ದತ್ತಸಂಚಯವು ಹೆಚ್ಚು ಪರಿಪೂರ್ಣವಾಗಿರುತ್ತದೆ. ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕವು ಉತ್ತಮವಾದ " ++"ಬ್ಯಾಕ್‌ಟ್ರೇಸ್‌ಗಳನ್ನು ಉತ್ಪಾದಿಸಬಲ್ಲದು. ಅನಾನುಕೂಲಗಳು: ನೀವು ಅಪ್‌ಲೋಡ್ ಮಾಡುವ ಕೋರ್ " ++"ಡಂಪ್ ನಿಮ್ಮ ಯಾವುದಾದರೂ ಖಾಸಗಿ ಮಾಹಿತಿ ಇದ್ದಲ್ಲಿ ಅದೂ ಸೇರಿದಂತೆ ಕುಸಿತಗೊಂಡ " ++"ಪ್ರೊಗ್ರಾಮ್‌ನ ಎಲ್ಲಾ ಮಾಹಿತಿಯನ್ನು ಹೊಂದಿರುತ್ತದೆ." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1421,10 +1689,13 @@ msgstr "ಅಸುರಕ್ಷಿತ ಸಂಪರ್ಕವನ್ನು ಬಳಸ + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "ಅಸುರಕ್ಷಿತ ಸಂಪರ್ಕ <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a> ಅನ್ನು ಅನುಮತಿಸಲು \"insecure\" ಅನ್ನು ಬರೆಯಿರಿ" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"ಅಸುರಕ್ಷಿತ ಸಂಪರ್ಕ <a href=\"https://fedorahosted.org/abrt/wiki/" ++"AbrtRetraceServerInsecureConnection\" >(warning)</a> ಅನ್ನು " ++"ಅನುಮತಿಸಲು \"insecure\" ಅನ್ನು ಬರೆಯಿರಿ" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1438,7 +1709,10 @@ msgstr "~/.xsession-errors file ಇಂದ ಸೂಕ್ತವಾದ ಸಾಲು + 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." +@@ -1471,7 +1745,9 @@ msgstr "ಪ್ರಮಾಣಪತ್ರವನ್ನು ನಂಬಲರ್ಹವ + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "ಪ್ರಮಾಣಪತ್ರದ ವಿಷಯದ '%s' ಎಂಬ ಹೆಸರು ಉದ್ಧೇಶಿತ ಆತಿಥೇಯ ಹೆಸರಾದ '%s' ಎಂಬುದಕ್ಕೆ ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ." ++msgstr "" ++"ಪ್ರಮಾಣಪತ್ರದ ವಿಷಯದ '%s' ಎಂಬ ಹೆಸರು ಉದ್ಧೇಶಿತ ಆತಿಥೇಯ ಹೆಸರಾದ '%s' ಎಂಬುದಕ್ಕೆ " ++"ತಾಳೆಯಾಗುತ್ತಿಲ್ಲ." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1596,7 +1872,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nಬೋಧಿ ಪೂರೈಕೆಗಣಕದಲ್ಲಿ ಅಪ್‌ಡೇಟ್‌ಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"ಬೋಧಿ ಪೂರೈಕೆಗಣಕದಲ್ಲಿ ಅಪ್‌ಡೇಟ್‌ಗಳಿಗಾಗಿ ಹುಡುಕಲಾಗುತ್ತಿದೆ" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1609,21 +1888,30 @@ msgstr "ಈ ಪ್ಯಾಕೇಜಿಗೆ ಯಾವುದೆ ಅಪ್‌ಡೇ + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" +-msgstr "ಪ್ಯಾಕೇಜಿನ ಸ್ಥಳೀಯ ಆವೃತ್ತಿಯು ಲಭ್ಯವಿರುವ ಅಪ್‌ಡೇಟ್‌ನ ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಗಿಂತ ಹೊಸತಾಗಿದೆ" ++msgstr "" ++"ಪ್ಯಾಕೇಜಿನ ಸ್ಥಳೀಯ ಆವೃತ್ತಿಯು ಲಭ್ಯವಿರುವ ಅಪ್‌ಡೇಟ್‌ನ ಇತ್ತೀಚಿನ ಆವೃತ್ತಿಗಿಂತ " ++"ಹೊಸತಾಗಿದೆ" + + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "ಒಂದು ಅಪ್‌ಡೇಟ್ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ ಮತ್ತು ಇದು ನಿಮ್ಮ ತೊಂದರೆಯನ್ನು ಸರಿಪಡಿಸಬಹುದು. ಇದನ್ನು ಚಲಾಯಿಸುವ ಮೂಲಕ ನೀವು ಅನುಸ್ಥಾಪಿಸಬಹುದು: %s. ದೋಷ ವರದಿ ಮಾಡುವಿಕೆಯೊಂದಿಗೆ ನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುವಿರಾ?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"ಒಂದು ಅಪ್‌ಡೇಟ್ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ ಮತ್ತು ಇದು ನಿಮ್ಮ ತೊಂದರೆಯನ್ನು ಸರಿಪಡಿಸಬಹುದು. " ++"ಇದನ್ನು ಚಲಾಯಿಸುವ ಮೂಲಕ ನೀವು ಅನುಸ್ಥಾಪಿಸಬಹುದು: %s. ದೋಷ ವರದಿ ಮಾಡುವಿಕೆಯೊಂದಿಗೆ ನೀವು " ++"ಮುಂದುವರೆಯಲು ಬಯಸುವಿರಾ?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + 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" ++"\n" ++"ವಿಭಜಿತ oops ಸಂದೇಶಕ್ಕಾಗಿ ಕಡತಗಳನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡುತ್ತದೆ. ಅವುಗಳನ್ನು ಮುದ್ರಿಸಲು " ++"ಮತ್ತು/ಅಥವ ಅಳಿಸಲು ಸಾಧ್ಯವಿರುತ್ತದೆ." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1674,7 +1962,9 @@ msgstr "ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ 'abrt-cli COMMAND - + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +-msgstr "%sRed Hat ಕಸ್ಟಮರ್‌ ಪೋರ್ಟಲ್‌ನಲ್ಲಿ ಒಂದು ಪ್ರಕರಣವನ್ನು ತೆರೆಯಲು 'abrt-cli report %s' ಅನ್ನು ಚಲಾಯಿಸಿ\n" ++msgstr "" ++"%sRed Hat ಕಸ್ಟಮರ್‌ ಪೋರ್ಟಲ್‌ನಲ್ಲಿ ಒಂದು ಪ್ರಕರಣವನ್ನು ತೆರೆಯಲು 'abrt-cli report " ++"%s' ಅನ್ನು ಚಲಾಯಿಸಿ\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1691,18 +1981,25 @@ msgstr "ವಿವರವಾದ ವರದಿಯನ್ನು ತೋರಿಸು" + + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +-msgstr "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಅತ್ಯಂತ ಇತ್ತೀಚಿನ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ ತೋರಿಸು" ++msgstr "" ++"ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಅತ್ಯಂತ ಇತ್ತೀಚಿನ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ " ++"ತೋರಿಸು" + + #: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" +-msgstr "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಹಳೆಯ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ ತೋರಿಸು" ++msgstr "" ++"ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಹಳೆಯ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ ತೋರಿಸು" + + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "ಸ್ವಯಂವರದಿ ಮಾಡುವಿಕೆ ಸೌಲಭ್ಯವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ. ದಯವಿಟ್ಟು ನಿರ್ವಾಹಕ ಅಧಿಕಾರಗಳನ್ನು ಹೊಂದಿರುವ ಬಳಕೆದಾರರ\nಮೂಲಕ 'abrt-auto-reporting enabled' ಅನ್ನು ಚಲಾಯಿಸುವ ಮೂಲಕ ಇದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ\n" ++msgstr "" ++"ಸ್ವಯಂವರದಿ ಮಾಡುವಿಕೆ ಸೌಲಭ್ಯವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ. ದಯವಿಟ್ಟು ನಿರ್ವಾಹಕ " ++"ಅಧಿಕಾರಗಳನ್ನು ಹೊಂದಿರುವ ಬಳಕೆದಾರರ\n" ++"ಮೂಲಕ 'abrt-auto-reporting enabled' ಅನ್ನು ಚಲಾಯಿಸುವ ಮೂಲಕ ಇದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1727,12 +2024,16 @@ 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/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1767,7 +2068,8 @@ msgstr "ಮುಂದಿನ ಸಮಸ್ಯೆಗಾಗಿ ENTER ಅನ್ನು + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "--since ಆರ್ಗ್ಯುಮೆಂಟ್ ಇಲ್ಲದೆ, ಅಳಿಸಲಾದ ಎಲ್ಲಾ ಸಮಸ್ಯೆಗಳ ಮೇಲೆ ಪುನರಾವರ್ತಿಸುತ್ತದೆ." ++msgstr "" ++"--since ಆರ್ಗ್ಯುಮೆಂಟ್ ಇಲ್ಲದೆ, ಅಳಿಸಲಾದ ಎಲ್ಲಾ ಸಮಸ್ಯೆಗಳ ಮೇಲೆ ಪುನರಾವರ್ತಿಸುತ್ತದೆ." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +@@ -1777,7 +2079,9 @@ msgstr "ಈ ಸಮಯಮುದ್ರೆಯ ನಂತರ ಕಂಡುಬಂದ + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "ಕೋರ್ ಡಂಪ್ ಅನ್ನು ವಿಶ್ಲೇಷಣೆಗಾಗಿ ದೂರಸ್ಥ ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕಕ್ಕೆ ಕಳುಹಿಸು ಅಥವ ದೂರಸ್ಥ ವಿಶ್ಲೇಷಣೆಯು ವಿಫಲಗೊಂಡಲ್ಲಿ ಸ್ಥಳೀಯ ವಿಶ್ಲೇಷಣೆಯನ್ನು ನಿರ್ವಹಿಸು" ++msgstr "" ++"ಕೋರ್ ಡಂಪ್ ಅನ್ನು ವಿಶ್ಲೇಷಣೆಗಾಗಿ ದೂರಸ್ಥ ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕಕ್ಕೆ ಕಳುಹಿಸು ಅಥವ " ++"ದೂರಸ್ಥ ವಿಶ್ಲೇಷಣೆಯು ವಿಫಲಗೊಂಡಲ್ಲಿ ಸ್ಥಳೀಯ ವಿಶ್ಲೇಷಣೆಯನ್ನು ನಿರ್ವಹಿಸು" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1785,10 +2089,19 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "ಕೋರ್ ಡಂಪ್ ಅನ್ನು ಪೂರೈಕೆಗಗಣಕಕ್ಕೆ ಏರಿಸು, ಇದು ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಅನ್ನು ಉತ್ಪಾದಿಸುತ್ತದೆ ಮತ್ತು ಅದನ್ನು ಮರಳಿಸುತ್ತದೆ. ಬಳಕೆದಾರರು ತಮ್ಮ ಕೋರ್ ಡಂಪ್ ಅನ್ನು ಎಲ್ಲಿಯೂ ಏರಿಸಲು ಬಯಸದೇ ಇದ್ದಲ್ಲಿ ಸ್ಥಳೀಯ ವಿಶ್ಲೇಷಣೆಯನ್ನು ನಡೆಸಲಾಗುತ್ತದೆ. ದೂರಸ್ಥ ವಿಶ್ಲೇಷಣೆಯು ವಿಫಲಗೊಂಡಲ್ಲಿ ಸ್ಥಳೀಯ ವಿಶ್ಲೇಷಣೆಯನ್ನು ನಡೆಸಲಾಗುತ್ತದೆ. ಅನುಕೂಲಗಳು: ದೋಷನಿದಾನ ಮಾಹಿತಿಯನ್ನು ಇಳಿಸಿಕೊಳ್ಳುವ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ. ದೋಷನಿದಾನ ಮಾಹಿತಿಗಳ ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕದ ದತ್ತಸಂಚಯವು ಹೆಚ್ಚು ಪರಿಪೂರ್ಣವಾಗಿರುತ್ತವೆ. ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕವು ಉತ್ತಮ ಬ್ಯಾಕ್‌ಟ್ರೇಸ್‌ಗಳನ್ನು ಉತ್ಪಾದಿಸಬಲ್ಲದು. ಕೊರತೆಗಳು: ನೀವು ಏರಿಸುವ ಕೋರ್ ಡಂಪ್‌ನಲ್ಲಿ ನಿಮ್ಮ ಖಾಸಗಿ ಮಾಹಿತಿಯೂ ಸೇರಿದಂತೆ ಕುಸಿತಗೊಂಡ ಪ್ರೊಗ್ರಾಮ್‌ನ ಎಲ್ಲಾ ಮಾಹಿತಿಯು ಇರುತ್ತದೆ." ++msgstr "" ++"ಕೋರ್ ಡಂಪ್ ಅನ್ನು ಪೂರೈಕೆಗಗಣಕಕ್ಕೆ ಏರಿಸು, ಇದು ಬ್ಯಾಕ್‌ಟ್ರೇಸ್ ಅನ್ನು ಉತ್ಪಾದಿಸುತ್ತದೆ " ++"ಮತ್ತು ಅದನ್ನು ಮರಳಿಸುತ್ತದೆ. ಬಳಕೆದಾರರು ತಮ್ಮ ಕೋರ್ ಡಂಪ್ ಅನ್ನು ಎಲ್ಲಿಯೂ ಏರಿಸಲು " ++"ಬಯಸದೇ ಇದ್ದಲ್ಲಿ ಸ್ಥಳೀಯ ವಿಶ್ಲೇಷಣೆಯನ್ನು ನಡೆಸಲಾಗುತ್ತದೆ. ದೂರಸ್ಥ ವಿಶ್ಲೇಷಣೆಯು " ++"ವಿಫಲಗೊಂಡಲ್ಲಿ ಸ್ಥಳೀಯ ವಿಶ್ಲೇಷಣೆಯನ್ನು ನಡೆಸಲಾಗುತ್ತದೆ. ಅನುಕೂಲಗಳು: ದೋಷನಿದಾನ " ++"ಮಾಹಿತಿಯನ್ನು ಇಳಿಸಿಕೊಳ್ಳುವ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ. ದೋಷನಿದಾನ ಮಾಹಿತಿಗಳ ರಿಟ್ರೇಸ್ " ++"ಪೂರೈಕೆಗಣಕದ ದತ್ತಸಂಚಯವು ಹೆಚ್ಚು ಪರಿಪೂರ್ಣವಾಗಿರುತ್ತವೆ. ರಿಟ್ರೇಸ್ ಪೂರೈಕೆಗಣಕವು ಉತ್ತಮ " ++"ಬ್ಯಾಕ್‌ಟ್ರೇಸ್‌ಗಳನ್ನು ಉತ್ಪಾದಿಸಬಲ್ಲದು. ಕೊರತೆಗಳು: ನೀವು ಏರಿಸುವ ಕೋರ್ ಡಂಪ್‌ನಲ್ಲಿ " ++"ನಿಮ್ಮ ಖಾಸಗಿ ಮಾಹಿತಿಯೂ ಸೇರಿದಂತೆ ಕುಸಿತಗೊಂಡ ಪ್ರೊಗ್ರಾಮ್‌ನ ಎಲ್ಲಾ ಮಾಹಿತಿಯು ಇರುತ್ತದೆ." ++"" + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1797,13 +2110,17 @@ msgstr "VM ಕೋರ್ ಅನ್ನು ವಿಶ್ಲೇಷಿಸಿ" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "ಕರ್ನಲ್ debuginfo(s) ಅನ್ನು ಅನುಸ್ಥಾಪಿಸಿ, ಕರ್ನಲ್ ದಿನಚರಿಯನ್ನು ಮತ್ತು oops ಸಂದೇಶವನ್ನು ಉತ್ಪಾದಿಸಿ" ++msgstr "" ++"ಕರ್ನಲ್ debuginfo(s) ಅನ್ನು ಅನುಸ್ಥಾಪಿಸಿ, ಕರ್ನಲ್ ದಿನಚರಿಯನ್ನು ಮತ್ತು oops " ++"ಸಂದೇಶವನ್ನು ಉತ್ಪಾದಿಸಿ" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "ಕರ್ನಲ್ ದೋಷನಿದಾನಮಾಹಿತಿ ಪ್ಯಾಕೇಜುಗಳ ಅಗತ್ಯವಿರುತ್ತದೆ, ಇದಕ್ಕೆ ಬಹಳ ಸಮಯ ಹಿಡಿಯಬಹುದು ಮತ್ತು ಡಿಸ್ಕಿನ ಜಾಗವೂ ಸಹ ಬಳಸಲ್ಪಡಬಹುದು." ++msgstr "" ++"ಕರ್ನಲ್ ದೋಷನಿದಾನಮಾಹಿತಿ ಪ್ಯಾಕೇಜುಗಳ ಅಗತ್ಯವಿರುತ್ತದೆ, ಇದಕ್ಕೆ ಬಹಳ ಸಮಯ ಹಿಡಿಯಬಹುದು " ++"ಮತ್ತು ಡಿಸ್ಕಿನ ಜಾಗವೂ ಸಹ ಬಳಸಲ್ಪಡಬಹುದು." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1817,7 +2134,9 @@ msgstr "ಅನ್ವಯದ GConf ಕೋಶದ ಸಂರಚನೆಯನ್ನು + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "gconftool-2 --recursive-list /apps/executable ಅನ್ನು ಪುನರಾವರ್ತಿತವಾಗಿ ಚಲಾಯಿಸುತ್ತದೆ ಮತ್ತು ಅದನ್ನು 'gconf_subtree' ಅಂಶವಾಗಿ ಉಳಿಸುತ್ತದೆ." ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable ಅನ್ನು ಪುನರಾವರ್ತಿತವಾಗಿ " ++"ಚಲಾಯಿಸುತ್ತದೆ ಮತ್ತು ಅದನ್ನು 'gconf_subtree' ಅಂಶವಾಗಿ ಉಳಿಸುತ್ತದೆ." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1831,7 +2150,9 @@ 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" +@@ -1843,9 +2164,11 @@ msgstr "ನಿಮ್ಮ ನೆಲೆ ಕೋಶದಿಂದ .vimrc ಮತ್ತ + + #: ../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 "ನಿಮ್ಮ ನೆಲೆ ಕೋಶದಲ್ಲಿ .vimrc ಮತ್ತು .gvimrc ಇದೆಯೆ ಎಂದು ಪರೀಕ್ಷಿಸುತ್ತದೆ ಮತ್ತು ಅವನ್ನು ಅನುಕ್ರಮವಾಗಿ user_vimrc ಮತ್ತು user_gvimrcಯಲ್ಲಿ ಉಳಿಸಿಡುತ್ತದೆ." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"ನಿಮ್ಮ ನೆಲೆ ಕೋಶದಲ್ಲಿ .vimrc ಮತ್ತು .gvimrc ಇದೆಯೆ ಎಂದು ಪರೀಕ್ಷಿಸುತ್ತದೆ ಮತ್ತು " ++"ಅವನ್ನು ಅನುಕ್ರಮವಾಗಿ user_vimrc ಮತ್ತು user_gvimrcಯಲ್ಲಿ ಉಳಿಸಿಡುತ್ತದೆ." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/ko.po b/po/ko.po +index b8769f9..3311572 100644 +--- a/po/ko.po ++++ b/po/ko.po +@@ -10,17 +10,19 @@ + # , 2011-2012, 2013 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-16 07:58+0000\n" +-"Last-Translator: eukim \n" +-"Language-Team: Korean (http://www.transifex.com/projects/p/fedora-abrt/language/ko/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-16 02:58-0500\n" ++"Last-Translator: eukim \n" ++"Language-Team: Korean (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ko/)\n" + "Language: ko\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -35,7 +37,8 @@ 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" +-msgstr "전송된 보고서에는 어떤 중요한 보안 데이터도 들어 있지 않습니다. 따라서 다음번에는 어떠한 추가적 조치를 할 필요가 없습니다. \n" ++msgstr "" ++"전송된 보고서에는 어떤 중요한 보안 데이터도 들어 있지 않습니다. 따라서 다음번에는 어떠한 추가적 조치를 할 필요가 없습니다. \n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +@@ -93,10 +96,16 @@ msgstr "통지를 종료할 수 없음: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "특정 문제에 대한 알림을 무음으로 합니다. 이 문제에 대한 알림 팝업이 표시되지 않지만, ABRT가 이를 감지하여 ABRT GUI에 보고할 수 있습니다.\n\n계속 진행하시겠습니까?" ++msgstr "" ++"특정 문제에 대한 알림을 무음으로 합니다. 이 문제에 대한 알림 팝업이 표시되지 않지만, ABRT가 이를 감지하여 ABRT GUI에 " ++"보고할 수 있습니다.\n" ++"\n" ++"계속 진행하시겠습니까?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -109,7 +118,8 @@ msgstr "ABRT가 감지한 문제를 사용자에게 통지하기 위한 통지 + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "김은주\n오현석" ++msgstr "김은주\n" ++"오현석" + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -132,6 +142,7 @@ msgid "Ignore forever" + msgstr "영원히 무시" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "열기 " +@@ -146,6 +157,7 @@ msgstr "이미 알려진 문제가 발생했습니다 " + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "보고 " +@@ -195,7 +207,9 @@ msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nABRT가 새로운 문제를 감지할 경우 사용자에게 통지하는 애플릿\n" ++msgstr "& [-v] [DIR]...\n" ++"\n" ++"ABRT가 새로운 문제를 감지할 경우 사용자에게 통지하는 애플릿\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -216,11 +230,13 @@ msgstr "자동 단축형 보고서 " + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "코어 덤프 파일은 시간 및 공간을 많이 사용하는 작업인 스택 트레이스 생성에 필요합니다. ABRT는 코어덤프에서 스택 트레이스를 생성하는 서비스를 제공하지만 이 서비스에 코어 덤프를 업로드해야 합니다. 이 옵션을 사용하지 않으면 ABRT는 묻지 않고 코어 덤프를 업로드합니다. " ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"코어 덤프 파일은 시간 및 공간을 많이 사용하는 작업인 스택 트레이스 생성에 필요합니다. ABRT는 코어덤프에서 스택 트레이스를 생성하는 " ++"서비스를 제공하지만 이 서비스에 코어 덤프를 업로드해야 합니다. 이 옵션을 사용하지 않으면 ABRT는 묻지 않고 코어 덤프를 업로드합니다." ++" " + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -228,22 +244,28 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT는 문제 데이터를 디렉토리에 저장합니다. ABRT가 쓰기 가능한 디렉토리를 필요로 할 때 마다 디렉토리는 시스템에서 사용자의 홈 디렉토리로 이동합니다. 이 옵션을 사용하지 않으면 ABRT는 묻지 않고 문제 디렉토리를 이동합니다." ++msgstr "" ++"ABRT는 문제 데이터를 디렉토리에 저장합니다. ABRT가 쓰기 가능한 디렉토리를 필요로 할 때 마다 디렉토리는 시스템에서 사용자의 홈 " ++"디렉토리로 이동합니다. 이 옵션을 사용하지 않으면 ABRT는 묻지 않고 문제 디렉토리를 이동합니다." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport는 간결하게 익명으로 문제를 설명하는 것입니다. ABRT는 uReport를 사용하여 전체 중복을 신속하게 감지합니다. 기본 설정에서 uReport는 보고 절차 시작에 전송됩니다. 이 옵션을 사용하면 문제가 감지된 후 바로 uReport가 자동으로 전송됩니다. " ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport는 간결하게 익명으로 문제를 설명하는 것입니다. ABRT는 uReport를 사용하여 전체 중복을 신속하게 감지합니다. 기본 " ++"설정에서 uReport는 보고 절차 시작에 전송됩니다. 이 옵션을 사용하면 문제가 감지된 후 바로 uReport가 자동으로 전송됩니다. " + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "이 옵션을 사용하면 문제 알림 팝업에 있는 보고서 버튼을 클릭하여 시작된 보고 절차가 uReport 전송 후 중단됩니다. 기본값 문제 브라우저를 사용하여 완전한 보고서를 작성할 수 있습니다." ++msgstr "" ++"이 옵션을 사용하면 문제 알림 팝업에 있는 보고서 버튼을 클릭하여 시작된 보고 절차가 uReport 전송 후 중단됩니다. 기본값 문제 " ++"브라우저를 사용하여 완전한 보고서를 작성할 수 있습니다." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" +@@ -274,7 +296,9 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "컴퓨터 종료시 또는 사용자 로그 아웃 시에 완료하지 않은 문제가 감지되었습니다. 정확한 문제 보고서를 제출하기 위해 ABRT는 이러한 문제에 대해 보고 허용하지 않습니다." ++msgstr "" ++"컴퓨터 종료시 또는 사용자 로그 아웃 시에 완료하지 않은 문제가 감지되었습니다. 정확한 문제 보고서를 제출하기 위해 ABRT는 이러한 " ++"문제에 대해 보고 허용하지 않습니다." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -306,7 +330,9 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\n패키지 데이터베이스를 쿼리하고 패키지 및 구성 요소 이름을 저장합니다 " ++msgstr "& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"패키지 데이터베이스를 쿼리하고 패키지 및 구성 요소 이름을 저장합니다 " + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -409,11 +435,14 @@ msgstr "이 프로그램은 root로 실행해야 합니다." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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는 이 문제를 전송하는 것을 허용하지 않습니다. 시간이 허락하여 이 문제를 해결하기 위해 개발자에게 도움을 주려면 개발자에게 직접 연락을 취하십시오." ++"detected while computer is shutting down or user is logging out. In order to " ++"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는 이 문제를 전송하는 것을 허용하지 않습니다. 시간이 허락하여 이 문제를 해결하기 위해 개발자에게 " ++"도움을 주려면 개발자에게 직접 연락을 취하십시오." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -450,7 +479,15 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nUPLOAD_DIRECTORY를 확인하고 abrt.conf에 지정된 저장된 아카이브를 DumpLocation에 풀어놓습니다 \n\n\nUPLOAD_DIRECTORY가 지정되어 있지 않은 경우, abrt.conf에서 \nWatchCrashdumpArchiveDir 옵션 값을 사용합니다 " ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"UPLOAD_DIRECTORY를 확인하고 abrt.conf에 지정된 저장된 아카이브를 DumpLocation에 풀어놓습니다 \n" ++"\n" ++"\n" ++"UPLOAD_DIRECTORY가 지정되어 있지 않은 경우, abrt.conf에서 \n" ++"WatchCrashdumpArchiveDir 옵션 값을 사용합니다 " + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -464,19 +501,73 @@ msgstr "동시 작업자 수 입니다. 기본값은 다음과 같습니다 " + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB 단위의 최대 캐시 용량입니다. 기본값은 다음과 같습니다 " + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "잘못된 인수 개수 " + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "알 수 없는 옵션 값: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++#, fuzzy ++msgid "SSL Client Authenticated auto reporting" ++msgstr "자동 단축형 보고서 " ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -487,7 +578,14 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "사용법: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - 상세 설명\n -d - 업로드된 아카이브 삭제\n ABRT_SPOOL_DIR - 업로드된 유효한 아카이브가 압축 해제될 디렉토리\n UPLOAD_DIR - 업로드된 아카이브가 저장될 디렉토리\n FILENAME - 업로드된 아카이브 파일 이름 \n" ++msgstr "" ++"사용법: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - 상세 설명\n" ++" -d - 업로드된 아카이브 삭제\n" ++" ABRT_SPOOL_DIR - 업로드된 유효한 아카이브가 압축 해제될 디렉토리\n" ++" UPLOAD_DIR - 업로드된 아카이브가 저장될 디렉토리\n" ++" FILENAME - 업로드된 아카이브 파일 이름 \n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -608,11 +706,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nC/C++ 백트레이스 분석, 백트레이스 등급, 중복 해시를 생성하고\n문제 디렉토리 DIR에 있는 크래시 함수를 식별합니다 " ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"C/C++ 백트레이스 분석, 백트레이스 등급, 중복 해시를 생성하고\n" ++"문제 디렉토리 DIR에 있는 크래시 함수를 식별합니다 " + ++#. + #. * 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" +@@ -627,7 +731,9 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\n문제 디렉토리 DIR에 있는 코어 덤프의 UUID를 계산 및 저장합니다 " ++msgstr "& [-v] -d DIR\n" ++"\n" ++"문제 디렉토리 DIR에 있는 코어 덤프의 UUID를 계산 및 저장합니다 " + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -653,14 +759,18 @@ 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" ++"\n" ++"oops 문제 디렉토리 DIR의 UUID와 DUPHASH를 계산 및 저장합니다 " + + #: ../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" ++"\n" ++"xorg 문제 디렉토리 DIR의 UUID와 DUPHASH를 계산 및 저장합니다 " + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -687,10 +797,10 @@ msgid "Extracting the oops text from core" + msgstr "코어에서 oops 텍스트를 추출합니다 " + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "{0}을(를) 처리할 수 없습니다:\n" + "{1}" +-msgstr "{0}을(를) 처리할 수 없습니다:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -704,14 +814,17 @@ msgstr "Oops 텍스트가 성공적으로 추출되었습니다 " + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "커널 로그에 하드웨어 관련 오류가 발견된 것으로 표시됩니다.\n이는 소프트웨어 문제는 아닌것 같습니다.\n" ++msgstr "커널 로그에 하드웨어 관련 오류가 발견된 것으로 표시됩니다.\n" ++"이는 소프트웨어 문제는 아닌것 같습니다.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\n문제 디렉토리 DIR에 있는 코어덤프를 분석, 백트레이스를 생성 및 저장합니다 " ++msgstr "& [options] -d DIR\n" ++"\n" ++"문제 디렉토리 DIR에 있는 코어덤프를 분석, 백트레이스를 생성 및 저장합니다 " + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -723,6 +836,7 @@ 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" +@@ -733,7 +847,9 @@ 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" ++"\n" ++"코어 덤프 및 해당 바이너리에서 코어덤프급 백트레이스를 생성합니다" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -761,7 +877,8 @@ msgstr "사용자 명령을 종료합니다 " + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -771,13 +888,32 @@ msgid "" + " -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" ++" --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" +-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" ++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에 있는\n" ++"BUILD_IDS_FILE에 나열된 모든 빌드 ID의 디버그 정보를 설치합니다.\n" ++"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}" +@@ -808,21 +944,30 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "코어 덤프를 업로드해도 되겠습니까? (민감한 데이터가 포함되어 있을 수 있습니다). '아니요'로 대답할 경우 스택 추적이 로컬에 생성됩니다. (이는 거대한 용량의 데이터를 다운로드할 수 있습니다)." ++msgstr "" ++"코어 덤프를 업로드해도 되겠습니까? (민감한 데이터가 포함되어 있을 수 있습니다). '아니요'로 대답할 경우 스택 추적이 로컬에 " ++"생성됩니다. (이는 거대한 용량의 데이터를 다운로드할 수 있습니다)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"스택 추적을 로컬에 생성하시겠습니까? (이는 거대한 용량의 데이터를 다운로드할 수 있으나 스택 추적 없이 보고를 계속 진행할 수 " ++"없습니다)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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크기가 SIZE 미만이 될 때 까지 DIR의 문제 디렉토리 (-d) 또는 파일 (-f)을 삭제합니다. \nFILE은 보존됩니다 (절대 삭제하지 않습니다). " ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"크기가 SIZE 미만이 될 때 까지 DIR의 문제 디렉토리 (-d) 또는 파일 (-f)을 삭제합니다. \n" ++"FILE은 보존됩니다 (절대 삭제하지 않습니다). " + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -991,7 +1136,10 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\n로그 파일 FILE을 확인하고 로그 파일이 증가하거나 교체되면 PROG를 실행합니다" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"로그 파일 FILE을 확인하고 로그 파일이 증가하거나 교체되면 PROG를 실행합니다" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1026,7 +1174,9 @@ 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" ++"\n" ++"FILE (또는 표준 입력)에서 oops를 추출합니다" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1034,6 +1184,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "발견된 모든 oops에 대해 DIR에 새로운 문제 디렉토리를 생성 " +@@ -1076,7 +1227,9 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nFILE (또는 표준 입력)에서 Xorg 크래시를 추출합니다" ++msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"FILE (또는 표준 입력)에서 Xorg 크래시를 추출합니다" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1094,6 +1247,7 @@ 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 +@@ -1116,10 +1270,10 @@ msgstr "%d 길이의 HTTP 헤더 전송 실패: NSS 오류 %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" +-msgstr "서버로 부터 예상치 못한 HTTP 응답: %d\n%s " ++msgstr "서버로 부터 예상치 못한 HTTP 응답: %d\n" ++"%s " + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1135,7 +1289,8 @@ msgstr "서버로 부터 잘못된 응답: HTTP 메세지 내용이 없음. " + 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 "Retrace 서버는 패키지 '%s.%s'를 처리할 수 없습니다.\n" ++"이는 공식적인 '%s' 리포지터리입니까?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1253,10 +1408,10 @@ msgstr "Retrace 작업 시작 " + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "작업 Id: %s\n작업 암호: %s\n" ++msgstr "작업 Id: %s\n" ++"작업 암호: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1264,10 +1419,10 @@ msgstr "서버로 부터의 잘못된 응답: X-Task-Status가 없음. " + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "작업 상태: %s\n" + "%s\n" +-msgstr "작업 상태: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1344,7 +1499,9 @@ msgstr "서버 상의 작업 암호 " + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [options]\n동작: create/status/backtrace/log/batch/exploitable" ++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 +@@ -1381,9 +1538,11 @@ msgstr "debuginfo 패키지를 다운로드하고 GDB를 사용하여 로컬 백 + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "debuginfo 패키지를 다운로드해야 합니다. 이는 많은 시간이 소요되며 많은 디스크 공간을 차지합니다. 하지만 RetraceServer와 달리 원격 컴퓨터에 코어 덤프를 전송하지 않습니다. " ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"debuginfo 패키지를 다운로드해야 합니다. 이는 많은 시간이 소요되며 많은 디스크 공간을 차지합니다. 하지만 " ++"RetraceServer와 달리 원격 컴퓨터에 코어 덤프를 전송하지 않습니다. " + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1391,12 +1550,15 @@ msgstr "분석을 위해 코어 덤프를 원격 Retrace 서버로 전송 " + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "코어 덤프를 서버에 업로드하려면 백트레이스를 생성하고 이를 반환합니다. 장점: debuginfo를 다운로드할 필요가 없습니다. Retrace 서버의 debuginfo 데이터베이스는 보다 완벽합니다. Retrace 서버는 보다 나은 백트레이스를 생성합니다. 단점: 업로드한 코어 덤프에는 (존재할 경우) 개인 데이터를 포함하여 충돌된 프로그램에서의 모든 데이터가 포함되어 있습니다. " ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"코어 덤프를 서버에 업로드하려면 백트레이스를 생성하고 이를 반환합니다. 장점: debuginfo를 다운로드할 필요가 없습니다. " ++"Retrace 서버의 debuginfo 데이터베이스는 보다 완벽합니다. Retrace 서버는 보다 나은 백트레이스를 생성합니다. 단점: " ++"업로드한 코어 덤프에는 (존재할 경우) 개인 데이터를 포함하여 충돌된 프로그램에서의 모든 데이터가 포함되어 있습니다. " + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1421,10 +1583,12 @@ msgstr "비보안 연결을 사용할 지에 대한 여부 " + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "비보안 연결을 허용하기 위해 \"insecure\"라고 씁니다 <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"비보안 연결을 허용하기 위해 \"insecure\"라고 씁니다 <a href=\"https://fedorahosted.org/" ++"abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1438,7 +1602,9 @@ msgstr "~/.xsession-errors 파일에서 해당 행을 저장합니다 " + 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." +@@ -1596,7 +1762,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nbodhi 서버에서 업데이트 검색" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"bodhi 서버에서 업데이트 검색" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1614,16 +1783,20 @@ msgstr "패키지의 로컬 버전은 사용 가능한 업데이트 보다 새 + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "문제를 해결할 수 있는 업데이트가 존재합니다. 다음을 실행하여 이를 설치할 수 있습니다: %s. 버그 보고를 계속 진행하시겠습니까?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"문제를 해결할 수 있는 업데이트가 존재합니다. 다음을 실행하여 이를 설치할 수 있습니다: %s. 버그 보고를 계속 진행하시겠습니까?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + 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" ++"\n" ++"파일을 스캔하여 분리 된 oops 메시지를 찾습니다. 메시지 출력 또는 삭제가 가능합니다." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1700,9 +1873,12 @@ msgstr "지정된 타임 스탬프보다 오래된 문제만 나열합니다 " + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "자동보고 기능은 비활성화되어 있습니다. root 권한을 가진 사용자로\n'abrt-auto-reporting enabled'를 실행하여 이를 활성화합니다\n" ++msgstr "" ++"자동보고 기능은 비활성화되어 있습니다. root 권한을 가진 사용자로\n" ++"'abrt-auto-reporting enabled'를 실행하여 이를 활성화합니다\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1732,7 +1908,8 @@ 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/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1785,10 +1962,14 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "코어 덤프를 서버에 업로드하려면 백 트레이스를 생성하고 이를 반환합니다. 사용자가 코어 덤프를 아무곳에 업로드하고자 하지 않을 경우 로컬 분석이 수행됩니다. 원격 분석이 실패해도 로컬 분석이 실행됩니다.장점: debuginfo를 다운로드할 필요가 없습니다. Retrace 서버의 debuginfo 데이터베이스는 보다 완벽합니다. Retrace 서버는 보다 나은 백트레이스를 생성합니다. 단점: 업로드한 코어 덤프에는 (존재할 경우) 개인 데이터를 포함하여 손상된 프로그램에서의 모든 데이터가 포함되어 있습니다. " ++msgstr "" ++"코어 덤프를 서버에 업로드하려면 백 트레이스를 생성하고 이를 반환합니다. 사용자가 코어 덤프를 아무곳에 업로드하고자 하지 않을 경우 로컬 " ++"분석이 수행됩니다. 원격 분석이 실패해도 로컬 분석이 실행됩니다.장점: debuginfo를 다운로드할 필요가 없습니다. Retrace " ++"서버의 debuginfo 데이터베이스는 보다 완벽합니다. Retrace 서버는 보다 나은 백트레이스를 생성합니다. 단점: 업로드한 코어 " ++"덤프에는 (존재할 경우) 개인 데이터를 포함하여 손상된 프로그램에서의 모든 데이터가 포함되어 있습니다. " + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1817,7 +1998,9 @@ msgstr "애플리케이션의 GConf 디렉토리에서 설정 저장 " + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "gconftool-2 --recursive-list /apps/executable을 실행하고 이를 'gconf_subtree'로 저장합니다. " ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable을 실행하고 이를 'gconf_subtree'로 " ++"저장합니다. " + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1831,7 +2014,9 @@ 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" +@@ -1843,9 +2028,10 @@ msgstr "홈 디렉토리에서 .vimrc 및 .gvimrc를 저장합니다 " + + #: ../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 "홈 디렉토리에 .vimrc 및 .gvimrc가 있는지 확인하고 이를 각각 user_vimrc 및 user_gvimrc로 저장합니다. " ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"홈 디렉토리에 .vimrc 및 .gvimrc가 있는지 확인하고 이를 각각 user_vimrc 및 user_gvimrc로 저장합니다. " + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/ks.po b/po/ks.po +index fe93986..8322c3a 100644 +--- a/po/ks.po ++++ b/po/ks.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Kashmiri (http://www.transifex.com/projects/p/fedora-abrt/language/ks/)\n" ++"Language-Team: Kashmiri (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ks/)\n" ++"Language: ks\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: ks\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/ku.po b/po/ku.po +index 4c9eb74..d627810 100644 +--- a/po/ku.po ++++ b/po/ku.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Kurdish (http://www.transifex.com/projects/p/fedora-abrt/language/ku/)\n" ++"Language-Team: Kurdish (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ku/)\n" ++"Language: ku\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: ku\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/ky.po b/po/ky.po +index 77b08c4..d373be0 100644 +--- a/po/ky.po ++++ b/po/ky.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Kirgyz (http://www.transifex.com/projects/p/fedora-abrt/language/ky/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Kirgyz (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ky/)\n" + "Language: ky\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/la.po b/po/la.po +index 0e2368f..ede051b 100644 +--- a/po/la.po ++++ b/po/la.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Latin (http://www.transifex.com/projects/p/fedora-abrt/language/la/)\n" ++"Language-Team: Latin (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/la/)\n" ++"Language: la\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: la\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/lo.po b/po/lo.po +index 11b30a1..7b03dc8 100644 +--- a/po/lo.po ++++ b/po/lo.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Lao (http://www.transifex.com/projects/p/fedora-abrt/language/lo/)\n" ++"Language-Team: Lao (http://www.transifex.com/projects/p/fedora-abrt/language/" ++"lo/)\n" ++"Language: lo\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: lo\n" + "Plural-Forms: nplurals=1; plural=0;\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/lt.po b/po/lt.po +index 93af54e..1356747 100644 +--- a/po/lt.po ++++ b/po/lt.po +@@ -6,17 +6,20 @@ + # aurisc4 , 2013 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Lithuanian (http://www.transifex.com/projects/p/fedora-abrt/language/lt/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Lithuanian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/lt/)\n" + "Language: lt\n" +-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " ++"(n%100<10 || n%100>=20) ? 1 : 2);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -71,10 +74,11 @@ msgstr "Aptikta problema" + msgid "A problem in the %s package has been detected" + msgstr "Aptikta problema %s pakete" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s ir diagnostikos duomenys buvo pateikti" + + #: ../src/applet/applet.c:589 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 +@@ -89,7 +93,9 @@ msgstr "Nepavyksta užverti pranešimo: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -101,11 +107,14 @@ msgstr "Įspėjimas" + #: ../src/applet/applet.c:834 + 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" ++msgstr "" ++"Pranešimų vietos įtaisas, kuris praneša naudotojams apie ABRT aptiktas " ++"problemas" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "išvertė:\nAurimas Černius " ++msgstr "išvertė:\n" ++"Aurimas Černius " + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -128,6 +137,7 @@ msgid "Ignore forever" + msgstr "Visada nepaisyti" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Atverti" +@@ -142,6 +152,7 @@ msgstr "Kilo žinoma problema" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Pranešti" +@@ -184,14 +195,19 @@ msgstr "Nepavyksta įjungti neblokuojančios veiksenos gio kanalui: %s" + 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" ++msgstr "" ++"Nepavyko prisijungti prie seanso valdyklės: „%s“, pranešimas gali pasirodyti " ++"kitą kartą prisijungus" + + #: ../src/applet/applet.c:1635 + 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" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Įtaisas, kuris praneša naudotojui, kai ABRT aptinka naują problemą\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -212,10 +228,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +244,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -302,7 +317,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c KONFFAILAS] -d KAT\n\nUžklausti paketų duomenų bazės ir įrašyti paketo ir komponento pavadinimus" ++msgstr "" ++"& [-v] [-c KONFFAILAS] -d KAT\n" ++"\n" ++"Užklausti paketų duomenų bazės ir įrašyti paketo ir komponento pavadinimus" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -365,7 +383,9 @@ msgstr "Nepavyksta prieiti problemos pakeitimui" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Nepavyko pakeisti aplanko savininko. Daugiau informacijos rasite sistemos žurnaluose." ++msgstr "" ++"Nepavyko pakeisti aplanko savininko. Daugiau informacijos rasite sistemos " ++"žurnaluose." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -391,7 +411,9 @@ msgstr "Nepavyksta ištrinti elemento „%s“ iš problemų katalogo „%s“" + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "Vardas „%s“ buvo prarastas, patikrinkite, ar neveikia kita tarnyba su šiuo vardu.\n" ++msgstr "" ++"Vardas „%s“ buvo prarastas, patikrinkite, ar neveikia kita tarnyba su šiuo " ++"vardu.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -405,11 +427,16 @@ msgstr "Šią programą reikia paleisti root naudotojo teisėmis." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "Problemos duomenys nepilni. Taip dažniausiai atsitinka, kai problema yra aptikta išjungiant kompiuterį arba naudotojui atsijungiant. Siekiant pateikti vertingus pranešimus apie klaidas, ABRT jums neleis pranešti apie šią klaidą. Jei turite laiko ir norite padėti kūrėjams išspręsti šią problemą, susisiekite su jais tiesiogiai." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"Problemos duomenys nepilni. Taip dažniausiai atsitinka, kai problema yra " ++"aptikta išjungiant kompiuterį arba naudotojui atsijungiant. Siekiant " ++"pateikti vertingus pranešimus apie klaidas, ABRT jums neleis pranešti apie " ++"šią klaidą. Jei turite laiko ir norite padėti kūrėjams išspręsti šią " ++"problemą, susisiekite su jais tiesiogiai." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -446,7 +473,15 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [NUSIUNTIMO_KATALOGAS]\n" ++"\n" ++"\n" ++"Stebi NUSIUNTIMO_KATALOGĄ ir išpakuoja atsiunčiamus archyvus į abrt.conf\n" ++"nurodytą DumpLocation\n" ++"\n" ++"Jei NUSIUNTIMO_KATALOGAS nenurodytas, naudojamas abrt.conf parametras\n" ++"WatchCrashdumpArchiveDir" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -460,17 +495,73 @@ msgstr "Darbininkų skaičius. Numatyta " + msgid "Maximal cache size in MiB. Default is " + msgstr "Didžiausias podėlio dydis MiB. Numatyta " + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " ++msgstr "& [ " ++ ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:251 ++msgid "Invalid number of arguments" ++msgstr "Neteisingas argumentų skaičius" ++ ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" ++msgstr "Nežinoma parametro vertė: „%s“\n" ++ ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" + msgstr "" + + #: ../src/daemon/abrt-handle-upload.in:69 +@@ -590,7 +681,9 @@ msgstr "Nepavyko sukurti laikinojo failo „%s“" + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-msgstr "Nepavyko įrašyti į „%s“. Problema „%s“ nebus pašalinta iš nepaisomų problemų „%s“" ++msgstr "" ++"Nepavyko įrašyti į „%s“. Problema „%s“ nebus pašalinta iš nepaisomų problemų " ++"„%s“" + + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 +@@ -604,11 +697,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [parinktys] -d KAT\n\nAnalizuoja C/C++ pėdsaką, generuoja dublikato maišos reikšmę, pėdsako\nreitingą ir identifikuoja lūžusią funkciją problemos kataloge KAT" ++msgstr "" ++"& [parinktys] -d KAT\n" ++"\n" ++"Analizuoja C/C++ pėdsaką, generuoja dublikato maišos reikšmę, pėdsako\n" ++"reitingą ir identifikuoja lūžusią funkciją problemos kataloge KAT" + ++#. + #. * 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" +@@ -623,7 +722,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d KAT\n\nSuskaičiuoja ir įrašo pagrindo išklotinės UUID į problemos katalogą KAT" ++msgstr "" ++"& [-v] -d KAT\n" ++"\n" ++"Suskaičiuoja ir įrašo pagrindo išklotinės UUID į problemos katalogą KAT" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -649,14 +751,20 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d KAT\n\nSuskaičiuoja ir įrašo oops problemos katalogo KAT UUID ir DUPHASH" ++msgstr "" ++"& [-v] -d KAT\n" ++"\n" ++"Suskaičiuoja ir įrašo oops problemos katalogo KAT UUID ir DUPHASH" + + #: ../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 KAT\n\nSuskaičiuoja ir įrašo xorg problemos katalogo KAT UUID ir DUPHASH" ++msgstr "" ++"& [-v] -d KAT\n" ++"\n" ++"Suskaičiuoja ir įrašo xorg problemos katalogo KAT UUID ir DUPHASH" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -668,7 +776,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d KAT\n\nSuskaičiuoja ir įrašo python lūžimų išklotinių UUID ir DUPHASH" ++msgstr "" ++"& [-v] -d KAT\n" ++"\n" ++"Suskaičiuoja ir įrašo python lūžimų išklotinių UUID ir DUPHASH" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -683,10 +794,10 @@ msgid "Extracting the oops text from core" + msgstr "Išgaunamas oops tekstas iš išklotinės" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "Nepavyksta apdoroti {0}:\n" + "{1}" +-msgstr "Nepavyksta apdoroti {0}:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -707,7 +818,11 @@ msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [parinktys] -d KAT\n\nAnalizuoja pagrindo išklotinę problemos kataloge KAT, generuoja ir įrašo pėdsaką" ++msgstr "" ++"& [parinktys] -d KAT\n" ++"\n" ++"Analizuoja pagrindo išklotinę problemos kataloge KAT, generuoja ir įrašo " ++"pėdsaką" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -719,6 +834,7 @@ 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" +@@ -729,7 +845,10 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d KAT\n\nSukuria išklotinės lygio pėdsaką iš išklotinės ar atitinkamos programos" ++msgstr "" ++"& [-v] [-r] -d KAT\n" ++"\n" ++"Sukuria išklotinės lygio pėdsaką iš išklotinės ar atitinkamos programos" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -753,11 +872,13 @@ msgstr "Klaida: %s" + msgid "Exiting on user command" + msgstr "Išeinamas dėl naudotojo komandos" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:88 + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,13 +888,33 @@ msgid "" + " -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" ++" --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" + msgstr "" ++"Naudojimas: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Įdiegia derinimo informaciją visiems build-ids iš BUILD_IDS_FILE\n" ++"į CACHEDIR, naudojant TMPDIR kaip laikinąją vietą.\n" ++"Seni failai iš CACHEDIR yra trinami iki jo dydis yra mažesnis nei SIZE.\n" ++"\n" ++" -v Būti išsamiu\n" ++" -y Neinteraktyvi veiksena, atakyti „Taip“ į visus klausimus\n" ++" --ids Numatyta: build_ids\n" ++" --tmpdir Numatyta: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Numatyta: /var/cache/abrt-di\n" ++" --size_mb Numatyta: 4096\n" ++" -e,--exact Parsiųsti tik nurodytus failus\n" ++" --repo Šablonas, naudojamas ieškant saugyklose.\n" ++" Numatyta: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -781,15 +922,19 @@ msgstr "Nepavyko atverti {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Pagrindo išklotinės nurodo {0} derinimo informacijos failus, {1} iš jų neįdiegti" ++msgstr "" ++"Pagrindo išklotinės nurodo {0} derinimo informacijos failus, {1} iš jų " ++"neįdiegti" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} neįdiegtų derinimo informacijos failų" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Trūksta prašomo failo: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -804,21 +949,32 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Nusiųsti pagrindo išklotinę? (Ji gali turėti asmeninių duomenų). Jei atsakysite „Ne“, steko pėdsakas bus generuojamas vietoje. (Tai gali parsiųsti daug duomenų)." ++msgstr "" ++"Nusiųsti pagrindo išklotinę? (Ji gali turėti asmeninių duomenų). Jei " ++"atsakysite „Ne“, steko pėdsakas bus generuojamas vietoje. (Tai gali " ++"parsiųsti daug duomenų)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "Ar norite generuoti steko pėdsaką vietoje? (Tai gali parsiųsti daug duomenų, bet pranešimo negalima tęsti be steko pėdsako)." ++msgstr "" ++"Ar norite generuoti steko pėdsaką vietoje? (Tai gali parsiųsti daug duomenų, " ++"bet pranešimo negalima tęsti be steko pėdsako)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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 DYDIS:KAT]... [-f DYDIS:KAT]... [-p KAT] [FAILAS]...\n\nIštrina problemų katalogus (-d) arba failus (-f) kataloguose iki jie tampa mažesni nei DYDIS.\nFAILAS(-ai) yra išsaugomas (niekada netrinamas)." ++msgstr "" ++"& [-v] [-d DYDIS:KAT]... [-f DYDIS:KAT]... [-p KAT] [FAILAS]...\n" ++"\n" ++"Ištrina problemų katalogus (-d) arba failus (-f) kataloguose iki jie tampa " ++"mažesni nei DYDIS.\n" ++"FAILAS(-ai) yra išsaugomas (niekada netrinamas)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -960,7 +1116,9 @@ msgstr "Šuolis į neteisingą adresą" + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "Priėjimas už failo atmintyje pabaigos, netinkamu adresu, nelygiuota prieiga ir t.t." ++msgstr "" ++"Priėjimas už failo atmintyje pabaigos, netinkamu adresu, nelygiuota prieiga " ++"ir t.t." + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +@@ -987,30 +1145,42 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FAILAS PROG [ARG]\n\nStebėti žurnalo failą FAILAS, paleisti PROG, kei jis paauga arba yra pakeičiamas" ++msgstr "" ++"& [-vs] [-F STR]... FAILAS PROG [ARG]\n" ++"\n" ++"Stebėti žurnalo failą FAILAS, paleisti PROG, kei jis paauga arba yra " ++"pakeičiamas" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" + msgstr "Nepaleisti PROG, jei STR nerasta" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++"Dėl blogo BIOS kilo branduolio problema. Deja, tokių problemų branduolio " ++"prižiūrėtojai negali pataisyti." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++"Kilo branduolio problema, bet jūsų aparatinė įranga yra nepalaikoma, tad " ++"branduolio prižiūrėtojai negali pataisyti šios problemos." + + #: ../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ų." ++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:153 + #, c-format +@@ -1022,7 +1192,10 @@ 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)" ++msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Išgauti oops iš FILE (arba standartinės įvesties)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1030,6 +1203,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "Sukurti naują problemos katalogą KAT kataloge kiekvienai rastai oops" +@@ -1072,7 +1246,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d KAT]/[-D] [FAILAS]\n\nIšgauti Xorg lūžimą iš FAILO (arba standartinės įvesties)" ++msgstr "" ++"& [-vsoxm] [-d KAT]/[-D] [FAILAS]\n" ++"\n" ++"Išgauti Xorg lūžimą iš FAILO (arba standartinės įvesties)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1080,16 +1257,20 @@ msgstr "Atspausdinti rastus lūžimo duomenis standartinėje išvestyje" + + #: ../src/plugins/abrt-dump-xorg.c:246 + msgid "Create problem directory in DIR for every crash found" +-msgstr "Sukurti naują problemos katalogą KAT kataloge kiekvienam rastam lūžimui" ++msgstr "" ++"Sukurti naują problemos katalogą KAT kataloge kiekvienam rastam lūžimui" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Pertrasavimo serveris negali būti naudojamas, nes nes lūžimas yra per didelis. Mėginkite vietinį pertrasavimą." ++msgstr "" ++"Pertrasavimo serveris negali būti naudojamas, nes nes lūžimas yra per " ++"didelis. Mėginkite vietinį pertrasavimą." + + #. 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 +@@ -1112,10 +1293,10 @@ msgstr "Nepavyko išsiųsti %d ilgio HTTP antraštės: NSS klaida %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Nelauktas HTTP atsakas iš serverio: %d\n" + "%s" +-msgstr "Nelauktas HTTP atsakas iš serverio: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1124,14 +1305,17 @@ msgstr "Nelauktas HTTP atsakas iš serverio: %d\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 "Netinkamas atsakas iš serverio: trūksta HTTP pranešimo pagrindinės dalies." ++msgstr "" ++"Netinkamas atsakas iš serverio: trūksta HTTP pranešimo pagrindinės dalies." + + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "Trasavimo serveris negali apdoroti paketo „%s.%s“.\nAr jis yra oficialių „%s“ saugyklų dalis?" ++msgstr "" ++"Trasavimo serveris negali apdoroti paketo „%s.%s“.\n" ++"Ar jis yra oficialių „%s“ saugyklų dalis?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1156,7 +1340,9 @@ msgstr "„%s“ turi būti įprastinis failas pertrasavimo serveriui naudoti." + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Jūsų lūžimo dydis yra %lld baitų, bet pertrasavimo serveris priima tik ne didesnius %lld baitų lūžimus." ++msgstr "" ++"Jūsų lūžimo dydis yra %lld baitų, bet pertrasavimo serveris priima tik ne " ++"didesnius %lld baitų lūžimus." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1184,7 +1370,9 @@ msgstr "Ruošiamasi archyvo nusiuntimui" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Jūsų archyvo dydis yra %lld baitų, bet pertrasavimo serveris priima tik ne didesnius nei %lld baitų archyvus." ++msgstr "" ++"Jūsų archyvo dydis yra %lld baitų, bet pertrasavimo serveris priima tik ne " ++"didesnius nei %lld baitų archyvus." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1227,13 +1415,17 @@ msgstr "Sėkmingai nusiųsta" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Jūsų problemų katalogas yra sugadintas ir pertrasavimo serveris negali jo apdoroti." ++msgstr "" ++"Jūsų problemų katalogas yra sugadintas ir pertrasavimo serveris negali jo " ++"apdoroti." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Archyvas turi blogų failų (tokių, kaip simbolinės nuorodos) ir todėl negali būti apdorotas." ++msgstr "" ++"Archyvas turi blogų failų (tokių, kaip simbolinės nuorodos) ir todėl negali " ++"būti apdorotas." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1249,10 +1441,10 @@ msgstr "Pradėtas pertrasavimo darbas" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Užduoties Id: %s\nUžduoties slaptažodis: %s\n" ++msgstr "Užduoties Id: %s\n" ++"Užduoties slaptažodis: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1260,10 +1452,10 @@ msgstr "Netinkamas atsakas iš serverio: trūksta X-Task-Status." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Užduoties būsena: %s\n" + "%s\n" +-msgstr "Užduoties būsena: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1276,7 +1468,9 @@ msgstr "Nepavyko išsiųsti %d ilgio HTTP antraštės: NSS klaida %d." + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Pertrasavimas nepavyko. Bandykite vėliau ir praneškite apie problemą, jei jis neišnyks." ++msgstr "" ++"Pertrasavimas nepavyko. Bandykite vėliau ir praneškite apie problemą, jei " ++"jis neišnyks." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1290,7 +1484,9 @@ msgstr "leisti nesaugius prisijungimus prie pertrasavimo serverio" + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "netikrinti, ar pertrasavimo serveris gali apdoroti pateiktą paketą prieš jį nusiunčiant" ++msgstr "" ++"netikrinti, ar pertrasavimo serveris gali apdoroti pateiktą paketą prieš jį " ++"nusiunčiant" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1322,7 +1518,8 @@ msgstr "Delsa užklausimo veiksmams" + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "(derinimas) netrinti laikinojo archyvo, sukurto iš išklotinės katalogo " ++msgstr "" ++"(derinimas) netrinti laikinojo archyvo, sukurto iš išklotinės katalogo " + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1340,7 +1537,9 @@ msgstr "jūsų užduoties slaptažodis serveryje" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [parametrai]\nVeiksmai: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client [parametrai]\n" ++"Veiksmai: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1372,14 +1571,19 @@ msgstr "Vietinė GNU derintuvė" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Parsiųsti derinimo informacijos paketus ir sukurti pėdsaką vietoje naudojant GDB" ++msgstr "" ++"Parsiųsti derinimo informacijos paketus ir sukurti pėdsaką vietoje naudojant " ++"GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Reikia parsiųsti derinimo informacijos paketus, o tai gali ilgai užtrukti ir užimti vietos diske. Tačiau, skirtingai nuo RetraceServer, nesiunčia pagrindo išklotinės į nutolusį kompiuterį." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Reikia parsiųsti derinimo informacijos paketus, o tai gali ilgai užtrukti ir " ++"užimti vietos diske. Tačiau, skirtingai nuo RetraceServer, nesiunčia " ++"pagrindo išklotinės į nutolusį kompiuterį." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1387,12 +1591,17 @@ msgstr "Siųsti pagrindo išklotinę į nutolusį serverį analizei" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Nusiunčia pagrindo išklotinę į serverį, kuris sukuria pėdsaką ir jį įvykdo. Privalumai: nereikia parsiųsti derinimo informacijos. Pertrasavimo serverio derinimo informacijos duomenų bazė yra pilnesnė. Pertrasavimo serveris gali sugeneruoti geresnius pėdsakus. Trūkumai: pagrindo išklotinės turi visus lūžusios programos duomenis, įskaitant privačius." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Nusiunčia pagrindo išklotinę į serverį, kuris sukuria pėdsaką ir jį įvykdo. " ++"Privalumai: nereikia parsiųsti derinimo informacijos. Pertrasavimo serverio " ++"derinimo informacijos duomenų bazė yra pilnesnė. Pertrasavimo serveris gali " ++"sugeneruoti geresnius pėdsakus. Trūkumai: pagrindo išklotinės turi visus " ++"lūžusios programos duomenis, įskaitant privačius." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1417,10 +1626,13 @@ msgstr "Ar naudoti nesaugų ryšį" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Parašykite „insecure“ nesaugiems prisijungimams leisti <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(įspėjimas)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Parašykite „insecure“ nesaugiems prisijungimams leisti <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(įspėjimas)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1434,7 +1646,9 @@ msgstr "Įrašyti atitinkamas eilutes iš ~/.xsession-errors failo" + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Perskaito ~/.xsession-errors failą ir įrašo eilutes, kurios turi programos pavadinimą. Rezultatas įrašomas kaip „xsession_errors“ elementas." ++msgstr "" ++"Perskaito ~/.xsession-errors failą ir įrašo eilutes, kurios turi programos " ++"pavadinimą. Rezultatas įrašomas kaip „xsession_errors“ elementas." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1467,7 +1681,9 @@ msgstr "Liudijimas yra pasirašytas nepatikimo išdavėjo: „%s“." + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "Liudijimo subjekto pavadinimas „%s“ neatitinka tikslo serverio pavadinimo „%s“." ++msgstr "" ++"Liudijimo subjekto pavadinimas „%s“ neatitinka tikslo serverio pavadinimo " ++"„%s“." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1592,7 +1808,11 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[LEIDIMAS]] (-b ID1[,ID2,...] | PAK-PAVADINIMAS) [PAK-PAVADINIMAS]... \n\nIeškoti atnaujinimų bodhi serveryje" ++msgstr "" ++"& [-v] [-r[LEIDIMAS]] (-b ID1[,ID2,...] | PAK-PAVADINIMAS) [PAK-PAVADINIMAS]." ++".. \n" ++"\n" ++"Ieškoti atnaujinimų bodhi serveryje" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1610,16 +1830,22 @@ msgstr "Vietinė paketo versija yra naujesnė nei prieinama atnaujinimuose" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Yra atnaujinimas, kuris gali pataisyti jūsų problemą. Galite jį įdiegti paleidę: %s. Ar tikrai norite tęsti ir pranešti apie klaidą?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Yra atnaujinimas, kuris gali pataisyti jūsų problemą. Galite jį įdiegti " ++"paleidę: %s. Ar tikrai norite tęsti ir pranešti apie klaidą?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\nIeško failų padalintų oops pranešimams. Gali atspausdinti arba ištrinti juos." ++msgstr "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"Ieško failų padalintų oops pranešimams. Gali atspausdinti arba ištrinti juos." ++"" + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1676,9 +1902,10 @@ msgstr "" + msgid "& list [options] [DIR]..." + msgstr "& list [parinktys] [KAT]..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "Išvardinti tik nepraneštas problemas" + + #. deprecate -d option with --pretty=full + #: ../src/cli/list.c:190 ../src/cli/list.c:243 +@@ -1693,12 +1920,17 @@ msgstr "Išvardinti tik problemas, kurios naujesnės nei nurodyta laiko žyma" + msgid "List only the problems older than specified timestamp" + msgstr "Išvardinti tik problemas, kurios senesnės nei nurodyta laiko žymo" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" ++"Automatinio pranešimo savybė išjungta. Galite ją įjungti įvykdę root " ++"teisėmis\n" ++"„abrt-auto-reporting enabled“\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1728,7 +1960,9 @@ msgstr "Atspausdinti tik problemas, naujesnes nei nurodyta laiko žyma" + #: ../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 aptiko %u problemą(as). Daugiau informacijos gausite įvykdę: abrt-cli list%s\n" ++msgstr "" ++"ABRT aptiko %u problemą(as). Daugiau informacijos gausite įvykdę: abrt-cli " ++"list%s\n" + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1773,7 +2007,9 @@ msgstr "" + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Siųsti pagrindo išklotinę į nutolusį pertrasavimo serverį analizei arba atlikti vietinę analizę, jei nuotolinė analizė nepavyksta" ++msgstr "" ++"Siųsti pagrindo išklotinę į nutolusį pertrasavimo serverį analizei arba " ++"atlikti vietinę analizę, jei nuotolinė analizė nepavyksta" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1781,10 +2017,18 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Nusiunčia pagrindo išklotinę į serverį, kuris sugeneruoja pėdsaką ir jį įvykdo. Jei naudotojas nenori niekur nusiųsti savo pagrindo išklotinės, įvykis vykdo vietinę analizę. Vietinės analizės įvykis vykdomas, jei nuotolinė analizė nepavyksta. Privalumai: nereikia parsiųsti derinimo informacijos. Pertrasavimo serverio duomenų bazė yra pilnesnė. Pertrasavimo serveris gali sugeneruoti geresnius pėdsakus. Trūkumai: jūsų siunčiama pagrindo išklotinė turi visus lūžusios programos duomenis, įskaitant jūsų privačius duomenis." ++msgstr "" ++"Nusiunčia pagrindo išklotinę į serverį, kuris sugeneruoja pėdsaką ir jį " ++"įvykdo. Jei naudotojas nenori niekur nusiųsti savo pagrindo išklotinės, " ++"įvykis vykdo vietinę analizę. Vietinės analizės įvykis vykdomas, jei " ++"nuotolinė analizė nepavyksta. Privalumai: nereikia parsiųsti derinimo " ++"informacijos. Pertrasavimo serverio duomenų bazė yra pilnesnė. Pertrasavimo " ++"serveris gali sugeneruoti geresnius pėdsakus. Trūkumai: jūsų siunčiama " ++"pagrindo išklotinė turi visus lūžusios programos duomenis, įskaitant jūsų " ++"privačius duomenis." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1793,13 +2037,17 @@ msgstr "Analizuoti VM pagrindą" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Įdiegti branduolio derinimo informacijos paketus, generuoti branduolio žurnalą ir oops pranešimą" ++msgstr "" ++"Įdiegti branduolio derinimo informacijos paketus, generuoti branduolio " ++"žurnalą ir oops pranešimą" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Reikia įdiegti branduolio derinimo informacijos paketus, tai gali ilgai užtrukti ir užimti daug disko vietos." ++msgstr "" ++"Reikia įdiegti branduolio derinimo informacijos paketus, tai gali ilgai " ++"užtrukti ir užimti daug disko vietos." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1813,7 +2061,9 @@ msgstr "Įrašyti konfigūraciją iš programos GConf katalogo" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Įvykdo gconftool-2 --recursive-list /apps/programa ir įrašo kaip 'gconf_subtree' elementą." ++msgstr "" ++"Įvykdo gconftool-2 --recursive-list /apps/programa ir įrašo kaip " ++"'gconf_subtree' elementą." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1827,7 +2077,9 @@ msgstr "Įrašyti /etc/vimrc ir /etc/gvimrc" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Patikrina, ar /etc yra vimrc ir gvimrc failai ir juos įrašo atitinkamai kaip system_vimrc ir system_gvimrc." ++msgstr "" ++"Patikrina, ar /etc yra vimrc ir gvimrc failai ir juos įrašo atitinkamai kaip " ++"system_vimrc ir system_gvimrc." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1839,9 +2091,11 @@ msgstr "Įrašyti .vimrc ir gvimrc iš jūsų namų katalogo" + + #: ../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 "Patikrina, ar jūsų namų kataloge yra .vimrc ir .gvimrc bei juos įrašo atitinkamai kaip user_vimrc ir user_gvimrc." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Patikrina, ar jūsų namų kataloge yra .vimrc ir .gvimrc bei juos įrašo " ++"atitinkamai kaip user_vimrc ir user_gvimrc." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/lv.po b/po/lv.po +index cb47df7..4a9b3e1 100644 +--- a/po/lv.po ++++ b/po/lv.po +@@ -6,17 +6,20 @@ + # Kristaps, 2012 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Latvian (http://www.transifex.com/projects/p/fedora-abrt/language/lv/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Latvian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/lv/)\n" + "Language: lv\n" +-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " ++"2);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -89,7 +92,9 @@ msgstr "Nevar aizvērt paziņojumu: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -128,6 +133,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Atvērt" +@@ -142,6 +148,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Ziņot" +@@ -212,10 +219,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +235,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -405,10 +411,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -460,19 +466,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -606,9 +665,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -683,8 +744,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -719,6 +779,7 @@ 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" +@@ -757,7 +818,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +829,8 @@ msgid "" + " -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" ++" --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" +@@ -816,7 +879,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1030,6 +1094,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1090,6 +1155,7 @@ 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 +@@ -1112,8 +1178,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1249,8 +1314,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1260,10 +1324,10 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Uzdevuma statuss: %s\n" + "%s\n" +-msgstr "Uzdevuma statuss: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1377,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1387,11 +1451,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1417,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1610,8 +1674,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1696,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1781,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1839,8 +1904,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/mai.po b/po/mai.po +index 5511cc6..52a4711 100644 +--- a/po/mai.po ++++ b/po/mai.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Maithili (http://www.transifex.com/projects/p/fedora-abrt/language/mai/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Maithili (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/mai/)\n" + "Language: mai\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/mg.po b/po/mg.po +index 2859390..2072086 100644 +--- a/po/mg.po ++++ b/po/mg.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Malagasy (http://www.transifex.com/projects/p/fedora-abrt/language/mg/)\n" ++"Language-Team: Malagasy (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/mg/)\n" ++"Language: mg\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: mg\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/mk.po b/po/mk.po +index 14d4a81..239f545 100644 +--- a/po/mk.po ++++ b/po/mk.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Macedonian (http://www.transifex.com/projects/p/fedora-abrt/language/mk/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Macedonian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/mk/)\n" + "Language: mk\n" + "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/ml.po b/po/ml.po +index 7e22223..3c8e724 100644 +--- a/po/ml.po ++++ b/po/ml.po +@@ -5,19 +5,22 @@ + # Translators: + # Ani Peter , 2014 + # Jiří Moskovčák , 2011 ++# Ani Peter , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-23 07:06+0000\n" +-"Last-Translator: Ani Peter \n" +-"Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora-abrt/language/ml/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-08 10:57-0500\n" ++"Last-Translator: Ani Peter \n" ++"Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ml/)\n" + "Language: ml\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -32,15 +35,21 @@ 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" +-msgstr "അയയ്ക്കുവാന്‍ പോകുന്ന റിപോര്‍ട്ടില്‍ സുരക്ഷ സംബന്ധിച്ചുള്ളൊരു ഡേറ്റയും ലഭ്യമല്ല.അതിനാല്‍, അടുത്ത തവണ നിങ്ങള്‍ ഒന്നും ചെയ്യേണ്ടതില്ല.\n" ++msgstr "" ++"അയയ്ക്കുവാന്‍ പോകുന്ന റിപോര്‍ട്ടില്‍ സുരക്ഷ സംബന്ധിച്ചുള്ളൊരു ഡേറ്റയും " ++"ലഭ്യമല്ല.അതിനാല്‍, അടുത്ത തവണ നിങ്ങള്‍ ഒന്നും ചെയ്യേണ്ടതില്ല.\n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +-msgstr "ഓട്ടോമാറ്റിയ്ക്കായി സമര്‍പ്പിയ്ക്കുന്ന ക്രാഷ് റിപോര്‍ട്ടുകള്‍ നിങ്ങള്‍ക്കു് പ്രവര്‍ത്തന സജ്ജമാക്കണമോ?" ++msgstr "" ++"ഓട്ടോമാറ്റിയ്ക്കായി സമര്‍പ്പിയ്ക്കുന്ന ക്രാഷ് റിപോര്‍ട്ടുകള്‍ നിങ്ങള്‍ക്കു് " ++"പ്രവര്‍ത്തന സജ്ജമാക്കണമോ?" + + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "ഓട്ടോമാറ്റിയ്ക്കായി സമര്‍പ്പിയ്ക്കുന്ന അജ്ഞാതമായ ക്രാഷ് റിപോര്‍ട്ടുകള്‍ നിങ്ങള്‍ക്കു് പ്രവര്‍ത്തന സജ്ജമാക്കണമോ?" ++msgstr "" ++"ഓട്ടോമാറ്റിയ്ക്കായി സമര്‍പ്പിയ്ക്കുന്ന അജ്ഞാതമായ ക്രാഷ് റിപോര്‍ട്ടുകള്‍ " ++"നിങ്ങള്‍ക്കു് പ്രവര്‍ത്തന സജ്ജമാക്കണമോ?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -51,7 +60,9 @@ msgstr "DBus-ല്‍ NetworkManager-ലേക്കു് കണക്ടു + #: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" +-msgstr "NetworkManager മുഖേന നെറ്റ്‌വര്‍ക്ക് അവസ്ഥ കണ്ടുപിടിയ്ക്കുവാന്‍ സാധ്യമല്ല: %s" ++msgstr "" ++"NetworkManager മുഖേന നെറ്റ്‌വര്‍ക്ക് അവസ്ഥ കണ്ടുപിടിയ്ക്കുവാന്‍ സാധ്യമല്ല: " ++"%s" + + #: ../src/applet/applet.c:342 + #, c-format +@@ -90,10 +101,18 @@ msgstr "അറിയിപ്പു് അടയ്ക്കുവാന്‍ + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "ഒരു പ്രത്യേക പ്രശ്നത്തിന്റെ അറിയിപ്പുകള്‍ നിങ്ങള്‍ നിശബ്ദമാക്കുവാന്‍ പോകുന്നു. ഈ പ്രശ്നത്തിനു് ഇനി ഒരിക്കലും കുമിള അറിയിപ്പ് ലഭ്യമാകുകയില്ല. എന്നിരുന്നാലും, എബിആര്‍ടി ഇതു് കണ്ടുപിടിച്ച്, നിങ്ങള്‍ക്ക് എബിആര്‍ടി ജിയുഐയില്‍ നിന്നും രേഖപ്പെടുത്താം.\n\nനിങ്ങള്‍ക്ക് തുടരണമോ?" ++msgstr "" ++"ഒരു പ്രത്യേക പ്രശ്നത്തിന്റെ അറിയിപ്പുകള്‍ നിങ്ങള്‍ നിശബ്ദമാക്കുവാന്‍ " ++"പോകുന്നു. ഈ പ്രശ്നത്തിനു് ഇനി ഒരിക്കലും കുമിള അറിയിപ്പ് ലഭ്യമാകുകയില്ല. " ++"എന്നിരുന്നാലും, എബിആര്‍ടി ഇതു് കണ്ടുപിടിച്ച്, നിങ്ങള്‍ക്ക് എബിആര്‍ടി " ++"ജിയുഐയില്‍ നിന്നും രേഖപ്പെടുത്താം.\n" ++"\n" ++"നിങ്ങള്‍ക്ക് തുടരണമോ?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -102,7 +121,9 @@ msgstr "മുന്നറിയിപ്പു്" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "ABRT കണ്ടുപിടിക്കുന്ന പ്രശ്നങ്ങളെപ്പറ്റി ഉപയോക്താവിനെ അറിയിക്കുന്നതിനായുള്ള ആപ്ലെറ്റ്" ++msgstr "" ++"ABRT കണ്ടുപിടിക്കുന്ന പ്രശ്നങ്ങളെപ്പറ്റി ഉപയോക്താവിനെ അറിയിക്കുന്നതിനായുള്ള " ++"ആപ്ലെറ്റ്" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -129,6 +150,7 @@ msgid "Ignore forever" + msgstr "എന്നേക്കുമായി ഉപേക്ഷിയ്ക്കുക" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "തുറക്കുക" +@@ -143,6 +165,7 @@ msgstr "പരിചിതമായൊരു പ്രശ്നമുണ്ട + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "റിപോര്‍ട്ട്" +@@ -185,14 +208,20 @@ msgstr "gio ചാനലിനു് nonblocking മോഡ് ഓണ്‍ ച + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "സെഷന്‍ മാനേജറിലേക്കുള്ള കണക്ഷന്‍ തുറക്കുന്നതില്‍ പരാജയപ്പെട്ടു: '%s', അടുത്ത തവണ പ്രവേശിയ്ക്കുമ്പോള്‍ അറിയിപ്പു് വീണ്ടും ലഭ്യമാകുന്നു" ++msgstr "" ++"സെഷന്‍ മാനേജറിലേക്കുള്ള കണക്ഷന്‍ തുറക്കുന്നതില്‍ പരാജയപ്പെട്ടു: '%s', അടുത്ത " ++"തവണ പ്രവേശിയ്ക്കുമ്പോള്‍ അറിയിപ്പു് വീണ്ടും ലഭ്യമാകുന്നു" + + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nപുതിയ പ്രശ്നങ്ങള്‍ ABRT കണ്ടുപിടിയ്ക്കുമ്പോള്‍ ഉപയോക്താവിനെ അറിയിയ്ക്കുന്നതിനുള്ള ആപ്ലെറ്റ്\n" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"പുതിയ പ്രശ്നങ്ങള്‍ ABRT കണ്ടുപിടിയ്ക്കുമ്പോള്‍ ഉപയോക്താവിനെ " ++"അറിയിയ്ക്കുന്നതിനുള്ള ആപ്ലെറ്റ്\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -213,11 +242,15 @@ msgstr "നിശബ്ദമായ ചെറിയ റിപോര്‍ട് + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "സ്റ്റാക്ക് ട്രെയിസ് ലഭ്യമാക്കുന്നതിന് കോര്‍ഡമ്പ് ഫയല്‍ ആവശ്യമാണു്. ഇതിനു് അധികമായ സമയവും സ്ഥലവും ആവശ്യമാണു്. കോര്‍ഡമ്പില്‍ നിന്നും സ്റ്റാക്ക് ട്രെയിസ് ലഭ്യമാക്കുന്നതിനുള്ള സേവനം എബിആര്‍ടി ലഭ്യമാക്കുന്നു, പക്ഷേ ഇതിനായി നിങ്ങള്‍ കോര്‍ഡമ്പ് അപ്‌ലോഡ് ചെയ്യണം. ഈ ഐച്ഛികം പ്രവര്‍ത്തന രഹിതമാക്കിയാല്‍, ഒരു ചോദ്യങ്ങളുമില്ലാതെ എബിആര്‍ടി കോര്‍ഡമ്പ് അപ്‌ലോ‍ഡ് ചെയ്യുന്നു." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"സ്റ്റാക്ക് ട്രെയിസ് ലഭ്യമാക്കുന്നതിന് കോര്‍ഡമ്പ് ഫയല്‍ ആവശ്യമാണു്. ഇതിനു് " ++"അധികമായ സമയവും സ്ഥലവും ആവശ്യമാണു്. കോര്‍ഡമ്പില്‍ നിന്നും സ്റ്റാക്ക് ട്രെയിസ് " ++"ലഭ്യമാക്കുന്നതിനുള്ള സേവനം എബിആര്‍ടി ലഭ്യമാക്കുന്നു, പക്ഷേ ഇതിനായി നിങ്ങള്‍ " ++"കോര്‍ഡമ്പ് അപ്‌ലോഡ് ചെയ്യണം. ഈ ഐച്ഛികം പ്രവര്‍ത്തന രഹിതമാക്കിയാല്‍, ഒരു " ++"ചോദ്യങ്ങളുമില്ലാതെ എബിആര്‍ടി കോര്‍ഡമ്പ് അപ്‌ലോ‍ഡ് ചെയ്യുന്നു." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -225,28 +258,44 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "പ്രശ്നമുള്ള ഡേറ്റാ എബിആര്‍ടി ഡയറക്ടറികളില്‍ സൂക്ഷിയ്ക്കുന്നു. എഴുതേണ്ട ഡയറക്ടറി എബിആര്‍ടിയ്ക്ക് ആവശ്യമുള്ളപ്പോള്‍, സിസ്റ്റത്തിലുള്ള സ്ഥാനത്ത് നിന്നും ഡയറക്ടറി ആസ്ഥാനത്തിലേക്ക് നീക്കുന്നു. ഈ ഐച്ഛികം പ്രവര്‍ത്തന രഹിതമാക്കുമ്പോള്‍, ചോദ്യങ്ങളില്ലാതെ എബിആര്‍ടി പ്രശ്നമുള്ള ഡയറക്ടറി നീക്കുന്നു." ++msgstr "" ++"പ്രശ്നമുള്ള ഡേറ്റാ എബിആര്‍ടി ഡയറക്ടറികളില്‍ സൂക്ഷിയ്ക്കുന്നു. എഴുതേണ്ട " ++"ഡയറക്ടറി എബിആര്‍ടിയ്ക്ക് ആവശ്യമുള്ളപ്പോള്‍, സിസ്റ്റത്തിലുള്ള സ്ഥാനത്ത് " ++"നിന്നും ഡയറക്ടറി ആസ്ഥാനത്തിലേക്ക് നീക്കുന്നു. ഈ ഐച്ഛികം പ്രവര്‍ത്തന " ++"രഹിതമാക്കുമ്പോള്‍, ചോദ്യങ്ങളില്ലാതെ എബിആര്‍ടി പ്രശ്നമുള്ള ഡയറക്ടറി " ++"നീക്കുന്നു." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "ഒരു പ്രശ്നത്തെപ്പറ്റിയുള്ള ചെറിയതും അപരിചിതവുമായ വിവരണമാണു് uReport. ആയാസത്തിലുള്ള കണ്ടുപിടിത്തതിനായി എബിആര്‍ടി uReports ഉപയോഗിയ്ക്കുന്നു. സ്വതവേ, രേഖപ്പെടുത്തുമ്പോള്‍ തന്നെ uReport അയയ്ക്കുന്നു. ഇതു് പ്രവര്‍ത്തന രഹിതമാക്കുമ്പോള്‍, uReports സ്വയമായി അയയ്ക്കപ്പെടുന്നു." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"ഒരു പ്രശ്നത്തെപ്പറ്റിയുള്ള ചെറിയതും അപരിചിതവുമായ വിവരണമാണു് uReport. " ++"ആയാസത്തിലുള്ള കണ്ടുപിടിത്തതിനായി എബിആര്‍ടി uReports ഉപയോഗിയ്ക്കുന്നു. " ++"സ്വതവേ, രേഖപ്പെടുത്തുമ്പോള്‍ തന്നെ uReport അയയ്ക്കുന്നു. ഇതു് പ്രവര്‍ത്തന " ++"രഹിതമാക്കുമ്പോള്‍, uReports സ്വയമായി അയയ്ക്കപ്പെടുന്നു." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "ഈ ഐച്ഛികം പ്രവര്‍ത്തന സജ്ജമെങ്കില്‍, പ്രശ്നം അറിയിക്കുന്നതിനുള്ള കുമിളയിലുള്ള റിപോര്‍ട്ട് ബട്ടണ്‍ ക്ലിക്ക ചെയ്ത് പ്രശ്നം രേഖപ്പെടുത്തുന്നതു്, uReport അയച്ച ശേഷം തടസ്സപ്പെടുന്നു. പൂര്‍ണ്ണമായ റിപോര്‍ട്ട് തയ്യാറാക്കുന്നതിനു് സ്വതവേയുള്ള പ്രശ്നങ്ങള്‍ക്കുള്ള ബ്രൌസര്‍ ഉപയോഗിയ്ക്കാം." ++msgstr "" ++"ഈ ഐച്ഛികം പ്രവര്‍ത്തന സജ്ജമെങ്കില്‍, പ്രശ്നം അറിയിക്കുന്നതിനുള്ള " ++"കുമിളയിലുള്ള റിപോര്‍ട്ട് ബട്ടണ്‍ ക്ലിക്ക ചെയ്ത് പ്രശ്നം രേഖപ്പെടുത്തുന്നതു്, " ++"uReport അയച്ച ശേഷം തടസ്സപ്പെടുന്നു. പൂര്‍ണ്ണമായ റിപോര്‍ട്ട് " ++"തയ്യാറാക്കുന്നതിനു് സ്വതവേയുള്ള പ്രശ്നങ്ങള്‍ക്കുള്ള ബ്രൌസര്‍ ഉപയോഗിയ്ക്കാം." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "ഈ ഐച്ഛികം പ്രവര്‍ത്തന സജ്ജമെങ്കില്‍, രേഖപ്പെടുത്തിയ പ്രശ്നങ്ങള്‍ക്കുള്ള അറിയിപ്പ് എബിആര്‍ടി ഒരിക്കലും കാണിക്കില്ല. ലഘുവായി രേഖപ്പെടുത്തുന്നത് സജ്ജമെങ്കില്‍ മാത്രം ഇതു് പ്രാഭല്യത്തിലാകുന്നു." ++msgstr "" ++"ഈ ഐച്ഛികം പ്രവര്‍ത്തന സജ്ജമെങ്കില്‍, രേഖപ്പെടുത്തിയ പ്രശ്നങ്ങള്‍ക്കുള്ള " ++"അറിയിപ്പ് എബിആര്‍ടി ഒരിക്കലും കാണിക്കില്ല. ലഘുവായി രേഖപ്പെടുത്തുന്നത് " ++"സജ്ജമെങ്കില്‍ മാത്രം ഇതു് പ്രാഭല്യത്തിലാകുന്നു." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -256,7 +305,9 @@ msgstr "coredump അപ്‌ലോഡ് ചെയ്യുന്നതിന + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "സെന്‍സിറ്റീവ് ഡേറ്റാ ലഭ്യമായെങ്കില്‍, ഈ ഐച്ഛികം പ്രവര്‍ത്തന സജ്ജമെങ്കില്‍, എബിആര്‍ടി എപ്പോഴും ബഗ് ടിക്കറ്റ് തയ്യാറാക്കുന്നു." ++msgstr "" ++"സെന്‍സിറ്റീവ് ഡേറ്റാ ലഭ്യമായെങ്കില്‍, ഈ ഐച്ഛികം പ്രവര്‍ത്തന സജ്ജമെങ്കില്‍, " ++"എബിആര്‍ടി എപ്പോഴും ബഗ് ടിക്കറ്റ് തയ്യാറാക്കുന്നു." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -271,7 +322,11 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "കമ്പ്യൂട്ടര്‍ അടച്ചുപൂട്ടുമ്പോള്‍ അല്ലെങ്കില്‍ ഉപയോക്താവ് പുറത്ത് കടക്കുമ്പോള്‍ പൂര്‍ത്തിയാകാത്ത പ്രശ്നങ്ങള്‍ ലഭ്യമാകുന്നു. ഉചിതമായ റിപോര്‍ട്ടുകള്‍ ലഭ്യമാക്കുന്നതിനു്, എബിആര്‍ടി ഇവ രേഖപ്പെടുത്തുവാന്‍ അനുവദിക്കുകയില്ല." ++msgstr "" ++"കമ്പ്യൂട്ടര്‍ അടച്ചുപൂട്ടുമ്പോള്‍ അല്ലെങ്കില്‍ ഉപയോക്താവ് പുറത്ത് " ++"കടക്കുമ്പോള്‍ പൂര്‍ത്തിയാകാത്ത പ്രശ്നങ്ങള്‍ ലഭ്യമാകുന്നു. ഉചിതമായ " ++"റിപോര്‍ട്ടുകള്‍ ലഭ്യമാക്കുന്നതിനു്, എബിആര്‍ടി ഇവ രേഖപ്പെടുത്തുവാന്‍ " ++"അനുവദിക്കുകയില്ല." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -303,7 +358,11 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nപാക്കേജ് ഡേറ്റാബെയിസ് ചോദ്യം ചെയ്തു്, പാക്കേജും ഘടകത്തിന്റെ പേരും സൂക്ഷിയ്ക്കുക" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"പാക്കേജ് ഡേറ്റാബെയിസ് ചോദ്യം ചെയ്തു്, പാക്കേജും ഘടകത്തിന്റെ പേരും " ++"സൂക്ഷിയ്ക്കുക" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -366,7 +425,9 @@ msgstr "മാറ്റം വരുത്തുന്നതിനായി പ + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "ഡയറക്ടറി ചൌണ്‍ ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു. കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി സിസ്റ്റം ലോഗുകള്‍ പരിശോധിയ്ക്കുക." ++msgstr "" ++"ഡയറക്ടറി ചൌണ്‍ ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു. കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി " ++"സിസ്റ്റം ലോഗുകള്‍ പരിശോധിയ്ക്കുക." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -385,14 +446,17 @@ 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:763 ../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 "'%s' എന്ന നാമം നഷ്ടമായി, ഈ പേരില്‍ മറ്റൊരു സര്‍വീസും പ്രവര്‍ത്തനത്തിലില്ല എന്നു് ദയവായി ഉറപ്പാക്കുക.\n" ++msgstr "" ++"'%s' എന്ന നാമം നഷ്ടമായി, ഈ പേരില്‍ മറ്റൊരു സര്‍വീസും പ്രവര്‍ത്തനത്തിലില്ല " ++"എന്നു് ദയവായി ഉറപ്പാക്കുക.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -406,11 +470,17 @@ msgstr "ഈ പ്രോഗ്രാം റൂട്ടായി പ്രവര + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "പ്രശ്നമുള്ള ഡേറ്റാ പൂര്‍ണ്ണമല്ല. കമ്പ്യൂട്ടര്‍ അടച്ചുപൂട്ടുമ്പോള്‍ അല്ലെങ്കില്‍ ഉപയോക്താവു് പുറത്തു് കടക്കുമ്പോള്‍ ഒരു പ്രശ്നമുണ്ടായാലാണു് ഇതു് സാധാരണ സംഭവിയ്ക്കുന്നതു്. ശരിയായ റിപോര്‍ട്ടുകള്‍ നല്‍കുന്നതിനായി, ഈ പ്രശ്നം രേഖപ്പെടുത്തുവാന്‍ നിങ്ങളെ എബിആര്‍റ്റി അനുവദിയ്ക്കുന്നില്ല. നിങ്ങള്‍ക്കു് ഈ പ്രശ്നം ശരിയായി പരിഹരിയ്ക്കുന്നതിനായി ഡവലപ്പര്‍മാരെ സഹായിയ്ക്കണമെങ്കില്‍, അവരുമായി നേരിട്ടു് ബന്ധപ്പെടുക." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"പ്രശ്നമുള്ള ഡേറ്റാ പൂര്‍ണ്ണമല്ല. കമ്പ്യൂട്ടര്‍ അടച്ചുപൂട്ടുമ്പോള്‍ " ++"അല്ലെങ്കില്‍ ഉപയോക്താവു് പുറത്തു് കടക്കുമ്പോള്‍ ഒരു പ്രശ്നമുണ്ടായാലാണു് ഇതു് " ++"സാധാരണ സംഭവിയ്ക്കുന്നതു്. ശരിയായ റിപോര്‍ട്ടുകള്‍ നല്‍കുന്നതിനായി, ഈ പ്രശ്നം " ++"രേഖപ്പെടുത്തുവാന്‍ നിങ്ങളെ എബിആര്‍റ്റി അനുവദിയ്ക്കുന്നില്ല. നിങ്ങള്‍ക്കു് ഈ " ++"പ്രശ്നം ശരിയായി പരിഹരിയ്ക്കുന്നതിനായി ഡവലപ്പര്‍മാരെ സഹായിയ്ക്കണമെങ്കില്‍, " ++"അവരുമായി നേരിട്ടു് ബന്ധപ്പെടുക." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -435,7 +505,8 @@ msgstr "ഉപയോക്താവുമായി നേരിട്ടു് + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "പണിയില്ലാത്തവരും പൂര്‍ണ്ണ ബഫറുമില്ല. '%s' ആര്‍ക്കൈവ് ഉപേക്ഷിയ്ക്കുന്നു." ++msgstr "" ++"പണിയില്ലാത്തവരും പൂര്‍ണ്ണ ബഫറുമില്ല. '%s' ആര്‍ക്കൈവ് ഉപേക്ഷിയ്ക്കുന്നു." + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -447,7 +518,15 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-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" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Watches UPLOAD_DIRECTORY and unpacks incoming archives into DumpLocation\n" ++"specified in abrt.conf\n" ++"\n" ++"If UPLOAD_DIRECTORY is not provided, uses a value of\n" ++"WatchCrashdumpArchiveDir option from abrt.conf" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -461,19 +540,76 @@ msgstr "ഒരേപോലെ ജോലിചെയ്യുന്നവരു + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB-ല്‍ ഏറ്റവും കൂടിയ ക്യാഷ് വ്യാപ്തി. സ്വതവേയുള്ളതു്" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "ആധികാരികത ഉറപ്പാക്കല്‍ സംവിധാനം ഓഫ് ചെയ്യുന്നു" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Red Hat പിന്തുണയ്ക്കുള്ള ഉപയോക്തൃനാമം" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++"Red Hat പിന്തുണയ്ക്കുള്ള രഹസ്യവാക്ക്, നല്‍കിയിട്ടില്ലെങ്കില്‍, ഇതിനായി " ++"ആവശ്യപ്പെടുന്നു" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++"uReport എസ്എസ്എല്‍ സര്‍ട്ടിഫിക്കേറ്റ് പാഥ് അല്ലെങ്കില്‍ സര്‍ട്ടിഫിക്കേറ്റ് " ++"രീതി" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr " --password-നുള്ള --username നല്‍കേണ്ടതുണ്ടു്" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "--username അല്ലെങ്കില്‍ --certificate ഉപയോഗിയ്ക്കാം" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "--username അല്ലെങ്കില്‍ --anonymous ഉപയോഗിയ്ക്കാം" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "--anonymous അല്ലെങ്കില്‍ --certificate ഉപയോഗിയ്ക്കാം" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "ആര്‍ഗ്യുമെന്റുകളുടെ തെറ്റായ എണ്ണം" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "അപരിചിതമായ മൂല്ല്യം: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "രഹസ്യവാക്ക്:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "രഹസ്യവാക്കില്ലാതെ തുടരുവാന്‍ സാധ്യമല്ല\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "എച്ടിടിപി ആധികാരികതയുള്ള ഓട്ടോ റിപോര്‍ട്ടിങ്" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "എസ്എസ്എല്‍ ക്ലയന്റ് ആധികാരികതയുള്ള ഓട്ടോ റിപോര്‍ട്ടിങ്" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "അപരിചിതമായ ഓട്ടോ റിപോര്‍ട്ടിങ്" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -484,7 +620,15 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "ഉപയോഗിയ്ക്കേണ്ട വിധം: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - വെര്‍ബോസ്\n -d - അപ്‌ലോഡ് ചെയ്ത ആര്‍ക്കൈവ് വെട്ടി നീക്കുക\n ABRT_SPOOL_DIR - അപ്‌ലോഡ് ചെയ്ത ഉചിതമായ ആര്‍ക്കൈവുകള്‍ തുറന്നിടുന്ന ഡയറക്ടറി\n UPLOAD_DIR - അപ്‌ലോഡ് ചെയ്ത ഡയറക്ടറികള്‍ സൂക്ഷിയ്ക്കുന്ന ഡയറക്ടറി\n FILENAME - അപ്‌ലോഡ് ചെയ്ത് ആര്‍ക്കൈവ് ഫയല്‍ നാമം.\n" ++msgstr "" ++"ഉപയോഗിയ്ക്കേണ്ട വിധം: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - വെര്‍ബോസ്\n" ++" -d - അപ്‌ലോഡ് ചെയ്ത ആര്‍ക്കൈവ് വെട്ടി നീക്കുക\n" ++" ABRT_SPOOL_DIR - അപ്‌ലോഡ് ചെയ്ത ഉചിതമായ ആര്‍ക്കൈവുകള്‍ തുറന്നിടുന്ന " ++"ഡയറക്ടറി\n" ++" UPLOAD_DIR - അപ്‌ലോഡ് ചെയ്ത ഡയറക്ടറികള്‍ സൂക്ഷിയ്ക്കുന്ന ഡയറക്ടറി\n" ++" FILENAME - അപ്‌ലോഡ് ചെയ്ത് ആര്‍ക്കൈവ് ഫയല്‍ നാമം.\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -574,12 +718,14 @@ msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി വെട് + #: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള ഡേറ്റാ ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" ++msgstr "" ++"abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള ഡേറ്റാ ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" + + #: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള പട്ടിക ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" ++msgstr "" ++"abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള പട്ടിക ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -591,13 +737,17 @@ msgstr "താല്‍ക്കാലിക ഫയല്‍ '%s' തയ്യ + 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:264 + #, 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 "" +@@ -605,11 +755,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nC/C++ ബാക്ക്ട്രെയിസ് നിരീക്ഷിച്ചു്, ഡൂപ്ലിക്കേറ്റ് ഹാഷ് ലഭ്യമാക്കി, റേറ്റിങ് ബാക്ക്ട്രെയിസ് ചെയ്തു്,\nപ്രശ്നമുള്ള ഡയറക്ടറി DIR-യില്‍ നിന്നും ക്രാഷ് ഫംഗ്ഷന്‍ തിരിച്ചറിയുന്നു" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"C/C++ ബാക്ക്ട്രെയിസ് നിരീക്ഷിച്ചു്, ഡൂപ്ലിക്കേറ്റ് ഹാഷ് ലഭ്യമാക്കി, റേറ്റിങ് " ++"ബാക്ക്ട്രെയിസ് ചെയ്തു്,\n" ++"പ്രശ്നമുള്ള ഡയറക്ടറി DIR-യില്‍ നിന്നും ക്രാഷ് ഫംഗ്ഷന്‍ തിരിച്ചറിയുന്നു" + ++#. + #. * 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" +@@ -624,7 +781,11 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nപ്രശ്നമുള്ള ഡയറക്ടറി DIR-യില്‍ കോര്‍ഡംപിനുള്ള UUID കണക്കുകൂട്ടി സൂക്ഷിയ്ക്കുന്നു" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"പ്രശ്നമുള്ള ഡയറക്ടറി DIR-യില്‍ കോര്‍ഡംപിനുള്ള UUID കണക്കുകൂട്ടി " ++"സൂക്ഷിയ്ക്കുന്നു" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -650,14 +811,22 @@ 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" ++"\n" ++"oops പ്രശ്നങ്ങള്‍ക്കുള്ള ഡയറക്ടറി DIR-യ്ക്കുള്ള UUID, DUPHASH കണക്കു കൂട്ടി " ++"സൂക്ഷിയ്ക്കുന്നു" + + #: ../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" ++"\n" ++"xorg പ്രശ്നങ്ങള്‍ക്കുള്ള ഡയറക്ടറി DIR-യ്ക്കുള്ള UUID, DUPHASH കണക്കു കൂട്ടി " ++"സൂക്ഷിയ്ക്കുന്നു" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -669,7 +838,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nപൈഥണ്‍ ക്രാഷ് ഡംപുകളുടെ യുയുഐഡി, DUPHASH കണക്കുകൂട്ടി സൂക്ഷിയ്ക്കുക" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"പൈഥണ്‍ ക്രാഷ് ഡംപുകളുടെ യുയുഐഡി, DUPHASH കണക്കുകൂട്ടി സൂക്ഷിയ്ക്കുക" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -684,10 +856,10 @@ msgid "Extracting the oops text from core" + msgstr "കോറില്‍ നിന്നും oops വാചകം ലഭ്യമാക്കുന്നു" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "{0} നടപ്പിലാക്കുവാന്‍ സാധ്യമല്ല:\n" + "{1}" +-msgstr "{0} നടപ്പിലാക്കുവാന്‍ സാധ്യമല്ല:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -701,14 +873,20 @@ msgstr "Oops വാചകം വിജയകരമായി ലഭ്യമാ + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "ഹാര്‍ഡ്‌വെയര്‍ പിശകുകള്‍ ഉണ്ടായതായി കേര്‍ണല്‍ ലോഗ് സൂചിപ്പിയ്ക്കുന്നു.\nഅതുകൊണ്ടു് ഇതൊരു സോഫ്റ്റ്‌വെയര്‍ പ്രശ്നമല്ല.\n" ++msgstr "" ++"ഹാര്‍ഡ്‌വെയര്‍ പിശകുകള്‍ ഉണ്ടായതായി കേര്‍ണല്‍ ലോഗ് സൂചിപ്പിയ്ക്കുന്നു.\n" ++"അതുകൊണ്ടു് ഇതൊരു സോഫ്റ്റ്‌വെയര്‍ പ്രശ്നമല്ല.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nപ്രശ്നമുള്ള ഡയറക്ടറി DIR-യില്‍ നിന്നും കോര്‍ഡംപ് നിരീക്ഷിച്ചു് ബാക്ക്ട്രെയിസ് ലഭ്യമാക്കി സൂക്ഷിയ്ക്കുന്നു" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"പ്രശ്നമുള്ള ഡയറക്ടറി DIR-യില്‍ നിന്നും കോര്‍ഡംപ് നിരീക്ഷിച്ചു് " ++"ബാക്ക്ട്രെയിസ് ലഭ്യമാക്കി സൂക്ഷിയ്ക്കുന്നു" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -716,10 +894,12 @@ msgstr "കൂടുതല്‍ debuginfo ഡയറക്ടറികള്‍" + + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "NUM സെക്കന്‍ഡുകളില്‍ കൂടുതല്‍ gdb പ്രവര്‍ത്തിപ്പിച്ചാല്‍, അതു് ഇല്ലാതാക്കുക" ++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" +@@ -730,7 +910,11 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\nകോര്‍ ഡംപില്‍ നിന്നും അതിനുള്ള ബൈനറിയില്‍ നിന്നും coredump-level ബാക്ക്ട്രെയിസ് തയ്യാറാക്കുന്നു" ++msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"കോര്‍ ഡംപില്‍ നിന്നും അതിനുള്ള ബൈനറിയില്‍ നിന്നും coredump-level " ++"ബാക്ക്ട്രെയിസ് തയ്യാറാക്കുന്നു" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -758,7 +942,8 @@ msgstr "ഉപയോക്താവിന്റെ കമാന്‍ഡില + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -768,13 +953,35 @@ msgid "" + " -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" ++" --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" +-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" ++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_FILE-ലുള്ള എല്ലാ ബിള്‍ഡ്-ഐഡികളുടേയും debuginfos CACHEDIR-ലേക്കു് " ++"ഇന്‍സ്റ്റോള്‍ ചെയ്യുന്നു\n" ++"to CACHEDIR, താല്‍ക്കാലിക സ്ഥലമായി TMPDIR ഉപയോഗിയ്ക്കുന്നു.\n" ++"SIZE-നേക്കാള്‍ ചെറുതായാല്‍ 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}" +@@ -782,7 +989,9 @@ 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" +@@ -805,21 +1014,33 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "കോര്‍ ഡംപ് അപ്‌ലോ‍ഡ് ചെയ്യണമോ? (പ്രശ്നമുള്ള ഡേറ്റായുണ്ടാവാം). നിങ്ങള്‍ക്കു് ഇതു് ചെയ്യേണ്ടതില്ലെങ്കില്‍, ഒരു സ്റ്റാക്ക് ട്രെയിസ് ലോക്കലായി തയ്യാറാക്കപ്പെടുന്നു. (ഇതൊരു പക്ഷേ വലിയ ഡേറ്റാ ഡൌണ്‍ലോഡ് ചെയ്തേക്കാം)." ++msgstr "" ++"കോര്‍ ഡംപ് അപ്‌ലോ‍ഡ് ചെയ്യണമോ? (പ്രശ്നമുള്ള ഡേറ്റായുണ്ടാവാം). നിങ്ങള്‍ക്കു് " ++"ഇതു് ചെയ്യേണ്ടതില്ലെങ്കില്‍, ഒരു സ്റ്റാക്ക് ട്രെയിസ് ലോക്കലായി " ++"തയ്യാറാക്കപ്പെടുന്നു. (ഇതൊരു പക്ഷേ വലിയ ഡേറ്റാ ഡൌണ്‍ലോഡ് ചെയ്തേക്കാം)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"സ്റ്റാക്ക് ട്രെയിസ് പ്രാദേശികമായി ലഭ്യമാക്കണമോ? (ഒരുപാടു് വലിയ ഡേറ്റാ ഇതു് " ++"ഡൌണ്‍ലോഡ് ചെയ്തേക്കാം, പക്ഷേ സ്റ്റാക്ക് ട്രെയിസ് ഇല്ലാതെ രേഖപ്പെടുത്തല്‍ " ++"സാധ്യമല്ല)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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\nSIZE-നേക്കാള്‍ ചെറുതാകുന്നതു് വരെ പ്രശ്നമുള്ള ഡയറക്ടറികള്‍ (-d) അല്ലെങ്കില്‍ ഫയലുകള്‍ (-f) വെട്ടി നീക്കുന്നു.\nഫയലുകള്‍ സൂക്ഷിയ്ക്കുന്നു (ഒരിക്കലും വെട്ടിനീക്കിയിട്ടില്ല)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"SIZE-നേക്കാള്‍ ചെറുതാകുന്നതു് വരെ പ്രശ്നമുള്ള ഡയറക്ടറികള്‍ (-d) അല്ലെങ്കില്‍ " ++"ഫയലുകള്‍ (-f) വെട്ടി നീക്കുന്നു.\n" ++"ഫയലുകള്‍ സൂക്ഷിയ്ക്കുന്നു (ഒരിക്കലും വെട്ടിനീക്കിയിട്ടില്ല)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -850,7 +1071,8 @@ msgstr "ഉപയോഗിയ്ക്കേണ്ട വിധം: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "നിലവില്‍ പ്രവര്‍ത്തനത്തിലുള്ള ഡയറക്ടറി വെട്ടി നീക്കിയതിനാല്‍ ലഭ്യമല്ല." ++msgstr "" ++"നിലവില്‍ പ്രവര്‍ത്തനത്തിലുള്ള ഡയറക്ടറി വെട്ടി നീക്കിയതിനാല്‍ ലഭ്യമല്ല." + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +@@ -951,7 +1173,9 @@ 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 +@@ -961,11 +1185,14 @@ 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 "" ++"സിഗ്നല്‍ ലഭ്യമാക്കി എക്സ്പ്ലോയിറ്റബിളിറ്റി നിരീക്ഷണം ചെയ്യുവാന്‍ സാധ്യമല്ല\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +@@ -988,7 +1215,11 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nലോഗ് ഫയല്‍ FILE നിരീക്ഷിയ്ക്കുക, ഇതു് വര്‍ദ്ധിയ്ക്കുമ്പോള്‍ അല്ലെങ്കില്‍ മാറ്റുമ്പോള്‍ PROG പ്രവര്‍ത്തിപ്പിയ്ക്കുക" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"ലോഗ് ഫയല്‍ FILE നിരീക്ഷിയ്ക്കുക, ഇതു് വര്‍ദ്ധിയ്ക്കുമ്പോള്‍ അല്ലെങ്കില്‍ " ++"മാറ്റുമ്പോള്‍ PROG പ്രവര്‍ത്തിപ്പിയ്ക്കുക" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -998,20 +1229,27 @@ msgstr "STR ലഭ്യമല്ലെങ്കില്‍ PROG പ്രവ + 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: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: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). കാരണം എന്താണു് എന്നു് കണ്ടുപിടിയ്ക്കുവാന്‍ കേര്‍ണല്‍ പാലകന്‍മാര്‍ക്കു് സാധ്യമായിട്ടില്ല." ++msgstr "" ++"കേര്‍ണലില്‍ ഒരു പ്രശ്നമുണ്ടായിരിയ്ക്കുന്നു (ഫ്ലാഗുകള്‍:%s). കാരണം എന്താണു് " ++"എന്നു് കണ്ടുപിടിയ്ക്കുവാന്‍ കേര്‍ണല്‍ പാലകന്‍മാര്‍ക്കു് സാധ്യമായിട്ടില്ല." + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1023,7 +1261,10 @@ msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" +-msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nFILE-ല്‍ നിന്നും ഒഒപിഎസ് ലഭ്യമാക്കുക (അല്ലെങ്കില്‍ സാധാരണയുള്ള ഇന്‍പുട്ട്)" ++msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"FILE-ല്‍ നിന്നും ഒഒപിഎസ് ലഭ്യമാക്കുക (അല്ലെങ്കില്‍ സാധാരണയുള്ള ഇന്‍പുട്ട്)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1031,13 +1272,16 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "എല്ലാ oops-നും DIR-ലുള്ള തകരാറിനുള്ള ഡയറക്ടറി തയ്യാറാക്കുക" + + #: ../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 നിഷ്കര്‍ഷിച്ചിരിയ്ക്കുന്നു" ++msgstr "" ++"-d DumpLocation പോലെ തന്നെ, abrt.conf-ല്‍ DumpLocation " ++"നിഷ്കര്‍ഷിച്ചിരിയ്ക്കുന്നു" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1049,7 +1293,8 @@ msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി ലഭ്യ + + #: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" +-msgstr "ത്രോട്ടില്‍ പ്രശ്നം ഡയറക്ടറി തയ്യാറാക്കുന്നതു് ഒരു സെക്കന്‍ഡില്‍ ഒന്നു്" ++msgstr "" ++"ത്രോട്ടില്‍ പ്രശ്നം ഡയറക്ടറി തയ്യാറാക്കുന്നതു് ഒരു സെക്കന്‍ഡില്‍ ഒന്നു്" + + #: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" +@@ -1061,7 +1306,8 @@ msgstr "regex കംപൈല്‍ ചെയ്യുന്നതില്‍ + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +-msgstr "പ്രശ്നം പരിഷ്കരിയ്ക്കുവാന്‍ സാധ്യമല്ല: ഒന്നില്‍ കൂടുതല്‍ oops ലഭ്യമായി" ++msgstr "" ++"പ്രശ്നം പരിഷ്കരിയ്ക്കുവാന്‍ സാധ്യമല്ല: ഒന്നില്‍ കൂടുതല്‍ oops ലഭ്യമായി" + + #: ../src/plugins/abrt-dump-oops.c:421 + #, c-format +@@ -1073,7 +1319,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nFILE-ല്‍ നിന്നും Xorg ക്രാഷ് ലഭ്യമാക്കുക (അല്ലെങ്കില്‍ സാധാരണ ഇന്‍പുട്ട്)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"FILE-ല്‍ നിന്നും Xorg ക്രാഷ് ലഭ്യമാക്കുക (അല്ലെങ്കില്‍ സാധാരണ ഇന്‍പുട്ട്)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1087,10 +1336,13 @@ msgstr "എല്ലാ ക്രാഷിനും DIR-ലുള്ള തക + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "റീട്രെയിസ് സര്‍വര്‍ ഉപയോഗിയ്ക്കുവാന്‍ സാധ്യമല്ല, ക്രാഷ് വളരെ വലുതാണു്. പ്രാദേശിക റീട്രെയിസിങ് ശ്രമിയ്ക്കുക." ++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 +@@ -1103,7 +1355,9 @@ msgstr "ഇതില്‍ താല്‍ക്കാലിക ഫയല്‍ + #: ../src/plugins/abrt-retrace-client.c:832 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "%d വ്യാപ്തിയുള്ള എച്ടിടിപി ഹെഡര്‍ അയയ്ക്കുന്നതില്‍ പരാജയപ്പെട്ടു: എന്‍എസ്എസ് പിശക് %d" ++msgstr "" ++"%d വ്യാപ്തിയുള്ള എച്ടിടിപി ഹെഡര്‍ അയയ്ക്കുന്നതില്‍ പരാജയപ്പെട്ടു: എന്‍എസ്എസ് " ++"പിശക് %d" + + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 +@@ -1113,10 +1367,10 @@ msgstr "%d വ്യാപ്തിയുള്ള എച്ടിടിപി + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "സര്‍വറില്‍ നിന്നും അപ്രതീക്ഷിതമായ എച്ടിടിപി മറുപടി: %d\n" + "%s" +-msgstr "സര്‍വറില്‍ നിന്നും അപ്രതീക്ഷിതമായ എച്ടിടിപി മറുപടി: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1132,7 +1386,9 @@ msgstr "സര്‍വറില്‍ നിന്നും തെറ്റാ + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "'%s.%s' പാക്കേജ് നടപ്പിലാക്കുവാന്‍ റീട്രെയിസ് സര്‍വറിനു് സാധ്യമല്ല.\n'%s' റിപ്പോസിറ്ററികളുടെ ഭാഗമാണോ?" ++msgstr "" ++"'%s.%s' പാക്കേജ് നടപ്പിലാക്കുവാന്‍ റീട്രെയിസ് സര്‍വറിനു് സാധ്യമല്ല.\n" ++"'%s' റിപ്പോസിറ്ററികളുടെ ഭാഗമാണോ?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1150,14 +1406,18 @@ msgstr "സര്‍വര്‍ നിങ്ങളുടെ ആവശ്യം + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "റീട്രെയിസ് സര്‍വര്‍ ഉപയോഗിയ്ക്കുന്നതിനായി '%s' ഒരു സാധാരണ ഫയലായിരിയ്ക്കണം." ++msgstr "" ++"റീട്രെയിസ് സര്‍വര്‍ ഉപയോഗിയ്ക്കുന്നതിനായി '%s' ഒരു സാധാരണ ഫയലായിരിയ്ക്കണം." + + #: ../src/plugins/abrt-retrace-client.c:514 + #, c-format + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "ക്രാഷിന്റെ വ്യാപ്തി %lld ബൈറ്റുകളാകുന്നു. പക്ഷേ, റീട്രെയിസ് സര്‍വര്‍ %lld ബൈറ്റുകളുടെ അതേ വ്യാപ്തി അല്ലെങ്കില്‍ ചെറിയ ക്രാഷുകള്‍ മാത്രം സ്വീകരിയ്ക്കുന്നു." ++msgstr "" ++"ക്രാഷിന്റെ വ്യാപ്തി %lld ബൈറ്റുകളാകുന്നു. പക്ഷേ, റീട്രെയിസ് സര്‍വര്‍ %lld " ++"ബൈറ്റുകളുടെ അതേ വ്യാപ്തി അല്ലെങ്കില്‍ ചെറിയ ക്രാഷുകള്‍ മാത്രം " ++"സ്വീകരിയ്ക്കുന്നു." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1185,7 +1445,10 @@ msgstr "ആര്‍ക്കൈവ് അപ്‌ലോഡ് ചെയ്യ + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "ആര്‍ക്കൈവിന്റെ വ്യാപ്തി %lld ബൈറ്റുകളാകുന്നു. പക്ഷേ, റീട്രെയിസ് സര്‍വര്‍ %lld ബൈറ്റുകളുടെ അതേ വ്യാപ്തി അല്ലെങ്കില്‍ ചെറിയ ആര്‍ക്കൈവുകള്‍ മാത്രം സ്വീകരിയ്ക്കുന്നു." ++msgstr "" ++"ആര്‍ക്കൈവിന്റെ വ്യാപ്തി %lld ബൈറ്റുകളാകുന്നു. പക്ഷേ, റീട്രെയിസ് സര്‍വര്‍ " ++"%lld ബൈറ്റുകളുടെ അതേ വ്യാപ്തി അല്ലെങ്കില്‍ ചെറിയ ആര്‍ക്കൈവുകള്‍ മാത്രം " ++"സ്വീകരിയ്ക്കുന്നു." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1228,13 +1491,17 @@ msgstr "അപ്‌ലോഡ് വിജയിച്ചു" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "നിങ്ങളുടെ പ്രശ്നമുള്ള ഡയറക്ടറിയില്‍ തകരാറുണ്ടു്, അതിനാല്‍ റീട്രെയിസ് സര്‍വറിനു് നടപ്പിലാക്കുവാന്‍ സാധ്യമല്ല." ++msgstr "" ++"നിങ്ങളുടെ പ്രശ്നമുള്ള ഡയറക്ടറിയില്‍ തകരാറുണ്ടു്, അതിനാല്‍ റീട്രെയിസ് " ++"സര്‍വറിനു് നടപ്പിലാക്കുവാന്‍ സാധ്യമല്ല." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "ആര്‍ക്കൈവില്‍ തകരാറുള്ള ഫയലുകള്‍ അടങ്ങുന്നു (ഉദാഹരണത്തിനു് സിംലിങ്കുകള്‍), അതിനാല്‍ നടപ്പിലാക്കുവാന്‍ സാധ്യമല്ല." ++msgstr "" ++"ആര്‍ക്കൈവില്‍ തകരാറുള്ള ഫയലുകള്‍ അടങ്ങുന്നു (ഉദാഹരണത്തിനു് സിംലിങ്കുകള്‍), " ++"അതിനാല്‍ നടപ്പിലാക്കുവാന്‍ സാധ്യമല്ല." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1250,10 +1517,10 @@ msgstr "റീട്രെയിസ് ജോലി ആരംഭിച്ചി + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "ജോലിയ്ക്കുള്ള ഐഡി: %s\nജോലിയ്ക്കുള്ള രഹസ്യവാക്ക്: %s\n" ++msgstr "ജോലിയ്ക്കുള്ള ഐഡി: %s\n" ++"ജോലിയ്ക്കുള്ള രഹസ്യവാക്ക്: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1261,23 +1528,27 @@ msgstr "സര്‍വറില്‍ നിന്നും തെറ്റാ + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "ജോലിയുടെ അവസ്ഥ: %s\n" + "%s\n" +-msgstr "ജോലിയുടെ അവസ്ഥ: %s\n%s\n" + + #: ../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 വ്യാപ്തിയുള്ള എച്ടിടിപി ഹെഡര്‍ അയയ്ക്കുന്നതില്‍ പരാജംയ: എന്‍എസ്എസ് പിശക് %d." ++msgstr "" ++"%d വ്യാപ്തിയുള്ള എച്ടിടിപി ഹെഡര്‍ അയയ്ക്കുന്നതില്‍ പരാജംയ: എന്‍എസ്എസ് പിശക് " ++"%d." + + #: ../src/plugins/abrt-retrace-client.c:1160 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "റീട്രെയിസ് പരാജയപ്പെട്ടു. പിന്നീടു് വീണ്ടും ശ്രമിച്ചു്, അഥവാ ഈ പ്രശ്നം വീണ്ടും ഉണ്ടായാല്‍ ദയവായി രേഖപ്പെടുത്തുക." ++msgstr "" ++"റീട്രെയിസ് പരാജയപ്പെട്ടു. പിന്നീടു് വീണ്ടും ശ്രമിച്ചു്, അഥവാ ഈ പ്രശ്നം " ++"വീണ്ടും ഉണ്ടായാല്‍ ദയവായി രേഖപ്പെടുത്തുക." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1291,7 +1562,9 @@ msgstr "റീട്രെയിസ് സര്‍വറിലേക്കു + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "ആര്‍ക്കൈവ് അപ്‌ലോഡ് ചെയ്യുന്നതിനു് മുമ്പു് ലഭ്യമാക്കിയ പാക്കേജിനു് റീട്രെയിസ് സര്‍വര്‍ നടപ്പിലാക്കുവാന്‍ സാധ്യമാണോ എന്നു് പരിശോധിയ്ക്കേണ്ടതില്ല" ++msgstr "" ++"ആര്‍ക്കൈവ് അപ്‌ലോഡ് ചെയ്യുന്നതിനു് മുമ്പു് ലഭ്യമാക്കിയ പാക്കേജിനു് " ++"റീട്രെയിസ് സര്‍വര്‍ നടപ്പിലാക്കുവാന്‍ സാധ്യമാണോ എന്നു് പരിശോധിയ്ക്കേണ്ടതില്ല" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1323,7 +1596,9 @@ msgstr "പോളിങ് പ്രക്രിയകളുടെ താമസ + + #: ../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" +@@ -1341,7 +1616,9 @@ msgstr "സര്‍വറില്‍ നിങ്ങളുടെ ജോലി + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [options]\nOperations: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client [options]\n" ++"Operations: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1373,27 +1650,40 @@ msgstr "പ്രാദേശിക ജിഎന്‍യു ഡീബഗ്ഗ + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "debuginfo പാക്കേജുകള്‍ ഡൌണ്‍ലോഡ് ചെയ്തു് ജിഡിബി ഉപയോഗിച്ചു് പ്രാദേശികമായി ബാക്ക്ട്രെയിസ് ലഭ്യമാക്കുക" ++msgstr "" ++"debuginfo പാക്കേജുകള്‍ ഡൌണ്‍ലോഡ് ചെയ്തു് ജിഡിബി ഉപയോഗിച്ചു് പ്രാദേശികമായി " ++"ബാക്ക്ട്രെയിസ് ലഭ്യമാക്കുക" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "debuginfo പാക്കേജുകള്‍ ഡൌണ്‍ലോഡ് ചെയ്യേണ്ടതുണ്ടു്.ഇതു് വളരെ സമയവും ഡിസ്ക് സ്ഥലവും ഉപയോഗിയ്ക്കുന്നു. എന്നിരുന്നാലും, RetraceServer പോലെ, റിമോട്ട് സിസ്റ്റങ്ങളിലേക്കു് കോര്‍ഡംപ് അയയ്ക്കുന്നില്ല." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"debuginfo പാക്കേജുകള്‍ ഡൌണ്‍ലോഡ് ചെയ്യേണ്ടതുണ്ടു്.ഇതു് വളരെ സമയവും ഡിസ്ക് " ++"സ്ഥലവും ഉപയോഗിയ്ക്കുന്നു. എന്നിരുന്നാലും, RetraceServer പോലെ, റിമോട്ട് " ++"സിസ്റ്റങ്ങളിലേക്കു് കോര്‍ഡംപ് അയയ്ക്കുന്നില്ല." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +-msgstr "നിരീക്ഷിയ്ക്കുന്നതിനായി റിമോട്ട് റീട്രെയിസ് സര്‍വറിലേക്കു് കോര്‍ ഡംപ് അയയ്ക്കുക" ++msgstr "" ++"നിരീക്ഷിയ്ക്കുന്നതിനായി റിമോട്ട് റീട്രെയിസ് സര്‍വറിലേക്കു് കോര്‍ ഡംപ് " ++"അയയ്ക്കുക" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "ഒരു സര്‍വറിലേക്കു് കോര്‍ഡംപ് അപ്‌ലോഡ് ചെയ്യുന്നു, ഇതു് ബാക്ക്ട്രെയിസ് ലഭ്യമാക്കി തിരികെ ലഭ്യമാക്കുന്നു. പ്രശ്നങ്ങള്‍: debuginfo ഡൌണ്‍ലോഡുകള്‍ ആവശ്യമില്ല. റീട്രെയിസ് സര്‍വറിന്റെ debuginfo ഡേറ്റാബെയിസ് കൂടുതല്‍ പൂര്‍ണ്ണമാണു്. റീട്രെയിസ് സര്‍വര്‍ ഒരു പക്ഷേ മെച്ചപ്പെട്ട ബാക്ക്ട്രെയിസുകള്‍ ലഭ്യമാക്കുന്നു. ഫലങ്ങള്‍: നിങ്ങള്‍ അപ്‌ലോഡ് ചെയ്ത കോര്‍ഡംപില്‍ തകര്‍ന്ന പ്രോഗ്രാമിന്റെ എല്ലാ ഡേറ്റയും അടങ്ങുന്നു." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"ഒരു സര്‍വറിലേക്കു് കോര്‍ഡംപ് അപ്‌ലോഡ് ചെയ്യുന്നു, ഇതു് ബാക്ക്ട്രെയിസ് " ++"ലഭ്യമാക്കി തിരികെ ലഭ്യമാക്കുന്നു. പ്രശ്നങ്ങള്‍: debuginfo ഡൌണ്‍ലോഡുകള്‍ " ++"ആവശ്യമില്ല. റീട്രെയിസ് സര്‍വറിന്റെ debuginfo ഡേറ്റാബെയിസ് കൂടുതല്‍ " ++"പൂര്‍ണ്ണമാണു്. റീട്രെയിസ് സര്‍വര്‍ ഒരു പക്ഷേ മെച്ചപ്പെട്ട ബാക്ക്ട്രെയിസുകള്‍ " ++"ലഭ്യമാക്കുന്നു. ഫലങ്ങള്‍: നിങ്ങള്‍ അപ്‌ലോഡ് ചെയ്ത കോര്‍ഡംപില്‍ തകര്‍ന്ന " ++"പ്രോഗ്രാമിന്റെ എല്ലാ ഡേറ്റയും അടങ്ങുന്നു." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1418,10 +1708,13 @@ msgstr "അസുരക്ഷിതമായ കണക്ഷന്‍ ഉപയ + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "അസുരക്ഷിതമായ കണക്ഷന്‍ <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a> അനുവദിയ്ക്കുന്നതിനായി \"അസുരക്ഷിതം\" എഴുതുക" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"അസുരക്ഷിതമായ കണക്ഷന്‍ <a href=\"https://fedorahosted.org/abrt/wiki/" ++"AbrtRetraceServerInsecureConnection\" >(warning)</a> " ++"അനുവദിയ്ക്കുന്നതിനായി \"അസുരക്ഷിതം\" എഴുതുക" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1435,7 +1728,10 @@ msgstr "~/.xsession-errors ഫയലില്‍ നിന്നും ഉചി + 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." +@@ -1463,12 +1759,15 @@ msgstr "ലഭ്യമാകുന്ന സര്‍ട്ടിഫിക് + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "അവിശ്വസനീയമായ ഇഷ്യൂവര്‍ സര്‍ട്ടിഫിക്കേറ്റില്‍ ഒപ്പിട്ടിരിയ്ക്കുന്നു: '%s'." ++msgstr "" ++"അവിശ്വസനീയമായ ഇഷ്യൂവര്‍ സര്‍ട്ടിഫിക്കേറ്റില്‍ ഒപ്പിട്ടിരിയ്ക്കുന്നു: '%s'." + + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "സര്‍ട്ടിഫിക്കേറ്റിന്റെ വിഷയ നാമം '%s', ലക്ഷ്യസ്ഥാനത്തുള്ള ഹോസ്റ്റ് നാമം'%s'-മായി പൊരുത്തപ്പെടുന്നില്ല." ++msgstr "" ++"സര്‍ട്ടിഫിക്കേറ്റിന്റെ വിഷയ നാമം '%s', ലക്ഷ്യസ്ഥാനത്തുള്ള ഹോസ്റ്റ് നാമം'%s'-" ++"മായി പൊരുത്തപ്പെടുന്നില്ല." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1482,7 +1781,8 @@ msgstr "സര്‍ട്ടിഫിക്കേറ്റ് ഇഷ്യൂ + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "തെറ്റായ സര്‍ട്ടിഫിക്കേറ്റ് ലഭിച്ചിരിയ്ക്കുന്നു. വിഷയം '%s', ഇഷ്യൂവര്‍ '%s'." ++msgstr "" ++"തെറ്റായ സര്‍ട്ടിഫിക്കേറ്റ് ലഭിച്ചിരിയ്ക്കുന്നു. വിഷയം '%s', ഇഷ്യൂവര്‍ '%s'." + + #: ../src/plugins/https-utils.c:149 + #, c-format +@@ -1492,7 +1792,8 @@ msgstr "'PEM Token #0' സ്ലോട്ട് ലഭ്യമാക്കു + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "'%s' ഹോസ്റ്റ് നാമം റിസോള്‍വ് ചെയ്യുവാന്‍ സാധ്യമല്ല. എന്‍എസ്എസ് പിശക് %d." ++msgstr "" ++"'%s' ഹോസ്റ്റ് നാമം റിസോള്‍വ് ചെയ്യുവാന്‍ സാധ്യമല്ല. എന്‍എസ്എസ് പിശക് %d." + + #. Host exists, but has neither IPv4 nor IPv6?? + #: ../src/plugins/https-utils.c:203 +@@ -1510,7 +1811,9 @@ msgstr "ടിസിപി സോക്കറ്റ് എസ്എസ്എല + + #: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." +-msgstr "എസ്എസ്എല്‍ സോക്കറ്റിലേക്കു് ക്ലയന്റ് ഹാന്‍ഡ്ഷെയിക്ക് പ്രവര്‍ത്തന സജ്ജമാക്കുന്നതില്‍ പരാജയപ്പെട്ടു." ++msgstr "" ++"എസ്എസ്എല്‍ സോക്കറ്റിലേക്കു് ക്ലയന്റ് ഹാന്‍ഡ്ഷെയിക്ക് പ്രവര്‍ത്തന " ++"സജ്ജമാക്കുന്നതില്‍ പരാജയപ്പെട്ടു." + + #: ../src/plugins/https-utils.c:220 + msgid "Failed to enable SSL3." +@@ -1593,7 +1896,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nബോധി സര്‍വറില്‍ പരിഷ്കരണങ്ങള്‍ക്കായി തെരയുക" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"ബോധി സര്‍വറില്‍ പരിഷ്കരണങ്ങള്‍ക്കായി തെരയുക" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1606,21 +1912,29 @@ msgstr "ഈ പാക്കേജിനു് പരിഷ്കരണങ്ങ + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" +-msgstr "ലഭ്യമായ പരിഷ്കരണങ്ങളേക്കാള്‍ പുതിയതാണു് നിങ്ങളുടെ സിസ്റ്റത്തിലുള്ള പതിപ്പു്" ++msgstr "" ++"ലഭ്യമായ പരിഷ്കരണങ്ങളേക്കാള്‍ പുതിയതാണു് നിങ്ങളുടെ സിസ്റ്റത്തിലുള്ള പതിപ്പു്" + + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "നിങ്ങളുടെ പ്രശ്നം പരിഹരിയ്ക്കുന്നതിനുള്ളൊരു പരിഷ്കരണം നിലവിലുണ്ടാവാം. നിങ്ങള്‍ക്കു് ഇതു് ഇന്‍സ്റ്റോള്‍ ചെയ്യുന്നതിനായി പ്രവര്‍ത്തിയ്ക്കേണ്ടതു്: %s. ബഗ് രേഖപ്പെടുത്തുവാന്‍ തുടരണമോ?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"നിങ്ങളുടെ പ്രശ്നം പരിഹരിയ്ക്കുന്നതിനുള്ളൊരു പരിഷ്കരണം നിലവിലുണ്ടാവാം. " ++"നിങ്ങള്‍ക്കു് ഇതു് ഇന്‍സ്റ്റോള്‍ ചെയ്യുന്നതിനായി പ്രവര്‍ത്തിയ്ക്കേണ്ടതു്: %s." ++" ബഗ് രേഖപ്പെടുത്തുവാന്‍ തുടരണമോ?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\nവേര്‍തിരിച്ച ഒഒപിഎസ് സന്ദേശത്തിനായി ഫയലുകള്‍ പരിശോധിയ്ക്കുന്നു. അവ പ്രിന്റ് ചെയ്യാം അല്ലെങ്കില്‍ വെട്ടി നീക്കാം." ++msgstr "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"വേര്‍തിരിച്ച ഒഒപിഎസ് സന്ദേശത്തിനായി ഫയലുകള്‍ പരിശോധിയ്ക്കുന്നു. അവ പ്രിന്റ് " ++"ചെയ്യാം അല്ലെങ്കില്‍ വെട്ടി നീക്കാം." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1671,7 +1985,10 @@ msgstr "കൂടുതല്‍ വിവരങ്ങള്‍ക്കായ + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +-msgstr "Red Hat കസ്റ്റമര്‍ പോര്‍ട്ടലില്‍ കേസ് തയ്യാറാക്കുന്നതിനു് %sRun 'abrt-cli report %s'\n\n" ++msgstr "" ++"Red Hat കസ്റ്റമര്‍ പോര്‍ട്ടലില്‍ കേസ് തയ്യാറാക്കുന്നതിനു് %sRun 'abrt-cli " ++"report %s'\n" ++"\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1688,18 +2005,24 @@ msgstr "വിശദമായ രേഖപ്പെടുത്തല്‍ ക + + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +-msgstr "നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പുതിയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" ++msgstr "" ++"നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പുതിയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" + + #: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" +-msgstr "നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പഴയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" ++msgstr "" ++"നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പഴയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" + + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "സ്വയമായി രേഖപ്പെടുത്ത വിശേഷത പ്രവര്‍ത്തന രഹിതമാണു്. റൂട്ട് അനുമതികളുള്ള ഉപയോക്താവായി 'abrt-auto-reporting enabled' നല്‍കി\nഇതു് പ്രവര്‍ത്തന സജ്ജമാക്കുക.\n" ++msgstr "" ++"സ്വയമായി രേഖപ്പെടുത്ത വിശേഷത പ്രവര്‍ത്തന രഹിതമാണു്. റൂട്ട് അനുമതികളുള്ള " ++"ഉപയോക്താവായി 'abrt-auto-reporting enabled' നല്‍കി\n" ++"ഇതു് പ്രവര്‍ത്തന സജ്ജമാക്കുക.\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1724,12 +2047,16 @@ 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 "എബിആര്‍റ്റി %u പ്രശ്നങ്ങള്‍ കണ്ടുപിടിച്ചിരിയ്ക്കുന്നു. കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി പ്രവര്‍ത്തിപ്പിക്കേണ്ടതു്: abrt-cli list%s\n" ++msgstr "" ++"എബിആര്‍റ്റി %u പ്രശ്നങ്ങള്‍ കണ്ടുപിടിച്ചിരിയ്ക്കുന്നു. കൂടുതല്‍ " ++"വിവരങ്ങള്‍ക്കായി പ്രവര്‍ത്തിപ്പിക്കേണ്ടതു്: abrt-cli list%s\n" + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1764,7 +2091,9 @@ msgstr "അടുത്ത പ്രശ്നത്തിന് ENTER അമര + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "--since ആര്‍ഗ്യുമെന്റില്ലാതെ, ലഭ്യമായ പ്രശ്നങ്ങളിലെല്ലാം ആവര്‍ത്തിയ്ക്കുന്നു." ++msgstr "" ++"--since ആര്‍ഗ്യുമെന്റില്ലാതെ, ലഭ്യമായ പ്രശ്നങ്ങളിലെല്ലാം ആവര്‍ത്തിയ്ക്കുന്നു." ++"" + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +@@ -1774,7 +2103,10 @@ msgstr "ടൈംസ്റ്റാബിനു് ശേഷം ലഭിച് + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "നിരീക്ഷിയ്ക്കുന്നതിനായി റിമോട്ട് റീട്രെയിസ് സര്‍വറിലേക്കു് കോര്‍ ഡംപ് അയയ്ക്കുക അല്ലെങ്കില്‍ ഇതു് പരാജപ്പെട്ടാല്‍, നിങ്ങളുടെ സിസ്റ്റത്തിലുള്ള നിരീക്ഷണം നടപ്പിലാക്കുക" ++msgstr "" ++"നിരീക്ഷിയ്ക്കുന്നതിനായി റിമോട്ട് റീട്രെയിസ് സര്‍വറിലേക്കു് കോര്‍ ഡംപ് " ++"അയയ്ക്കുക അല്ലെങ്കില്‍ ഇതു് പരാജപ്പെട്ടാല്‍, നിങ്ങളുടെ സിസ്റ്റത്തിലുള്ള " ++"നിരീക്ഷണം നടപ്പിലാക്കുക" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1782,10 +2114,19 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "ബാക്ക്ട്രെയിസ് തയ്യാറാക്കി തിരികെ നല്‍കുന്ന സര്‍വറിലേക്കു് coredump അപ്‌ലോ‍ഡ് ചെയ്യുന്നു. ഉപയോക്താവിനു് coredump എവിടെയും അപ്‌ലോഡ് ചെയ്യേണ്ടതില്ലെങ്കില്‍, ഇവന്റ് സിസ്റ്റത്തില്‍ നിരീക്ഷണം നടത്തുന്നു. റിമോട്ട് നിരീക്ഷണം പരാജയപ്പെട്ടാലും സിസ്റ്റത്തില്‍ നിരീക്ഷണം നടപ്പിലാക്കുന്നു. പ്രശ്നങ്ങള്‍: debuginfo ഡൌണ്‍ലോഡുകളുടെ ആവശ്യമില്ല. debuginfo-നുള്ള റീട്രെയിസ് സര്‍വറിന്റെ ഡേറ്റാബെയിസ് പൂര്‍ണ്ണമാണു്. റീട്രെയിസ് സര്‍വര്‍ മെച്ചപ്പെട്ട ബാക്ക്ട്രെയിസുകള്‍ ലഭ്യമാക്കുന്നു. ഫലങ്ങള്‍: നിങ്ങള്‍ അപ്‌ലോഡ് ചെയ്യുന്ന coredump-ല്‍, നിങ്ങളുടെ സ്വകാര്യ ഡേറ്റാ ഉള്‍പ്പടെ, ക്രാഷ് ചെയ്ത് പ്രോഗ്രാമിലുള്ള എല്ലാ ഡേറ്റയും അടങ്ങുന്നു." ++msgstr "" ++"ബാക്ക്ട്രെയിസ് തയ്യാറാക്കി തിരികെ നല്‍കുന്ന സര്‍വറിലേക്കു് coredump " ++"അപ്‌ലോ‍ഡ് ചെയ്യുന്നു. ഉപയോക്താവിനു് coredump എവിടെയും അപ്‌ലോഡ് " ++"ചെയ്യേണ്ടതില്ലെങ്കില്‍, ഇവന്റ് സിസ്റ്റത്തില്‍ നിരീക്ഷണം നടത്തുന്നു. റിമോട്ട് " ++"നിരീക്ഷണം പരാജയപ്പെട്ടാലും സിസ്റ്റത്തില്‍ നിരീക്ഷണം നടപ്പിലാക്കുന്നു. " ++"പ്രശ്നങ്ങള്‍: debuginfo ഡൌണ്‍ലോഡുകളുടെ ആവശ്യമില്ല. debuginfo-നുള്ള " ++"റീട്രെയിസ് സര്‍വറിന്റെ ഡേറ്റാബെയിസ് പൂര്‍ണ്ണമാണു്. റീട്രെയിസ് സര്‍വര്‍ " ++"മെച്ചപ്പെട്ട ബാക്ക്ട്രെയിസുകള്‍ ലഭ്യമാക്കുന്നു. ഫലങ്ങള്‍: നിങ്ങള്‍ അപ്‌ലോഡ് " ++"ചെയ്യുന്ന coredump-ല്‍, നിങ്ങളുടെ സ്വകാര്യ ഡേറ്റാ ഉള്‍പ്പടെ, ക്രാഷ് ചെയ്ത് " ++"പ്രോഗ്രാമിലുള്ള എല്ലാ ഡേറ്റയും അടങ്ങുന്നു." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1794,13 +2135,17 @@ msgstr "വിഎം കോര്‍ നിരീക്ഷിയ്ക്കു + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "കേര്‍ണല്‍ debuginfo പാക്കേജുകള്‍ ഇന്‍സ്റ്റോള്‍ ചെയ്യുക. കേര്‍ണല്‍ ലോഗും oops സന്ദേശവും ലഭ്യമാക്കുക" ++msgstr "" ++"കേര്‍ണല്‍ debuginfo പാക്കേജുകള്‍ ഇന്‍സ്റ്റോള്‍ ചെയ്യുക. കേര്‍ണല്‍ ലോഗും oops " ++"സന്ദേശവും ലഭ്യമാക്കുക" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "കേര്‍ണല്‍ debuginfo പാക്കേജുകള്‍ ഇന്‍സ്റ്റോള്‍ ചെയ്യേണ്ടതുണ്ടു്, ഇതു് വളരെ സമയവും ഡിസ്ക് സ്ഥലവും ഉപയോഗിയ്ക്കുന്നു." ++msgstr "" ++"കേര്‍ണല്‍ debuginfo പാക്കേജുകള്‍ ഇന്‍സ്റ്റോള്‍ ചെയ്യേണ്ടതുണ്ടു്, ഇതു് വളരെ " ++"സമയവും ഡിസ്ക് സ്ഥലവും ഉപയോഗിയ്ക്കുന്നു." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1814,7 +2159,9 @@ msgstr "പ്രയോഗത്തിനുള്ള GConf ഡയറക്ട + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "gconftool-2 --recursive-list /apps/executable പ്രവര്‍ത്തിപ്പിച്ചു്, 'gconf_subtree' എലമെന്റായി സൂക്ഷിയ്ക്കുക." ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable പ്രവര്‍ത്തിപ്പിച്ചു്, " ++"'gconf_subtree' എലമെന്റായി സൂക്ഷിയ്ക്കുക." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1828,7 +2175,9 @@ 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" +@@ -1840,9 +2189,11 @@ 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 "/etc-ല്‍ vimrc, gvimrc ഫയലുകള്‍ ഉണ്ടോ എന്നു് പരിശോധിച്ചു്, അവ user_vimrc, user_gvimrc എന്നിവയായി സൂക്ഷിയ്ക്കുക." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"/etc-ല്‍ vimrc, gvimrc ഫയലുകള്‍ ഉണ്ടോ എന്നു് പരിശോധിച്ചു്, അവ user_vimrc, " ++"user_gvimrc എന്നിവയായി സൂക്ഷിയ്ക്കുക." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/mn.po b/po/mn.po +index 1f55a61..66a599e 100644 +--- a/po/mn.po ++++ b/po/mn.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Mongolian (http://www.transifex.com/projects/p/fedora-abrt/language/mn/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Mongolian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/mn/)\n" + "Language: mn\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/mr.po b/po/mr.po +index 702f1ea..5072002 100644 +--- a/po/mr.po ++++ b/po/mr.po +@@ -5,19 +5,22 @@ + # Translators: + # Jiří Moskovčák , 2011 + # sandeeps , 2011,2013-2014 ++# Jiří Moskovčák , 2011. ++# sandeeps , 2011,2013-2014, 2015. + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-15 02:31+0000\n" +-"Last-Translator: sandeeps \n" +-"Language-Team: Marathi (http://www.transifex.com/projects/p/fedora-abrt/language/mr/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-06 12:13-0500\n" ++"Last-Translator: Sandeep Shedmake \n" ++"Language-Team: Marathi \n" + "Language: mr\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -32,7 +35,9 @@ 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" +-msgstr "पाठवण्याजोगी अहवालामध्ये कोणतिही सुरक्षा संवेदनशील माहिती समाविष्टीत नाही. म्हणून तुम्हाला भविष्यात चिंतेची तसेच कोणत्याही कृतीची आवश्यकता नाही. \n" ++msgstr "" ++"पाठवण्याजोगी अहवालामध्ये कोणतिही सुरक्षा संवेदनशील माहिती समाविष्टीत नाही. " ++"म्हणून तुम्हाला भविष्यात चिंतेची तसेच कोणत्याही कृतीची आवश्यकता नाही. \n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +@@ -90,10 +95,17 @@ msgstr "सूचना: %s बंद करणे अशक्य" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "ठराविक अडचणींच्या सूचना तुम्ही बंद करणार आहात. या अडचणीकरिता तुम्हाला सूचना पटल पुन्हा आढळणार नाही, तरी, ABRT ला ते आढळेल आणि त्यास ABRT GUI मार्फत कळविणे शक्य होईल.\n\nतुम्हाला पुढे जायचे?" ++msgstr "" ++"ठराविक अडचणींच्या सूचना तुम्ही बंद करणार आहात. या अडचणीकरिता तुम्हाला सूचना " ++"पटल पुन्हा आढळणार नाही, तरी, ABRT ला ते आढळेल आणि त्यास ABRT GUI मार्फत " ++"कळविणे शक्य होईल.\n" ++"\n" ++"तुम्हाला पुढे जायचे?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -102,7 +114,9 @@ msgstr "सावधानता" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "सूचना क्षेत्र ॲप्लेट जे वापरकर्त्याला ABRT द्वारे आढळलेल्या अडचणींविषयी अवगत करते" ++msgstr "" ++"सूचना क्षेत्र ॲप्लेट जे वापरकर्त्याला ABRT द्वारे आढळलेल्या अडचणींविषयी अवगत " ++"करते" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -129,6 +143,7 @@ msgid "Ignore forever" + msgstr "नेहमीकरिता दुर्लक्ष करा" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "उघडा" +@@ -143,6 +158,7 @@ msgstr "परिचीत अडचण आढळली" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "रिपोर्ट" +@@ -185,14 +201,19 @@ msgstr "gio वाहिनी: %s करीता नॉनब्लॉकि + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "सत्र व्यवस्थापक: '%s' सह जोडणी उघडण्यास अपयशी, पुढील प्रवेशवेळी सूचना पुन्हा आढळेल" ++msgstr "" ++"सत्र व्यवस्थापक: '%s' सह जोडणी उघडण्यास अपयशी, पुढील प्रवेशवेळी सूचना पुन्हा " ++"आढळेल" + + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nABRT तर्फे नवीन अडचणी आढळल्यास वापरकर्त्याला सूचीत करणारे ॲप्लेट\n" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"ABRT तर्फे नवीन अडचणी आढळल्यास वापरकर्त्याला सूचीत करणारे ॲप्लेट\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -213,11 +234,14 @@ msgstr "साइलंट शार्टन्ड रिपोर्टिं + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "स्टॅक ट्रेस निर्माण करण्यासाठी कोरडम्प फाइल आवश्यक आहे ज्यास वेळ आणि जागा आवश्यक आहे. ABRT तुम्हाला सर्व्हिस पुरवते जे कोरडम्पपासून स्टॅक ट्रेस निर्माण करते परंतु तुम्हाला कोरडम्पला ह्या सर्व्हिसकरिता अपलोड करावे लागेल. ह्या पर्यायचा वापर न करता ABRT विना विचारता कोरडम्प अपलोड करेल." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"स्टॅक ट्रेस निर्माण करण्यासाठी कोरडम्प फाइल आवश्यक आहे ज्यास वेळ आणि जागा " ++"आवश्यक आहे. ABRT तुम्हाला सर्व्हिस पुरवते जे कोरडम्पपासून स्टॅक ट्रेस " ++"निर्माण करते परंतु तुम्हाला कोरडम्पला ह्या सर्व्हिसकरिता अपलोड करावे लागेल. " ++"ह्या पर्यायचा वापर न करता ABRT विना विचारता कोरडम्प अपलोड करेल." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -225,28 +249,42 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT डिरेक्ट्रीमध्ये अडचण डाटा साठवते. ABRT ला जेव्हा केव्हाही लेखनजोगी डिरेक्ट्रीची आवश्यकता असते, तेव्हा डिरेक्ट्रीला प्रणाली ठिकाणापासून होम डिरेक्ट्रीकरिता स्थानांतरित केले जाते. हे पर्याय बंद करून ABRT विना चौकशी अडचण डिरेक्ट्रीला स्थानांतरित करेल." ++msgstr "" ++"ABRT डिरेक्ट्रीमध्ये अडचण डाटा साठवते. ABRT ला जेव्हा केव्हाही लेखनजोगी " ++"डिरेक्ट्रीची आवश्यकता असते, तेव्हा डिरेक्ट्रीला प्रणाली ठिकाणापासून होम " ++"डिरेक्ट्रीकरिता स्थानांतरित केले जाते. हे पर्याय बंद करून ABRT विना चौकशी " ++"अडचण डिरेक्ट्रीला स्थानांतरित करेल." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport छोटे आहे आणि अडचणीचे निनावी वर्णन आहे. ABRT uReports चा वापर फास्ट ग्लोबल ड्युप्लिकेट डिटेक्शनकरिता करते. पूर्वनिर्धारित संरचनामध्ये uReport अहवाल पद्धतीच्या सुरूवातीस पाठवले जाते. ह्या पर्यायचा वापर करून uReports ला अडचण आढळल्यानंतर स्वयरित्या पाठवले जाते." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport छोटे आहे आणि अडचणीचे निनावी वर्णन आहे. ABRT uReports चा वापर फास्ट " ++"ग्लोबल ड्युप्लिकेट डिटेक्शनकरिता करते. पूर्वनिर्धारित संरचनामध्ये uReport " ++"अहवाल पद्धतीच्या सुरूवातीस पाठवले जाते. ह्या पर्यायचा वापर करून uReports ला " ++"अडचण आढळल्यानंतर स्वयरित्या पाठवले जाते." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "हे पर्याय समर्थीत करून रिपोर्टिंग प्रोसेस जे प्रॉबलेम नोटिफिकेशन बबल मधील रिपोर्ट बटन क्लिक करून सुरू होते, त्यास uReport पाठवल्यानंतर व्यत्यय निर्माण होते. संपूर्ण अहवाल निर्माण करण्यासाठी तुम्ही नेहमी पूर्वनिर्धारित अडचण ब्राउजरचा वापर करू शकता." ++msgstr "" ++"हे पर्याय समर्थीत करून रिपोर्टिंग प्रोसेस जे प्रॉबलेम नोटिफिकेशन बबल मधील " ++"रिपोर्ट बटन क्लिक करून सुरू होते, त्यास uReport पाठवल्यानंतर व्यत्यय निर्माण " ++"होते. संपूर्ण अहवाल निर्माण करण्यासाठी तुम्ही नेहमी पूर्वनिर्धारित अडचण " ++"ब्राउजरचा वापर करू शकता." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr " हे पर्याय सुरू करून ABRT कधीही कळवलेल्या अडचणींचे सूचना दाखवत नाही. शार्टंड रिपोर्टिंग सुरू केल्यानंतरच प्रभाव पडतो." ++msgstr "" ++" हे पर्याय सुरू करून ABRT कधीही कळवलेल्या अडचणींचे सूचना दाखवत नाही. शार्टंड " ++"रिपोर्टिंग सुरू केल्यानंतरच प्रभाव पडतो." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -256,7 +294,9 @@ msgstr "कोरडम्प अपलोड करण्यापूर्व + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr " हा पर्याय सुरू करून संवेदनशील डाटा आढळल्यास, ABRT नेहमी प्रतिबंधीत प्रवेशसह बग तिकिट निर्माण करेल." ++msgstr "" ++" हा पर्याय सुरू करून संवेदनशील डाटा आढळल्यास, ABRT नेहमी प्रतिबंधीत प्रवेशसह " ++"बग तिकिट निर्माण करेल." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -271,7 +311,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "संगणक बंद होतेवेळी किंवा वापरकर्ता बाहेर पडतेवेळी अपूर्ण अडचणी आढळली जातात. मौल्यावन अडचणीचे अहवाल पुरवण्याकरिता, ABRT तुम्हाला ह्या अडचणी सादर करण्यास परवानगी देणार नाही." ++msgstr "" ++"संगणक बंद होतेवेळी किंवा वापरकर्ता बाहेर पडतेवेळी अपूर्ण अडचणी आढळली जातात. " ++"मौल्यावन अडचणीचे अहवाल पुरवण्याकरिता, ABRT तुम्हाला ह्या अडचणी सादर करण्यास " ++"परवानगी देणार नाही." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -303,7 +346,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nसंकुल डाटाबेसची चौकशी करा व संकुल व घटकाचे नाव साठवा" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"संकुल डाटाबेसची चौकशी करा व संकुल व घटकाचे नाव साठवा" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -392,7 +438,9 @@ msgstr "एलिमेंट '%s' ला प्रॉबलेम डिरे + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "नाव '%s' हरवले आहे, कृपया नावाची मालकी असलेली सर्व्हिस सुरू नाही याची तपासणी करा.\n" ++msgstr "" ++"नाव '%s' हरवले आहे, कृपया नावाची मालकी असलेली सर्व्हिस सुरू नाही याची तपासणी " ++"करा.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -406,11 +454,15 @@ msgstr "हा प्रोग्राम रूट वापरकर्ता + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 तुम्हाला अडचण सादर करण्यास परवानगी देणार नाही. वेळ असल्यास व अडचणीचे निवारण करण्यासाठी डेव्हलपर्सला मदत करायची असल्यास, कृपया त्यास प्रत्यक्षरित्या संपर्क करा." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 तुम्हाला अडचण सादर " ++"करण्यास परवानगी देणार नाही. वेळ असल्यास व अडचणीचे निवारण करण्यासाठी " ++"डेव्हलपर्सला मदत करायची असल्यास, कृपया त्यास प्रत्यक्षरित्या संपर्क करा." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -447,7 +499,15 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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 पासून " ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"UPLOAD_DIRECTORY वॉच करतो आणि येणाऱ्या आर्काइव्हजना\n" ++"abrt.conf मधील निर्देशीत DumpLocation येथे खुले करतो\n" ++"\n" ++"UPLOAD_DIRECTORY पुरवले नसल्यास, \n" ++"WatchCrashdumpArchiveDir पर्यायच्या मूल्याचा वापर करते abrt.conf पासून " + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -461,19 +521,72 @@ msgstr "कंकरंट वर्कर्सची संख्या. प + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB मधील कमाल कॅशे आकार. पूर्वनिर्धारित आहे " + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "ओळख पटवणे बंद करते" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Red Hat Support वापकर्ता नाव" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "Red Hat Support पासवर्ड, दिले नसल्यास, त्याकरिता विनंती दिली जाईल" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "uReport SSL प्रमाणपत्र मार्ग किंवा प्रमाणपत्र प्रकार" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "--password करिता --username देखील निर्देशीत करावे लागेल" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "एकतर --username किंवा --certificate यांचा वापर शक्य आहे" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "एकतर --username किंवा --anonymous यांचा वापर शक्य आहे" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "एकतर --anonymous किंवा --certificate यांचा वापर शक्य आहे" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "अवैध बाबींची संख्या" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "अपरिचीत पर्याय मूल्य: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "पासवर्ड:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "पासवर्डविना पुढे जाणे अशक्य\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "HTTP ऑथेंटिकेटेड स्व अहवाल" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "SSL क्लाएंट ऑथेंटिकेटेड स्व अहवाल" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "निनावी स्व अहवाल" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -484,7 +597,15 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "वापर: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - मजकूर\n -d - अपलोड केलेले आर्काइव्ह नष्ट करा\n ABRT_SPOOL_DIR - डिरेक्ट्री जेथे वैध अपलोड केलेल्या आर्काइव्हज खुले केले जातात\n UPLOAD_DIR - अपलोड केलेले आर्काइव्ह जेथे साठविले जातात ती डिरेक्ट्री\n FILENAME - आर्काइव्ह फाइल नाव अपलोड केले\n" ++msgstr "" ++"वापर: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - मजकूर\n" ++" -d - अपलोड केलेले आर्काइव्ह नष्ट करा\n" ++" ABRT_SPOOL_DIR - डिरेक्ट्री जेथे वैध अपलोड केलेल्या आर्काइव्हज खुले केले " ++"जातात\n" ++" UPLOAD_DIR - अपलोड केलेले आर्काइव्ह जेथे साठविले जातात ती डिरेक्ट्री\n" ++" FILENAME - आर्काइव्ह फाइल नाव अपलोड केले\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -591,7 +712,9 @@ msgstr "तात्पुर्ती फाइल '%s'चे निर्म + 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:264 +@@ -605,11 +728,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nC/C++ बॅकट्रेसचे विश्लेषण करतो, ड्युप्लिकेशन हॅश निर्माण करतो, बॅकट्रेस श्रेणी, व डम्प डिरेक्ट्री DIR मधील क्रॅश फंक्शन ओळखतो" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"C/C++ बॅकट्रेसचे विश्लेषण करतो, ड्युप्लिकेशन हॅश निर्माण करतो, बॅकट्रेस " ++"श्रेणी, व डम्प डिरेक्ट्री DIR मधील क्रॅश फंक्शन ओळखतो" + ++#. + #. * 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" +@@ -624,7 +753,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nडम्प डिरेक्ट्री DIR मध्ये कोरडम्पचे UUIDची गणना करतो व साठवतो" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"डम्प डिरेक्ट्री DIR मध्ये कोरडम्पचे UUIDची गणना करतो व साठवतो" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -650,14 +782,20 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\nऊप्स प्रॉबलेम डिरेक्ट्रि DIR करीता UUID व DUPHASH ची गणना करतो व साठवतो" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"ऊप्स प्रॉबलेम डिरेक्ट्रि DIR करीता UUID व DUPHASH ची गणना करतो व साठवतो" + + #: ../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" ++"\n" ++"xorg प्रॉबलेम डिरेक्ट्रि DIR करीता UUID व DUPHASH ची गणना करतो व साठवतो" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -669,7 +807,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nपायथन क्रॅश डम्प्स्चे UUID व DUPHASHची गणना करतो व साठवतो" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"पायथन क्रॅश डम्प्स्चे UUID व DUPHASHची गणना करतो व साठवतो" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -684,10 +825,10 @@ msgid "Extracting the oops text from core" + msgstr "कोरपासून ऊप्स मजकूर प्राप्त करत आहे" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "{0} विश्लेषीत करणे अशक्य:\n" + "{1}" +-msgstr "{0} विश्लेषीत करणे अशक्य:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -701,14 +842,20 @@ msgstr "ऊप्स मजकूर यशस्वीरित्या प् + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "कर्नल लॉग आढळलेल्या हार्डवेअर त्रुटी निर्देशीत.\nहे संभाव्यतया सॉफ्टवेअर अडचण नाही.\n" ++msgstr "" ++"कर्नल लॉग आढळलेल्या हार्डवेअर त्रुटी निर्देशीत.\n" ++"हे संभाव्यतया सॉफ्टवेअर अडचण नाही.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nडम्प डिरेक्ट्री DIR मध्ये कोरडम्पचे विश्लेषण करतो, बॅकट्रेस् निर्माण करतो व साठवतो" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"डम्प डिरेक्ट्री DIR मध्ये कोरडम्पचे विश्लेषण करतो, बॅकट्रेस् निर्माण करतो व " ++"साठवतो" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -720,6 +867,7 @@ 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" +@@ -730,7 +878,10 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\nकोर डम्प व परस्पर बाइनरिपासून coredump-level बॅकट्रेस निर्माण करतो" ++msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"कोर डम्प व परस्पर बाइनरिपासून coredump-level बॅकट्रेस निर्माण करतो" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -758,7 +909,8 @@ msgstr "वापरकर्ता आदेश आढळल्यावर ब + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -768,13 +920,34 @@ msgid "" + " -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" ++" --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" +-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" ++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_FILE मधील सर्व build-ids यांना CACHEDIR करिता debuginfo इंस्टॉल " ++"करा\n" ++", TMPDIR यास तात्पुर्ते स्टेजिंग क्षेत्र असे वापर करा.\n" ++"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}" +@@ -782,7 +955,9 @@ 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" +@@ -805,21 +980,32 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "कोर डम्प अपलोड करायचे? (संवेदनशील डाटा कदाचित असू शकतो). उत्तर ' नाही' असल्यास, स्टॅक ट्रेस् स्थानीयरित्या निर्माण केले जाईल. (कदाचित प्रचंड डाटा डाउनलोड होईल)." ++msgstr "" ++"कोर डम्प अपलोड करायचे? (संवेदनशील डाटा कदाचित असू शकतो). उत्तर ' नाही' " ++"असल्यास, स्टॅक ट्रेस् स्थानीयरित्या निर्माण केले जाईल. (कदाचित प्रचंड डाटा " ++"डाउनलोड होईल)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"स्टॅक ट्रेस स्थानीयरित्या निर्माण करायचे? (जास्त डाटा डाउनलोड करणे शक्य " ++"परंतु विना स्टॅक ट्रेस पुढे जाणे अशक्य)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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आकारात SIZE पेक्षा कमी असल्यास DIR मधील डिरेक्ट्री (-d) किंवा फाइल्स् (-f) नष्ट करतो.\nFILE साठवले जातात (कधिच नष्ट केले जात नाही)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"आकारात SIZE पेक्षा कमी असल्यास DIR मधील डिरेक्ट्री (-d) किंवा फाइल्स् (-f) " ++"नष्ट करतो.\n" ++"FILE साठवले जातात (कधिच नष्ट केले जात नाही)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -961,7 +1147,8 @@ 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" +@@ -988,7 +1175,10 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nलॉग FILE वर लक्ष ठेवा, वाढल्यावर किंवा अदलाबदल झाल्यावर PROG चालवा" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"लॉग FILE वर लक्ष ठेवा, वाढल्यावर किंवा अदलाबदल झाल्यावर PROG चालवा" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -998,20 +1188,26 @@ msgstr "STRs न आढळल्यास PROG चालवू नका" + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "खंडीत BIOS मुळे कर्नल अडचण आढळली. दुर्दैवाने, अशा अडचणींचे कर्नल मैनटेनर्सतर्फे निवारण केले जात नाही." ++msgstr "" ++"खंडीत BIOS मुळे कर्नल अडचण आढळली. दुर्दैवाने, अशा अडचणींचे कर्नल " ++"मैनटेनर्सतर्फे निवारण केले जात नाही." + + #: ../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: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). कर्नल मैनटेनर्स् दोषीत अहवालांचे विश्लेषण करण्यास अशक्य." ++msgstr "" ++"कर्नल अडचणी आढळली, परंतु कर्नलमध्ये दोष देखील आढळले (फ्लग्स्:%s). कर्नल " ++"मैनटेनर्स् दोषीत अहवालांचे विश्लेषण करण्यास अशक्य." + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1023,7 +1219,10 @@ msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" +-msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nFILE (किंवा स्टँडर्ड इंपुट) पासून ऊप्स प्राप्त करा" ++msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"FILE (किंवा स्टँडर्ड इंपुट) पासून ऊप्स प्राप्त करा" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1031,13 +1230,16 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "प्रत्येक ऊप्सकरीता DIR मधील नवीन प्रॉबलेम डिरेक्ट्रि निर्माण करा" + + #: ../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 मध्ये निर्देशीत केले जाते" ++msgstr "" ++"-d DumpLocation प्रमाणेच आहे, DumpLocation ला abrt.conf मध्ये निर्देशीत केले " ++"जाते" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1073,7 +1275,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nFILE (किंवा स्टँडर्ड इंपुट) पासून Xorg क्रॅश प्राप्त करा" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"FILE (किंवा स्टँडर्ड इंपुट) पासून Xorg क्रॅश प्राप्त करा" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1081,16 +1286,20 @@ 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 "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "रिट्रेस सर्व्हरचा वापर शक्य नाही, कारण क्रॅश खूप मोठे आहे. स्थानीय रिट्रेसिंग वापरून पहा." ++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 +@@ -1113,10 +1322,10 @@ msgstr "%d लांबीचे HTTP हेडर पाठवण्यास + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "सर्व्हरपासून अनपेक्षीत HTTP प्रतिसाद: %d\n" + "%s" +-msgstr "सर्व्हरपासून अनपेक्षीत HTTP प्रतिसाद: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1132,7 +1341,9 @@ msgstr "सर्व्हरपासून अवैध प्रतिसा + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "रिट्रेस सर्व्हर संकुल '%s.%s'चे विश्लेषण करण्यास अशक्य आहे.\nहे अधिकृत '%s' रेपॉजिटरिज्चा भाग आहे?" ++msgstr "" ++"रिट्रेस सर्व्हर संकुल '%s.%s'चे विश्लेषण करण्यास अशक्य आहे.\n" ++"हे अधिकृत '%s' रेपॉजिटरिज्चा भाग आहे?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1157,7 +1368,9 @@ msgstr "रिट्रेस सर्व्हरचा वापर करण + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "क्रॅशचा आकार %lld बाईट्स् असे आढळले, परंतु रिट्रेस सर्व्हर फक्त %lld बाइट्स् पेक्षा कमी किंवा समानंतर क्रॅश स्वीकारतो." ++msgstr "" ++"क्रॅशचा आकार %lld बाईट्स् असे आढळले, परंतु रिट्रेस सर्व्हर फक्त %lld बाइट्स् " ++"पेक्षा कमी किंवा समानंतर क्रॅश स्वीकारतो." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1185,7 +1398,9 @@ msgstr "आर्काइव्हला अपलोड करण्यास + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "क्रॅशचा आकार %lld बाईट्स् असे आढळले, परंतु रिट्रेस सर्व्हर फक्त %lld बाइट्स् पेक्षा कमी किंवा समानंतर क्रॅश स्वीकारतो." ++msgstr "" ++"क्रॅशचा आकार %lld बाईट्स् असे आढळले, परंतु रिट्रेस सर्व्हर फक्त %lld बाइट्स् " ++"पेक्षा कमी किंवा समानंतर क्रॅश स्वीकारतो." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1228,13 +1443,17 @@ msgstr "अपलोड यशस्वी" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "तुमची प्रॉब्लेम डिरेक्ट्री दोषीत आहे व रिट्रेस सर्व्हरतर्फे विश्लेषीत होणार नाही." ++msgstr "" ++"तुमची प्रॉब्लेम डिरेक्ट्री दोषीत आहे व रिट्रेस सर्व्हरतर्फे विश्लेषीत होणार " ++"नाही." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "आर्काइव्हमध्ये सदोषीत फाइल्स् (जसे कि सिमलिंक्स्) समाविष्टीत आहे व विश्लेषण शक्य नाही." ++msgstr "" ++"आर्काइव्हमध्ये सदोषीत फाइल्स् (जसे कि सिमलिंक्स्) समाविष्टीत आहे व विश्लेषण " ++"शक्य नाही." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1250,10 +1469,10 @@ msgstr "रिट्रेस जॉब सुरू केले" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "कार्य Id: %s\nकार्य पासवर्ड: %s\n" ++msgstr "कार्य Id: %s\n" ++"कार्य पासवर्ड: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1261,10 +1480,10 @@ msgstr "सर्व्हरपासून अवैध प्रतिसा + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "कार्य स्थिती: %s\n" + "%s\n" +-msgstr "कार्य स्थिती: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1291,7 +1510,9 @@ msgstr "रिट्रेस सर्व्हरकरीता असुर + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "आर्काइव्ह अपलोड करण्यापूर्वी रिट्रेस सर्व्हर दिलेल्या संकुलचे विश्लेषन करू शकतो याची तपासणी करू नका" ++msgstr "" ++"आर्काइव्ह अपलोड करण्यापूर्वी रिट्रेस सर्व्हर दिलेल्या संकुलचे विश्लेषन करू " ++"शकतो याची तपासणी करू नका" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1341,7 +1562,9 @@ msgstr "सर्व्हरवरील कार्याचे पासव + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [पर्याय]\nऑपरेशन्स: create/status/backtrace/log/batch/exploitable" ++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 +@@ -1378,9 +1601,12 @@ msgstr "debuginfo संकुले डाउलनोड करा व GDB च + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "debuginfo संकुले डाऊनलोड करतो, ज्यास बराच वेळ लागू शकतो, व डिस्क जागा देखील लागू शकते. तरी, RetraceServer खेरीज, कोरडम्पला रिमोट मशीन्स् करीता पाठवत नाही." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"debuginfo संकुले डाऊनलोड करतो, ज्यास बराच वेळ लागू शकतो, व डिस्क जागा देखील " ++"लागू शकते. तरी, RetraceServer खेरीज, कोरडम्पला रिमोट मशीन्स् करीता पाठवत " ++"नाही." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1388,12 +1614,17 @@ msgstr "विश्लेषणकरीता कोर डम्पला र + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "कोरडम्पला सर्व्हरकरीता अपलोड करतो, जे बॅकट्रेस निर्माण करते व पाठवते. फायदे: debuginfo डाऊनलोड्स्ची आवश्यकता नाही. रिट्रेस सर्व्हरचे डिबगइंफोचे डाटाबेस बऱ्यापैकी पूर्ण आहे. रिट्रेस सर्व्हर उत्तम बॅकट्रेसेस् निर्माण करू शकतो. तोटे: अपलोड करण्याजोगी कोरडम्पमध्ये क्रॅश्ड् प्रोग्रामपासूनचे सर्व डाटा समाविष्टीत आहे, व्यक्तिगत डाटा समाविष्टीत, आढळल्यास." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"कोरडम्पला सर्व्हरकरीता अपलोड करतो, जे बॅकट्रेस निर्माण करते व पाठवते. फायदे: " ++"debuginfo डाऊनलोड्स्ची आवश्यकता नाही. रिट्रेस सर्व्हरचे डिबगइंफोचे डाटाबेस " ++"बऱ्यापैकी पूर्ण आहे. रिट्रेस सर्व्हर उत्तम बॅकट्रेसेस् निर्माण करू शकतो. " ++"तोटे: अपलोड करण्याजोगी कोरडम्पमध्ये क्रॅश्ड् प्रोग्रामपासूनचे सर्व डाटा " ++"समाविष्टीत आहे, व्यक्तिगत डाटा समाविष्टीत, आढळल्यास." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1418,10 +1649,13 @@ msgstr "असुरक्षित जोडणीचा वापर करा + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "असुरक्षित जोडणी <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(सावधानता)</a> स्वीकारण्यासाठी \"insecure\" लिहा" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"असुरक्षित जोडणी <a href=\"https://fedorahosted.org/abrt/wiki/" ++"AbrtRetraceServerInsecureConnection\" >(सावधानता)</a> " ++"स्वीकारण्यासाठी \"insecure\" लिहा" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1435,7 +1669,9 @@ msgstr "~/.xsession-errors फाइलपासून संबंधित ओ + 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." +@@ -1593,7 +1829,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nबोधि सर्व्हरवर सुधारणांकरीता शोधा" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"बोधि सर्व्हरवर सुधारणांकरीता शोधा" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1611,16 +1850,21 @@ msgstr "संकुलाची स्थानीय आवृत्ती उ + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "अडचणचे निवारण करण्यासाठी सुधारणा अस्तित्वात आहे. प्रतिष्ठापन शक्य करण्यासाठी: %s चालवा. तरिही बग सादर करायचे?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"अडचणचे निवारण करण्यासाठी सुधारणा अस्तित्वात आहे. प्रतिष्ठापन शक्य करण्यासाठी:" ++" %s चालवा. तरिही बग सादर करायचे?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\nस्प्लिट ऊप्स संदेशकरिता स्कॅन करतो. छपाई व किंवा नष्ट करणे शक्य आहे." ++msgstr "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"स्प्लिट ऊप्स संदेशकरिता स्कॅन करतो. छपाई व किंवा नष्ट करणे शक्य आहे." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1671,7 +1915,9 @@ msgstr "अधिक माहितीकरीता 'abrt-cli COMMAND --help' + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +-msgstr "Red Hat Customer Portal अंतर्गत घटना निर्माण करण्यासाठी %sरन 'abrt-cli report %s'\n" ++msgstr "" ++"Red Hat Customer Portal अंतर्गत घटना निर्माण करण्यासाठी %sरन 'abrt-cli " ++"report %s'\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1697,9 +1943,13 @@ msgstr "फक्त निर्देशीत टाइमस्टॅम् + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "स्वरिपोर्टिंग गुणविशेष बंद आहे. कृपया\nroot परवानगी सक्षम वापरकर्ता नुरूप, 'abrt-auto-reporting enabled' असे यास गृहीत धरा\n" ++msgstr "" ++"स्वरिपोर्टिंग गुणविशेष बंद आहे. कृपया\n" ++"root परवानगी सक्षम वापरकर्ता नुरूप, 'abrt-auto-reporting enabled' असे यास " ++"गृहीत धरा\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1774,7 +2024,9 @@ msgstr "फक्त टाइमस्टॅम्पनंतर आढळल + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "रिमोट विश्लेषण अपयशी ठरल्यास विश्लेषण किंवा स्थानीय विश्लेषण सुरू करण्यासाठी कोर डम्पला रिमोट रिट्रेस् सर्व्हरकरीता पाठवा" ++msgstr "" ++"रिमोट विश्लेषण अपयशी ठरल्यास विश्लेषण किंवा स्थानीय विश्लेषण सुरू करण्यासाठी " ++"कोर डम्पला रिमोट रिट्रेस् सर्व्हरकरीता पाठवा" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1782,10 +2034,17 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "सर्व्हरकरीता कोरडम्प अपलोड करतो, जे बॅकट्रेस् निर्माण करते व रिटर्न करते. वापरकर्त्याला कोरडम्प कुठेहि अपलोड करायचे नसल्यास इव्हेंट स्थानीय विश्लेषण सुरू करतो. रिमोट विश्लेषण अपयशी झाल्यावरहि स्थानीय विश्लेषण चालवले जाते. फायदे: debuginfo डाउनलोड्सकरीता आवश्यकता नाही. debuginfoचे रिट्रेस सर्व्हर डाटाबेस जास्त पूर्ण आहे. रिट्रेस सर्व्हर उत्तम बॅकट्रेस निर्माण करू शकतो. तोटे: अपलोड केलेल्या कोरडम्पमध्ये क्रॅश्ड् प्रोग्रामपासूनचे सर्व डाटा समाविष्टीत असते, व्यक्तिगत डाटा देखील समाविष्टीत असते, असल्यास." ++msgstr "" ++"सर्व्हरकरीता कोरडम्प अपलोड करतो, जे बॅकट्रेस् निर्माण करते व रिटर्न करते. " ++"वापरकर्त्याला कोरडम्प कुठेहि अपलोड करायचे नसल्यास इव्हेंट स्थानीय विश्लेषण " ++"सुरू करतो. रिमोट विश्लेषण अपयशी झाल्यावरहि स्थानीय विश्लेषण चालवले जाते. " ++"फायदे: debuginfo डाउनलोड्सकरीता आवश्यकता नाही. debuginfoचे रिट्रेस सर्व्हर " ++"डाटाबेस जास्त पूर्ण आहे. रिट्रेस सर्व्हर उत्तम बॅकट्रेस निर्माण करू शकतो. " ++"तोटे: अपलोड केलेल्या कोरडम्पमध्ये क्रॅश्ड् प्रोग्रामपासूनचे सर्व डाटा " ++"समाविष्टीत असते, व्यक्तिगत डाटा देखील समाविष्टीत असते, असल्यास." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1794,13 +2053,16 @@ msgstr "VM कोरचे विश्लेषण करा" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "कर्नल डिबगइंफो संकुल प्रतिष्ठापीत करा, कर्नल लॉग व ऊप्स् संदेश निर्माण करा" ++msgstr "" ++"कर्नल डिबगइंफो संकुल प्रतिष्ठापीत करा, कर्नल लॉग व ऊप्स् संदेश निर्माण करा" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "कर्नल debuginfo संकुले प्रतिष्ठापीत करणे आवश्यक आहे, ज्यास लक्षणीय वेळ लागू शकतो, व डिस्क जागेचा वापर होऊ शकतो." ++msgstr "" ++"कर्नल debuginfo संकुले प्रतिष्ठापीत करणे आवश्यक आहे, ज्यास लक्षणीय वेळ लागू " ++"शकतो, व डिस्क जागेचा वापर होऊ शकतो." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1814,7 +2076,9 @@ msgstr "ॲप्लिकेशनच्या GConf डिरेक्ट् + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "gconftool-2 --recursive-list /apps/executable चालवतो व त्यास 'gconf_subtree' घटक म्हणून साठवतो." ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable चालवतो व त्यास 'gconf_subtree' " ++"घटक म्हणून साठवतो." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1828,7 +2092,9 @@ 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" +@@ -1840,9 +2106,11 @@ msgstr "होम डिरेक्ट्रीपासून .vimrc व .gvim + + #: ../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 "होम डिरेक्ट्रीत .vimrc व .gvimrc आहे किंवा नाही याची तपासणी करतो व त्यास परस्पररित्या user_vimrc व user_gvimrc म्हणून साठवतो." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"होम डिरेक्ट्रीत .vimrc व .gvimrc आहे किंवा नाही याची तपासणी करतो व त्यास " ++"परस्पररित्या user_vimrc व user_gvimrc म्हणून साठवतो." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/ms.po b/po/ms.po +index 9d267f4..4824646 100644 +--- a/po/ms.po ++++ b/po/ms.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Malay (http://www.transifex.com/projects/p/fedora-abrt/language/ms/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Malay (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ms/)\n" + "Language: ms\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/my.po b/po/my.po +index 1491484..43bf0fe 100644 +--- a/po/my.po ++++ b/po/my.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Burmese (http://www.transifex.com/projects/p/fedora-abrt/language/my/)\n" ++"Language-Team: Burmese (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/my/)\n" ++"Language: my\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: my\n" + "Plural-Forms: nplurals=1; plural=0;\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/nb.po b/po/nb.po +index e98d3d6..c925453 100644 +--- a/po/nb.po ++++ b/po/nb.po +@@ -7,17 +7,19 @@ + # Kjartan Maraas , 2011-2012 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/fedora-abrt/language/nb/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/fedora-" ++"abrt/language/nb/)\n" + "Language: nb\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -90,7 +92,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -129,6 +133,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -143,6 +148,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Rapporter" +@@ -192,7 +198,10 @@ 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" ++msgstr "" ++"& [-v] [KATALOG] …\n" ++"\n" ++"Panelprogram som varsler bruker når nye problemer oppdages av ABRT\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -213,10 +222,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -230,15 +238,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -303,7 +311,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c KONFIGURASJONSFIL] -d KATALOG\n\nSpør pakkedatabasen og lagre navn på pakke og komponent" ++msgstr "" ++"& [-v] [-c KONFIGURASJONSFIL] -d KATALOG\n" ++"\n" ++"Spør pakkedatabasen og lagre navn på pakke og komponent" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -406,10 +417,10 @@ msgstr "Programmet må kjøres som root" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -461,19 +472,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -607,9 +671,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -684,8 +750,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -720,6 +785,7 @@ 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" +@@ -758,7 +824,8 @@ msgstr "Avslutt med brukerkommando" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -768,7 +835,8 @@ msgid "" + " -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" ++" --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" +@@ -817,7 +885,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1031,6 +1100,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1091,6 +1161,7 @@ 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 +@@ -1113,8 +1184,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1250,10 +1320,10 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Oppgave-ID: %s\nPassord for oppgave: %s\n" ++msgstr "Oppgave-ID: %s\n" ++"Passord for oppgave: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1261,10 +1331,10 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Status for oppgave: %s\n" + "%s\n" +-msgstr "Status for oppgave: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1373,13 +1443,14 @@ msgstr "Lokalt GNU feilsøkingsprogram" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Last ned debuginfo-pakker og generer liste med funksjonskall lokalt med GDB" ++msgstr "" ++"Last ned debuginfo-pakker og generer liste med funksjonskall lokalt med GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1388,11 +1459,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1418,9 +1489,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1611,8 +1682,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1697,7 +1768,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1782,8 +1854,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1840,8 +1912,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/nds.po b/po/nds.po +index ef5b072..fcc34a8 100644 +--- a/po/nds.po ++++ b/po/nds.po +@@ -6,17 +6,19 @@ + # Jiří Moskovčák , 2011 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Low German (http://www.transifex.com/projects/p/fedora-abrt/language/nds/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Low German (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/nds/)\n" + "Language: nds\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -89,7 +91,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -128,6 +132,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -142,6 +147,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Berichten" +@@ -212,10 +218,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +234,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -405,10 +410,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -460,19 +465,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -606,9 +664,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -683,8 +743,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -719,6 +778,7 @@ 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" +@@ -757,7 +817,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +828,8 @@ msgid "" + " -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" ++" --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" +@@ -816,7 +878,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1030,6 +1093,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1090,6 +1154,7 @@ 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 +@@ -1112,8 +1177,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1249,8 +1313,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1260,8 +1323,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1377,8 +1439,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1387,11 +1449,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1417,9 +1479,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1610,8 +1672,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1696,7 +1758,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1781,8 +1844,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1839,8 +1902,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/ne.po b/po/ne.po +index 228a615..68ac458 100644 +--- a/po/ne.po ++++ b/po/ne.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Nepali (http://www.transifex.com/projects/p/fedora-abrt/language/ne/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Nepali (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ne/)\n" + "Language: ne\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/nl.po b/po/nl.po +index 824d3ec..6fab281 100644 +--- a/po/nl.po ++++ b/po/nl.po +@@ -8,17 +8,19 @@ + # Richard E. van der Luit , 2012 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 19:35+0000\n" +-"Last-Translator: Geert Warrink \n" +-"Language-Team: Dutch (http://www.transifex.com/projects/p/fedora-abrt/language/nl/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 02:35-0500\n" ++"Last-Translator: Geert Warrink \n" ++"Language-Team: Dutch (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/nl/)\n" + "Language: nl\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -33,7 +35,10 @@ 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" +-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" ++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?" +@@ -41,7 +46,8 @@ 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?" ++msgstr "" ++"Wil je het automatisch indienen van anonieme crashrapporten aanzetten?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -91,10 +97,17 @@ msgstr "Kan notificatie niet sluiten: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "Je gaat de notificaties van een bepaald probleem tot zwijgen brengen. Je zult nooit meer een notificatie bubbel voor dit probleem zien, ABRT zal het echter detecteren en je kunt het rapporteren vanuit de ABRT GUI.\n\nWil je verdergaan?" ++msgstr "" ++"Je gaat de notificaties van een bepaald probleem tot zwijgen brengen. Je " ++"zult nooit meer een notificatie bubbel voor dit probleem zien, ABRT zal het " ++"echter detecteren en je kunt het rapporteren vanuit de ABRT GUI.\n" ++"\n" ++"Wil je verdergaan?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -103,11 +116,15 @@ msgstr "Waarschuwing" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "Mededelingengebied-applet dat gebruiker bericht over problemen ontdekt door ABRT" ++msgstr "" ++"Mededelingengebied-applet dat gebruiker bericht over problemen ontdekt door " ++"ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "Geert Warrink \nRichard van der Luit " ++msgstr "" ++"Geert Warrink \n" ++"Richard van der Luit " + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -130,6 +147,7 @@ msgid "Ignore forever" + msgstr "Altijd negeren" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Open" +@@ -144,6 +162,7 @@ msgstr "Er Is Een Bekend Probleem Opgetreden" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Rapport" +@@ -186,14 +205,20 @@ msgstr "Kan niet-blokkerende modus niet instellen voor gio kanaal: %s" + 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" ++msgstr "" ++"Verbingding openen met sessiemanager mislukte: '%s', kennisgeving kan bij de " ++"volgende keer inloggen verschijnen" + + #: ../src/applet/applet.c:1635 + 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" ++msgstr "" ++"& [-v] [MAP]...\n" ++"\n" ++"Applet die de gebruiker waarschuwt als nieuwe problemen door ABRT " ++"gedetecteerd zijn\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -214,11 +239,15 @@ msgstr "Stilzwijgend verkort rapporteren" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "Het coredump bestand is nodig voor het aanmaken van een stack trace, wat een tijd en ruimte spenderende bewerking is. ABRT biedt een service welke de stack trace aanmaakt uit de coredump, maar je moet de coredump uploaden naar deze service. Als deze optie uitgezet is, zal ABRT de coredump uploaden zonder te vragen." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"Het coredump bestand is nodig voor het aanmaken van een stack trace, wat een " ++"tijd en ruimte spenderende bewerking is. ABRT biedt een service welke de " ++"stack trace aanmaakt uit de coredump, maar je moet de coredump uploaden naar " ++"deze service. Als deze optie uitgezet is, zal ABRT de coredump uploaden " ++"zonder te vragen." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -226,28 +255,44 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT slaat probleemdata op in mappen. Iedere keer als ABRT een beschrijfbare map nodig heeft, wordt de map verplaatst van de systeemlocatie naar je persoonlijke map. Als deze optie uitgezet wordt, zal ABRT de probleemmap verplaatsen zonder te vragen." ++msgstr "" ++"ABRT slaat probleemdata op in mappen. Iedere keer als ABRT een beschrijfbare " ++"map nodig heeft, wordt de map verplaatst van de systeemlocatie naar je " ++"persoonlijke map. Als deze optie uitgezet wordt, zal ABRT de probleemmap " ++"verplaatsen zonder te vragen." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport is een korte en volledig anonieme beschrijving van een probleem. ABRT gebruikt uReports voor snelle globale duplicaat detectie. In de standaard configuratie wordt uReport verstuurd aan het begin van het rapportageproces. Als deze optie aangezet is, worden uReports automatisch verstuurd na het ontdekken van het probleem." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport is een korte en volledig anonieme beschrijving van een probleem. " ++"ABRT gebruikt uReports voor snelle globale duplicaat detectie. In de " ++"standaard configuratie wordt uReport verstuurd aan het begin van het " ++"rapportageproces. Als deze optie aangezet is, worden uReports automatisch " ++"verstuurd na het ontdekken van het probleem." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "Als deze optie aangezet is, zal het rapportageproces opgestart met een klik op de Rapporteren knop in de probleemmeldingsbubbel onderbroken worden nadat een uReport verstuurd is. Je kunt altijd de standaard probleembrowser gebruiken om een complete rapportage aan te maken." ++msgstr "" ++"Als deze optie aangezet is, zal het rapportageproces opgestart met een klik " ++"op de Rapporteren knop in de probleemmeldingsbubbel onderbroken worden nadat " ++"een uReport verstuurd is. Je kunt altijd de standaard probleembrowser " ++"gebruiken om een complete rapportage aan te maken." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "Als deze optie aangezet is, zal ABRT nooit meldingen tonen van gerapporteerde problemen. Dit heeft alleen effect als Verkort rapporteren aan gezet is." ++msgstr "" ++"Als deze optie aangezet is, zal ABRT nooit meldingen tonen van " ++"gerapporteerde problemen. Dit heeft alleen effect als Verkort rapporteren " ++"aan gezet is." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -257,7 +302,9 @@ msgstr "Vraag voordat een coredump geüpload wordt " + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr " Als deze optie aangezet is, zal ABRT altijd een bug ticket aanmaken met beperkte toegang als mogelijk gevoelige data ontdekt is." ++msgstr "" ++" Als deze optie aangezet is, zal ABRT altijd een bug ticket aanmaken met " ++"beperkte toegang als mogelijk gevoelige data ontdekt is." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -272,7 +319,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "Incomplete problemen worden gedetecteerd terwijl de computer afgesloten wordt of als een gebruiker uitlogt. Om waardevolle probleemrapporten aan te bieden, zal ABRT je niet toestaan om deze problemen in te dienen." ++msgstr "" ++"Incomplete problemen worden gedetecteerd terwijl de computer afgesloten " ++"wordt of als een gebruiker uitlogt. Om waardevolle probleemrapporten aan te " ++"bieden, zal ABRT je niet toestaan om deze problemen in te dienen." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -304,7 +354,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d MAP\n\nRaadpleeg pakketdatabase en sla pakket- en componentnaam op" ++msgstr "" ++"& [-v] [-c CONFFILE] -d MAP\n" ++"\n" ++"Raadpleeg pakketdatabase en sla pakket- en componentnaam op" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -367,7 +420,9 @@ msgstr "Krijg geen toegang tot het probleem om het te veranderen" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Veranderen van mapeigenaar mislukte. Controleer systeemlogs voor meer details. " ++msgstr "" ++"Veranderen van mapeigenaar mislukte. Controleer systeemlogs voor meer " ++"details. " + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -393,7 +448,9 @@ msgstr "Kan het element '%s' niet verwijderen uit de probleemmap '%s'" + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "De naam '%s' is verloren gegaan, controleer of er geen andere service draait die eigenaar is van de naam.\n" ++msgstr "" ++"De naam '%s' is verloren gegaan, controleer of er geen andere service draait " ++"die eigenaar is van de naam.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -407,11 +464,17 @@ msgstr "Dit programma moet door root worden uitgevoerd" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "De probleem data is niet compleet. Dit gebeurt gewoonlijk als een probleem ontdekt wordt terwijl de computer afsluit of een gebruiker uitlogt. Om waardevolle probleemrapporten te bieden, zal ABRT je niet toestaan om dit probleem in te dienen. Als je tijd beschikbaar hebt en je de ontwikkelaars wilt helpen met hun inspanning om dit probleem op te lossen, neem dan direct contact met hen op." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"De probleem data is niet compleet. Dit gebeurt gewoonlijk als een probleem " ++"ontdekt wordt terwijl de computer afsluit of een gebruiker uitlogt. Om " ++"waardevolle probleemrapporten te bieden, zal ABRT je niet toestaan om dit " ++"probleem in te dienen. Als je tijd beschikbaar hebt en je de ontwikkelaars " ++"wilt helpen met hun inspanning om dit probleem op te lossen, neem dan direct " ++"contact met hen op." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -448,7 +511,15 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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." ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_MAP]\n" ++"\n" ++"\n" ++"Volgt UPLOAD_MAP en pakt binnenkomende archieven uit in de DumpLocation\n" ++"gespecificeerd in abrt.conf\n" ++"\n" ++"Als UPLOAD_MAP niet opgegeven is, wordt, een waarde uit\n" ++"de WatchCrashdumpArchiveDir optie uit abrt.conf gebruikt." + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -462,19 +533,73 @@ msgstr "Aantal gelijktijdige werkers. Standaard is " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximale cachegrootte in MiB. Standaard is " + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "Ongeldig aantal argumenten" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Onbekende optiewaarde: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++#, fuzzy ++msgid "SSL Client Authenticated auto reporting" ++msgstr "Stilzwijgend verkort rapporteren" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -485,7 +610,15 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "Gebruik: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR BESTANDSNAAM\n\n -v - Breedsprakig\n -d - Verwijder het opgestuurde archief\n ABRT_SPOOL_DIR - Map waarin geldige opgestuurde archieven uitgepakt worden\n UPLOAD_DIR - Map waarin opgestuurde archieven opgeslagen worden\n FILENAME - Bestandsnaam van opgestuurde archief\n" ++msgstr "" ++"Gebruik: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR BESTANDSNAAM\n" ++"\n" ++" -v - Breedsprakig\n" ++" -d - Verwijder het opgestuurde archief\n" ++" ABRT_SPOOL_DIR - Map waarin geldige opgestuurde archieven uitgepakt " ++"worden\n" ++" UPLOAD_DIR - Map waarin opgestuurde archieven opgeslagen worden\n" ++" FILENAME - Bestandsnaam van opgestuurde archief\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -592,13 +725,16 @@ msgstr "Kan tijdelijk bestand '%s' niet aanmaken" + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-msgstr "Kan niet naar '%s' schrijven. Probleem '%s' zal niet uit de genegeerde problemen '%s' verwijderd worden" ++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:264 + #, 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" ++msgstr "" ++"Kan '%s' niet hernoemen naar '%s'. Probleem '%s' te verwijderen mislukte" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" +@@ -606,11 +742,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [opties] -d DIR\n\nAnalyseert C/C++ backtrace, genereert duplicaat hash, backtrace waardering, en identificeert crash functie in dump map DIR" ++msgstr "" ++"& [opties] -d DIR\n" ++"\n" ++"Analyseert C/C++ backtrace, genereert duplicaat hash, backtrace waardering, " ++"en identificeert crash functie in dump map DIR" + ++#. + #. * 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" +@@ -625,7 +767,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nBerekent en slaat UUID van coredump op in probleemmap DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Berekent en slaat UUID van coredump op in probleemmap DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -651,14 +796,20 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d MAP\n\nBerekent en slaat UUID en DUPHASH op voor oops probleem map MAP" ++msgstr "" ++"& [-v] -d MAP\n" ++"\n" ++"Berekent en slaat UUID en DUPHASH op voor oops probleem map MAP" + + #: ../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 MAP\n\nBerekent en slaat UUID en DUPHASH op voor xorg probleem map MAP" ++msgstr "" ++"& [-v] -d MAP\n" ++"\n" ++"Berekent en slaat UUID en DUPHASH op voor xorg probleem map MAP" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -670,7 +821,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d MAP\n\nBerekent en slaat UUID en DUPHASH op van python crashdumps" ++msgstr "" ++"& [-v] -d MAP\n" ++"\n" ++"Berekent en slaat UUID en DUPHASH op van python crashdumps" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -685,10 +839,10 @@ msgid "Extracting the oops text from core" + msgstr "De oops tekst wordt geëxtraheerd uit de core " + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "Kan {0} niet verwerken:\n" + "{1}" +-msgstr "Kan {0} niet verwerken:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -702,14 +856,19 @@ msgstr "Oops tekst met succes geextraheerd" + 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" ++msgstr "" ++"De kernel log geeft aan dat hardwarefouten zijn ontdekt.\n" ++"Dit is waarschijnlijk geen softwareprobleem.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nAnalyseert coredump in dump map DIR, genereert en slaat backtrace op" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analyseert coredump in dump map DIR, genereert en slaat backtrace op" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -721,6 +880,7 @@ 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" +@@ -731,7 +891,11 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d MAP\n\nMaakt coredump-level backtrace aan van core dump en corresponderende binaire programma" ++msgstr "" ++"& [-v] [-r] -d MAP\n" ++"\n" ++"Maakt coredump-level backtrace aan van core dump en corresponderende binaire " ++"programma" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -759,7 +923,8 @@ msgstr "Verlaten op gebruikerscommando" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -769,13 +934,33 @@ msgid "" + " -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" ++" --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" +-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" ++msgstr "" ++"Gebruik: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++"[--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--" ++"size_mb=GROOTTE]\n" ++"[-e, --exact=PAD[:PAD]...]\n" ++"\n" ++"Installeert debuginfo voor alle build-ids getoond in BUILD_IDS_FILE\n" ++"in CACHEDIR, met gebruik van TMPDIR als tijdelijk gebied.\n" ++"Oude 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.\n" ++"Standaard: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -783,7 +968,9 @@ msgstr "Kan niet openen {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Coredump refereert naar {0} debuginfo-bestanden, {1} ervan zijn niet geïnstalleerd" ++msgstr "" ++"Coredump refereert naar {0} debuginfo-bestanden, {1} ervan zijn niet " ++"geïnstalleerd" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -806,21 +993,32 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Is het OK de coredump te uploaden? (Het kan gevoelige data bevatten). Als je antwoord 'Nee' is , zal lokaal een stacktrace aangemaakt worden. (Dit kan een grote hoeveelheid data gaan downloaden.)" ++msgstr "" ++"Is het OK de coredump te uploaden? (Het kan gevoelige data bevatten). Als je " ++"antwoord 'Nee' is , zal lokaal een stacktrace aangemaakt worden. (Dit kan " ++"een grote hoeveelheid data gaan downloaden.)" + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "Wil je lokaal een stacktrace aanmaken? (Dit kan een grote hoeveelheid data gaan downloaden maar rapporteren kan niet verdergaan zonder een stacktrace)." ++msgstr "" ++"Wil je lokaal een stacktrace aanmaken? (Dit kan een grote hoeveelheid data " ++"gaan downloaden maar rapporteren kan niet verdergaan zonder een stacktrace)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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\nVerwijdert probleemmappen (-d) of bestanden (-f) in DIRs totdat zij kleiner zijn dan SIZE.\nFILEs worden behouden (nooit verwijderd)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Verwijdert probleemmappen (-d) of bestanden (-f) in DIRs totdat zij kleiner " ++"zijn dan SIZE.\n" ++"FILEs worden behouden (nooit verwijderd)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -851,7 +1049,8 @@ msgstr "Gebruik: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "Kan huidige werkmap niet verkrijgen omdat het waarschijnlijk verwijderd is" ++msgstr "" ++"Kan huidige werkmap niet verkrijgen omdat het waarschijnlijk verwijderd is" + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +@@ -962,7 +1161,9 @@ msgstr "Sprong naar een ongeldig adres" + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "Toegang tot voorbij het einde van afgebeeld bestand, ongeldig adres, niet-uitgelijnde toegang, enz." ++msgstr "" ++"Toegang tot voorbij het einde van afgebeeld bestand, ongeldig adres, niet-" ++"uitgelijnde toegang, enz." + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +@@ -989,7 +1190,11 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nHoud logbestand FILE in de gaten, voer PROG uit wanneer het groeit of wanneer het vervangen is" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Houd logbestand FILE in de gaten, voer PROG uit wanneer het groeit of " ++"wanneer het vervangen is" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -999,20 +1204,26 @@ msgstr "Voer PROG niet uit als STRs niet gevonden zijn" + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "Er is een kernelprobleem opgetreden wegens een BIOS defect. Zulke problemen kunnen helaas niet opgelost worden met kernelonderhoud." ++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:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "Een kernelprobleem trad op, maar jouw hardware wordt niet ondersteund, daarom kunnen kernelmaintainers dit probleem niet repareren." ++msgstr "" ++"Een kernelprobleem trad op, maar jouw hardware wordt niet ondersteund, " ++"daarom kunnen kernelmaintainers dit probleem niet repareren." + + #: ../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." ++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:153 + #, c-format +@@ -1024,7 +1235,10 @@ 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)" ++msgstr "" ++"& [-vusoxm] [-d MAP]/[-D] [BESTAND]\n" ++"\n" ++"Extraheer oops uit BESTAND (of standaard input)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1032,13 +1246,16 @@ 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: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: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" ++msgstr "" ++"Hetzelfde als -d DumpLocation, DumpLocation wordt gespecificeerd in abrt." ++"conf" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1074,7 +1291,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nExtraheer Xorg crash van FILE (of standaard input)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extraheer Xorg crash van FILE (of standaard input)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1088,10 +1308,13 @@ msgstr "Maak probleem map aan in MAP voor elke gevonden crash" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "De retrace-server kan niet gebruikt worden omdat de crash te groot is. Probeer lokaal te retracen. " ++msgstr "" ++"De retrace-server kan niet gebruikt worden omdat de crash te groot is. " ++"Probeer lokaal te retracen. " + + #. 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 +@@ -1114,10 +1337,10 @@ msgstr "Versturen van HTTP-header met lengte %d mislukte: NSS fout %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Onverwacht HTTP-antwoord van server: %d\n" + "%s" +-msgstr "Onverwacht HTTP-antwoord van server: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1133,7 +1356,9 @@ msgstr "Ongeldig antwoord van server: HTTP-message-body ontbreekt." + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "Retrace server kan pakket '%s.%s' niet verwerken.\nIs het een onderdeel van officiële '%s' repositories?" ++msgstr "" ++"Retrace server kan pakket '%s.%s' niet verwerken.\n" ++"Is het een onderdeel van officiële '%s' repositories?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1158,7 +1383,9 @@ msgstr "'%s' moet een gewoon bestand zijn om de retrace-server te gebruiken." + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "De grootte van de crash is %lld bytes, maar de retrace-server accepteert alleen crashes kleiner dan of gelijk aan %lld bytes." ++msgstr "" ++"De grootte van de crash is %lld bytes, maar de retrace-server accepteert " ++"alleen crashes kleiner dan of gelijk aan %lld bytes." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1186,7 +1413,9 @@ msgstr "Een archief klaarmaken voor uploaden" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "De grootte van het archief is %lld bytes, maar de retrace-server accepteert alleen archieven kleiner dan of gelijk aan %lld bytes." ++msgstr "" ++"De grootte van het archief is %lld bytes, maar de retrace-server accepteert " ++"alleen archieven kleiner dan of gelijk aan %lld bytes." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1229,13 +1458,17 @@ msgstr "Upload succesvol" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "De probleemmap is corrupt en kan niet door de Retrace-server verwerkt worden." ++msgstr "" ++"De probleemmap is corrupt en kan niet door de Retrace-server verwerkt worden." ++"" + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Het archief bevat kwaadaardige bestanden (zoals symlinks) en kan dus niet verwerkt worden." ++msgstr "" ++"Het archief bevat kwaadaardige bestanden (zoals symlinks) en kan dus niet " ++"verwerkt worden." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1251,10 +1484,10 @@ msgstr "Retrace-taak opgestart" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Taak Id: %s\nTaak Password: %s\n" ++msgstr "Taak Id: %s\n" ++"Taak Password: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1262,10 +1495,10 @@ msgstr "Ongeldig antwoord van de server: X-Task-Status ontbreekt." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Taak status: %s\n" + "%s\n" +-msgstr "Taak status: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1278,7 +1511,9 @@ msgstr "Verzenden van HTTP-header met lengte %d mislukte: NSS fout %d." + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Retracen mislukte. Probeer het later opnieuw. Indien het probleem zich blijft voordoen, rapporteer dit dan." ++msgstr "" ++"Retracen mislukte. Probeer het later opnieuw. Indien het probleem zich " ++"blijft voordoen, rapporteer dit dan." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1292,7 +1527,9 @@ msgstr "sta onveilige verbinding toe naar retrace-server" + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "controleer niet of retrace-server bij machte is het betreffende pakket te verwerken voordat archief wordt geupload" ++msgstr "" ++"controleer niet of retrace-server bij machte is het betreffende pakket te " ++"verwerken voordat archief wordt geupload" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1324,7 +1561,9 @@ msgstr "Wacht op poll bewerkingen" + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "(debug) verwijder het tijdelijke archief niet dat aangemaakt werd van de dump map in" ++msgstr "" ++"(debug) verwijder het tijdelijke archief niet dat aangemaakt werd van de " ++"dump map in" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1342,7 +1581,9 @@ msgstr "wachtwoord van jouw taak op de server" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [opties]\nBewerkingen: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client [opties]\n" ++"Bewerkingen: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1374,14 +1615,19 @@ msgstr "Lokale GNU-debugger" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Download debuginfo pakketten en genereer de backtrace lokaal met behulp van GDB" ++msgstr "" ++"Download debuginfo pakketten en genereer de backtrace lokaal met behulp van " ++"GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Hiervoor moeten debuginfo-pakketten gedownload worden, wat veel tijd en schijfruimte zou kunnen kosten. In tegenstelling tot RetraceServer echter, stuurt het geen coredump naar machines op afstand." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Hiervoor moeten debuginfo-pakketten gedownload worden, wat veel tijd en " ++"schijfruimte zou kunnen kosten. In tegenstelling tot RetraceServer echter, " ++"stuurt het geen coredump naar machines op afstand." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1389,12 +1635,18 @@ msgstr "Stuur coredump naar retrace-server op afstand voor analyse" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Upload een coredump naar een server, die een backtrace genereert en deze vervolgens terugstuurt. Voordelen: debuginfo downloaden is niet nodig. De database van debuginfos van de retrace-server is completer. De retrace-server kan betere backtraces genereren. Nadelen: een coredump van jouw upload bevat alle data van het gecrashte programma, mogelijk inclusief persoonlijke data." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Upload een coredump naar een server, die een backtrace genereert en deze " ++"vervolgens terugstuurt. Voordelen: debuginfo downloaden is niet nodig. De " ++"database van debuginfos van de retrace-server is completer. De retrace-" ++"server kan betere backtraces genereren. Nadelen: een coredump van jouw " ++"upload bevat alle data van het gecrashte programma, mogelijk inclusief " ++"persoonlijke data." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1419,10 +1671,13 @@ msgstr "De onveilige verbinding wel of niet gebruiken" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Schrijf \"insecure\" voor toestaan van onveilige verbinding <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(waarschuwing)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Schrijf \"insecure\" voor toestaan van onveilige verbinding <a href=" ++"\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(waarschuwing)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1436,7 +1691,10 @@ msgstr "Opslaan relevante regels uit ~/.xsession-errors-bestand" + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Bekijk het ~/.xsession-errors-bestand en slaat de regels op die de naam van het uitvoerbare bestand bevatten. Het resultaat wordt opgeslagen als het 'xsession_errors' element." ++msgstr "" ++"Bekijk het ~/.xsession-errors-bestand en slaat de regels op die de naam van " ++"het uitvoerbare bestand bevatten. Het resultaat wordt opgeslagen als het " ++"'xsession_errors' element." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1469,7 +1727,8 @@ msgstr "Certificaat is ondertekend door een niet-vertrouwde uitgever: '%s'." + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "Certificaat subject naam '%s' komt niet overeen met doelhostnaam '%s'." ++msgstr "" ++"Certificaat subject naam '%s' komt niet overeen met doelhostnaam '%s'." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1594,7 +1853,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nZoek naar updates op bodhi server" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Zoek naar updates op bodhi server" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1612,16 +1874,23 @@ msgstr "De locale versie van het pakket is nieuwer dan de beschikbare updates" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Er bestaat een update dat het probleem misschien kan oplossen. Je kunt het installeren met het uitvoeren van: %s. Wil je verder gaan met het rapporteren van de bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Er bestaat een update dat het probleem misschien kan oplossen. Je kunt het " ++"installeren met het uitvoeren van: %s. Wil je verder gaan met het " ++"rapporteren van de bug?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] BESTAND...\n\nScant bestanden voor gesplitste oops boodschappen. Kan deze printen en/of verwijderen." ++msgstr "" ++"& [-v] [-od] BESTAND...\n" ++"\n" ++"Scant bestanden voor gesplitste oops boodschappen. Kan deze printen en/of " ++"verwijderen." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1672,7 +1941,9 @@ msgstr "Zie 'abrt-cli COMMANDO --help' voor meer informatie" + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +-msgstr "%sVoer 'abrt-cli report %s' uit voor het aanmaken van een case in Red Hat Customer Portal\n" ++msgstr "" ++"%sVoer 'abrt-cli report %s' uit voor het aanmaken van een case in Red Hat " ++"Customer Portal\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1689,18 +1960,26 @@ msgstr "Toon gedetailleerd rapport" + + #: ../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" ++msgstr "" ++"Toon alleen de problemen die recenter zijn dan de gespecificeerde " ++"tijdstempel" + + #: ../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" ++msgstr "" ++"Toon alleen de problemen die ouder zijn dan de gespecificeerde tijdstempel" + + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-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" ++msgstr "" ++"De automatisch-rapporteren functie is uitgezet. Overweeg om dit aan te " ++"zetten door\n" ++"als een gebruiker met root rechten 'abrt-auto-reporting enabled' uit te " ++"voeren.\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1730,7 +2009,9 @@ msgstr "Print alleen de problemen recenter is dan opgegeven tijdstempel" + #: ../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 heef %u probleem(problemen) ontdekt. Voor meer info voer je uit: abrt-cli list%s\n" ++msgstr "" ++"ABRT heef %u probleem(problemen) ontdekt. Voor meer info voer je uit: abrt-" ++"cli list%s\n" + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1765,7 +2046,9 @@ msgstr "Duw voor het volgende probleem op ENTER:" + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "Zonder het --since argument, wordt over alle gedetecteerde problemen geitereerd." ++msgstr "" ++"Zonder het --since argument, wordt over alle gedetecteerde problemen " ++"geitereerd." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +@@ -1775,7 +2058,9 @@ msgstr "Selecteert alleen problemen die ontdekt zijn na tijdstempel" + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Verstuur de coredump naar de retrace-server op afstand voor analyse, of voer lokale analyse uit indien de analyse op afstand mislukt" ++msgstr "" ++"Verstuur de coredump naar de retrace-server op afstand voor analyse, of voer " ++"lokale analyse uit indien de analyse op afstand mislukt" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1783,10 +2068,18 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Uploadt de coredump naar een server, die de backtrace genereert en deze vervolgens terugstuurt. Als de gebruiker zijn coredump nergens naar toe wil uploaden dan zal het voorval lokale analyse uitvoeren. Lokale analyse wordt uitgevoerd als analyse op afstand mislukt. Voordelen: er wordt geen debuginfo gedownload. De database van de retrace-server is completer. De retrace-server kan betere backtraces aanmaken. Nadelen: de coredump die je uploadt bevat alle data van het gecrashte programma, mogelijk inclusief persoonlijke data." ++msgstr "" ++"Uploadt de coredump naar een server, die de backtrace genereert en deze " ++"vervolgens terugstuurt. Als de gebruiker zijn coredump nergens naar toe wil " ++"uploaden dan zal het voorval lokale analyse uitvoeren. Lokale analyse wordt " ++"uitgevoerd als analyse op afstand mislukt. Voordelen: er wordt geen " ++"debuginfo gedownload. De database van de retrace-server is completer. De " ++"retrace-server kan betere backtraces aanmaken. Nadelen: de coredump die je " ++"uploadt bevat alle data van het gecrashte programma, mogelijk inclusief " ++"persoonlijke data." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1795,13 +2088,16 @@ msgstr "analyseer VM core" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Installeer kerneldebuginfo-pakketten, genereer kernellog en oops-boodschap" ++msgstr "" ++"Installeer kerneldebuginfo-pakketten, genereer kernellog en oops-boodschap" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Kerneldebuginfo-pakketten moeten geïnstalleerd worden, dat kan behoorlijk wat tijd kosten en veel schijfruimte vergen." ++msgstr "" ++"Kerneldebuginfo-pakketten moeten geïnstalleerd worden, dat kan behoorlijk " ++"wat tijd kosten en veel schijfruimte vergen." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1815,7 +2111,9 @@ msgstr "Sla configuratie op uit GConf-map van de toepassing" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Draait gconftool-2 --recursive-list /apps/executable en slaat het op als 'gconf_subtree' element." ++msgstr "" ++"Draait gconftool-2 --recursive-list /apps/executable en slaat het op als " ++"'gconf_subtree' element." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1829,7 +2127,9 @@ msgstr "Opslaan /etc/vimrc en /etc/gvimrc" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Controleert of er vimrc en gvimrc bestanden zijn in /etc en slaat ze op als respectievelijk system_vimrc en system_gvimrc." ++msgstr "" ++"Controleert of er vimrc en gvimrc bestanden zijn in /etc en slaat ze op als " ++"respectievelijk system_vimrc en system_gvimrc." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1841,9 +2141,11 @@ msgstr "Opslaan .vimrc en .gvimrc uit de persoonlijke map" + + #: ../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 "Controleert of er .vimrc en .gvimrc bestanden in de persoonlijke map bestaan en slaat ze op als respectievelijk user_vimrc en user_gvimrc." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Controleert of er .vimrc en .gvimrc bestanden in de persoonlijke map bestaan " ++"en slaat ze op als respectievelijk user_vimrc en user_gvimrc." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/nn.po b/po/nn.po +index 9c094d0..00d6faa 100644 +--- a/po/nn.po ++++ b/po/nn.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/fedora-abrt/language/nn/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Norwegian Nynorsk (http://www.transifex.com/projects/p/fedora-" ++"abrt/language/nn/)\n" + "Language: nn\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/no.po b/po/no.po +index 70862b7..2672653 100644 +--- a/po/no.po ++++ b/po/no.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Norwegian (http://www.transifex.com/projects/p/fedora-abrt/language/no/)\n" ++"Language-Team: Norwegian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/no/)\n" ++"Language: no\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: no\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/nso.po b/po/nso.po +index d20ae06..f004316 100644 +--- a/po/nso.po ++++ b/po/nso.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Northern Sotho (http://www.transifex.com/projects/p/fedora-abrt/language/nso/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Northern Sotho (http://www.transifex.com/projects/p/fedora-" ++"abrt/language/nso/)\n" + "Language: nso\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/or.po b/po/or.po +index 48fa9ee..83ab060 100644 +--- a/po/or.po ++++ b/po/or.po +@@ -5,19 +5,22 @@ + # Translators: + # Jiří Moskovčák , 2011 + # Manoj Kumar Giri , 2013-2014 ++# Manoj Kumar Giri , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-17 12:13+0000\n" +-"Last-Translator: Manoj Kumar Giri \n" +-"Language-Team: Oriya (http://www.transifex.com/projects/p/fedora-abrt/language/or/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-08 07:26-0500\n" ++"Last-Translator: Manoj Kumar Giri \n" ++"Language-Team: Oriya (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/or/)\n" + "Language: or\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -32,15 +35,21 @@ 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" +-msgstr "ପଠାଇବାକୁଥିବା ବିବରଣୀରେ କୌଣସି ଅସୁରକ୍ଷିତ ତଥ୍ୟ ନାହିଁ। ତେଣୁ ଏହା ଆପଣଙ୍କୁ ପରେ ଚିନ୍ତିତ କରିବ ନାହିଁ ଏବଂ ଆପଣଙ୍କୁ କୌଣସି ଆବଶ୍ୟକୀୟ କାର୍ଯ୍ୟ କରିବାକୁ ହେବ ନାହିଁ। \n" ++msgstr "" ++"ପଠାଇବାକୁଥିବା ବିବରଣୀରେ କୌଣସି ଅସୁରକ୍ଷିତ ତଥ୍ୟ ନାହିଁ। ତେଣୁ ଏହା ଆପଣଙ୍କୁ ପରେ " ++"ଚିନ୍ତିତ କରିବ ନାହିଁ ଏବଂ ଆପଣଙ୍କୁ କୌଣସି ଆବଶ୍ୟକୀୟ କାର୍ଯ୍ୟ କରିବାକୁ ହେବ ନାହିଁ। \n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +-msgstr "ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଦାଖଲ ହୋଇଥିବା ନଷ୍ଟ ବିବରଣୀକୁ ଆପଣ ସକ୍ରିୟ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି?" ++msgstr "" ++"ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଦାଖଲ ହୋଇଥିବା ନଷ୍ଟ ବିବରଣୀକୁ ଆପଣ ସକ୍ରିୟ କରିବାକୁ ଚାହୁଁଛନ୍ତି " ++"କି?" + + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଦାଖଲ ହୋଇଥିବା ଅଜ୍ଞାତ ନଷ୍ଟ ବିବରଣୀକୁ ଆପଣ ସକ୍ରିୟ କରିବାକୁ ଚାହୁଁଛନ୍ତି କି?" ++msgstr "" ++"ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଦାଖଲ ହୋଇଥିବା ଅଜ୍ଞାତ ନଷ୍ଟ ବିବରଣୀକୁ ଆପଣ ସକ୍ରିୟ କରିବାକୁ " ++"ଚାହୁଁଛନ୍ତି କି?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -90,10 +99,17 @@ msgstr "ବିଜ୍ଞପ୍ତିକୁ ବନ୍ଦ କରିପାରିବ + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "ଆପଣ ଏକ ନିର୍ଦ୍ଦିଷ୍ଟ ସମସ୍ୟାର ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକୁ ନିରବ କରିବାକୁ ଯାଉଛନ୍ତି। ଆପଣ କଦାପି ବିଜ୍ଞପ୍ତି ବବଲକୁ ଏହି ସମସ୍ୟା ପାଇଁ ପୁଣିଥରେ ଦେଖିପାରିବେ ନାହିଁ, ତଥାପି, ABRT ଏହାକୁ ଚିହ୍ନଟ କରିବ ଏବଂ ଆପଣ ଏହାକୁ ABRT GUI ରୁ ଖବର କକରିବାରେ ସକ୍ଷମ ହେବେ।\n\nଆପଣ ଆଗକୁ ବଢ଼ିବାକୁ ଚାହୁଁଛନ୍ତି କି?" ++msgstr "" ++"ଆପଣ ଏକ ନିର୍ଦ୍ଦିଷ୍ଟ ସମସ୍ୟାର ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକୁ ନିରବ କରିବାକୁ ଯାଉଛନ୍ତି। ଆପଣ କଦାପି " ++"ବିଜ୍ଞପ୍ତି ବବଲକୁ ଏହି ସମସ୍ୟା ପାଇଁ ପୁଣିଥରେ ଦେଖିପାରିବେ ନାହିଁ, ତଥାପି, ABRT ଏହାକୁ " ++"ଚିହ୍ନଟ କରିବ ଏବଂ ଆପଣ ଏହାକୁ ABRT GUI ରୁ ଖବର କକରିବାରେ ସକ୍ଷମ ହେବେ।\n" ++"\n" ++"ଆପଣ ଆଗକୁ ବଢ଼ିବାକୁ ଚାହୁଁଛନ୍ତି କି?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -102,7 +118,9 @@ msgstr "ଚେତାବନୀ" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "ABRT ଦ୍ୱାରା ଚିହ୍ନାହୋଇଥିବା ସମସ୍ୟାଗୁଡ଼ିକ ବିଷୟରେ ଚାଳକଙ୍କୁ ସୂଚାଇବା ପାଇଁ ବିଜ୍ଞପ୍ତି କ୍ଷେତ୍ର ଆପଲେଟ" ++msgstr "" ++"ABRT ଦ୍ୱାରା ଚିହ୍ନାହୋଇଥିବା ସମସ୍ୟାଗୁଡ଼ିକ ବିଷୟରେ ଚାଳକଙ୍କୁ ସୂଚାଇବା ପାଇଁ " ++"ବିଜ୍ଞପ୍ତି କ୍ଷେତ୍ର ଆପଲେଟ" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -129,6 +147,7 @@ msgid "Ignore forever" + msgstr "ସବୁଦିନ ପାଇଁ ଏଡ଼ାଇ ଦିଅନ୍ତୁ" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "ଖୋଲନ୍ତୁ" +@@ -143,6 +162,7 @@ msgstr "ଗୋଟିଏ ପରିଚିତ ସମସ୍ୟା ଦେଖାଦେ + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "ରିପୋର୍ଟ" +@@ -185,14 +205,20 @@ msgstr "gio ଚ୍ୟାନେଲ ପାଇଁ ଅଟକ ରଖିପାରୁ + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "ଅଧିବେଶନ ପରିଚାଳକଙ୍କ ସହିତ ସଂଯୋଗ ଖୋଲିବାରେ ବିଫଳ: '%s', ବିଜ୍ଞପ୍ତି ହୁଏତଃ ପରବର୍ତ୍ତୀ ଲଗଇନରେ ପୁଣି ଦୃଶ୍ୟମାନ ହେବ" ++msgstr "" ++"ଅଧିବେଶନ ପରିଚାଳକଙ୍କ ସହିତ ସଂଯୋଗ ଖୋଲିବାରେ ବିଫଳ: '%s', ବିଜ୍ଞପ୍ତି ହୁଏତଃ ପରବର୍ତ୍ତୀ " ++"ଲଗଇନରେ ପୁଣି ଦୃଶ୍ୟମାନ ହେବ" + + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nABRT ଦ୍ଵାରା ନୂତନ ସମସ୍ଯାଗୁଡ଼ିକ ଚିହ୍ନା ପଡ଼ିବା ସମୟରେ ଯେଉଁ ଚାଳକ ଆପଲେଟକୁ ପରିବର୍ତ୍ତନ କରିଥାଏ\n" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"ABRT ଦ୍ଵାରା ନୂତନ ସମସ୍ଯାଗୁଡ଼ିକ ଚିହ୍ନା ପଡ଼ିବା ସମୟରେ ଯେଉଁ ଚାଳକ ଆପଲେଟକୁ " ++"ପରିବର୍ତ୍ତନ କରିଥାଏ\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -213,11 +239,15 @@ msgstr "ନିରବରେ ଖବର କରିବାକୁ ଛୋଟ କରା + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "କୋରଡମ୍ପ ଫାଇଲଟି ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି କରିବା ପାଇଁ ଆବଶ୍ୟକ ଯାହାକି ସମୟ ଏବଂ ସ୍ଥାନ ଆବଶ୍ୟକ କରିଥିବା ପ୍ରୟୋଗ। ABRT ଏକ ସର୍ଭିସ ପ୍ରଦାନ କରିଥାଏ ଯାହାକି କୋର ଡମ୍ପରୁ ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି କରିଥାଏ କିନ୍ତୁ ଆପଣଙ୍କୁ ଏହି ସର୍ଭିସରେ କୋର ଡମ୍ପକୁ ଧାରଣ କରିବାକୁ ହେବ। ABRT କୁ ନିଷ୍କ୍ରିୟ କରିଥିବା ଏହି ବିକଳ୍ପ ସହିତ ତାହା ନପଚାରି କୋର ଡମ୍ପକୁ ଧାରଣ କରିଥାଏ।" ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"କୋରଡମ୍ପ ଫାଇଲଟି ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି କରିବା ପାଇଁ ଆବଶ୍ୟକ ଯାହାକି ସମୟ ଏବଂ ସ୍ଥାନ " ++"ଆବଶ୍ୟକ କରିଥିବା ପ୍ରୟୋଗ। ABRT ଏକ ସର୍ଭିସ ପ୍ରଦାନ କରିଥାଏ ଯାହାକି କୋର ଡମ୍ପରୁ ଷ୍ଟାକ " ++"ଟ୍ରେସ ସୃଷ୍ଟି କରିଥାଏ କିନ୍ତୁ ଆପଣଙ୍କୁ ଏହି ସର୍ଭିସରେ କୋର ଡମ୍ପକୁ ଧାରଣ କରିବାକୁ ହେବ। " ++"ABRT କୁ ନିଷ୍କ୍ରିୟ କରିଥିବା ଏହି ବିକଳ୍ପ ସହିତ ତାହା ନପଚାରି କୋର ଡମ୍ପକୁ ଧାରଣ " ++"କରିଥାଏ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -225,28 +255,43 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT ସମସ୍ୟା ତଥ୍ଯକୁ ଡିରେକ୍ଟୋରୀରେ ସମସ୍ୟା ତଥ୍ୟ ସଂରକ୍ଷଣ କରିଥାଏ। ଯେତେବେଳେ ABRT ଲିଖନଯୋଗ୍ଯ ଡିରେକ୍ଟୋରୀ ଆବଶ୍ୟକ କରିଥାଏ, ସେତେବେଳେ ଡିରେକ୍ଟୋରୀ ତନ୍ତ୍ର ଅବସ୍ଥାନରୁ ଆପଣଙ୍କର ମୂଳ ଡିରେକ୍ଟୋରୀକୁ ଘୁଞ୍ଚାଇବାରେ ସକ୍ଷମ ହୋଇଥାଏ।ଏହି ବିକଳ୍ପକୁ ନିଷ୍କ୍ରିୟ କରିବା ସହିତ ABRT ନପଚାରି ସମସ୍ୟା ଡିରେକ୍ଟୋରୀକୁ ଘୁଞ୍ଚାଇବ।" ++msgstr "" ++"ABRT ସମସ୍ୟା ତଥ୍ଯକୁ ଡିରେକ୍ଟୋରୀରେ ସମସ୍ୟା ତଥ୍ୟ ସଂରକ୍ଷଣ କରିଥାଏ। ଯେତେବେଳେ ABRT " ++"ଲିଖନଯୋଗ୍ଯ ଡିରେକ୍ଟୋରୀ ଆବଶ୍ୟକ କରିଥାଏ, ସେତେବେଳେ ଡିରେକ୍ଟୋରୀ ତନ୍ତ୍ର ଅବସ୍ଥାନରୁ " ++"ଆପଣଙ୍କର ମୂଳ ଡିରେକ୍ଟୋରୀକୁ ଘୁଞ୍ଚାଇବାରେ ସକ୍ଷମ ହୋଇଥାଏ।ଏହି ବିକଳ୍ପକୁ ନିଷ୍କ୍ରିୟ " ++"କରିବା ସହିତ ABRT ନପଚାରି ସମସ୍ୟା ଡିରେକ୍ଟୋରୀକୁ ଘୁଞ୍ଚାଇବ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport ଟି ସକ୍ଷିପ୍ତ ଅଟେ ଏବଂ ସମ୍ପୂର୍ଣ୍ଣ ଭାବରେ ସମସ୍ୟାର ଅଜ୍ଞାତ ବର୍ଣ୍ଣନା ଅଟେ। ABRT uReports କୁ ତୀବ୍ର ନକଲି ଚିହ୍ନଟ ପାଇଁ ବ୍ୟବହାର କରିଥାଏ। ପୂର୍ବନିର୍ଦ୍ଧାରିତ ସଂରଚନାରେ uReport କୁ ଆରମ୍ଭରେ ପଠାଯାଇଥାଏ। ଏହି ବିକଳ୍ପକୁ ସକ୍ରିୟ କରି uReports ଗୁଡ଼ିକ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ସଙ୍ଗେ ସଙ୍ଗେ ସମସ୍ୟା ଚିହ୍ନଟ ହେବା ପରେ ପଠାଯାଇଥାଏ।" ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport ଟି ସକ୍ଷିପ୍ତ ଅଟେ ଏବଂ ସମ୍ପୂର୍ଣ୍ଣ ଭାବରେ ସମସ୍ୟାର ଅଜ୍ଞାତ ବର୍ଣ୍ଣନା ଅଟେ। " ++"ABRT uReports କୁ ତୀବ୍ର ନକଲି ଚିହ୍ନଟ ପାଇଁ ବ୍ୟବହାର କରିଥାଏ। ପୂର୍ବନିର୍ଦ୍ଧାରିତ " ++"ସଂରଚନାରେ uReport କୁ ଆରମ୍ଭରେ ପଠାଯାଇଥାଏ। ଏହି ବିକଳ୍ପକୁ ସକ୍ରିୟ କରି uReports " ++"ଗୁଡ଼ିକ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ସଙ୍ଗେ ସଙ୍ଗେ ସମସ୍ୟା ଚିହ୍ନଟ ହେବା ପରେ ପଠାଯାଇଥାଏ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "ଏହି ବିକଳ୍ପକୁ ସକ୍ରିୟ କରିବା ସହିତ ଖବର କରିବା ପ୍ରକ୍ରିୟା ସମସ୍ୟା ବିଜ୍ଞପ୍ତି ବବଲରେ ଖବର କରନ୍ତୁ ବଟନକୁ କ୍ଲିକ କରି ଆରମ୍ଭ କରାଯାଇଥାଏ ଯାହାକି uReport ପଠାଇବା ପରେ ବାଧାପ୍ରାପ୍ତ ହୋଇଥାଏ।ଆପଣ ସର୍ବଦା ପୂର୍ବନିର୍ଦ୍ଧାରିତ ସମସ୍ୟା ବ୍ରାଉଜରକୁ ବିବରଣୀ ସମ୍ପୂର୍ଣ୍ଣ କରିବା ପାଇଁ ବ୍ୟବହାର କରିପାରିବେ।" ++msgstr "" ++"ଏହି ବିକଳ୍ପକୁ ସକ୍ରିୟ କରିବା ସହିତ ଖବର କରିବା ପ୍ରକ୍ରିୟା ସମସ୍ୟା ବିଜ୍ଞପ୍ତି ବବଲରେ " ++"ଖବର କରନ୍ତୁ ବଟନକୁ କ୍ଲିକ କରି ଆରମ୍ଭ କରାଯାଇଥାଏ ଯାହାକି uReport ପଠାଇବା ପରେ " ++"ବାଧାପ୍ରାପ୍ତ ହୋଇଥାଏ।ଆପଣ ସର୍ବଦା ପୂର୍ବନିର୍ଦ୍ଧାରିତ ସମସ୍ୟା ବ୍ରାଉଜରକୁ ବିବରଣୀ " ++"ସମ୍ପୂର୍ଣ୍ଣ କରିବା ପାଇଁ ବ୍ୟବହାର କରିପାରିବେ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "ଏହି ବିକଳ୍ପ ABRT କୁ ସକ୍ରିୟ କରିବା ଦ୍ୱାରା ତାହା କଦାପି ଖବର କରାଯାଇଥିବା ସମସ୍ୟାଗୁଡ଼ିକର ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକୁ ଦର୍ଶାଇବ ନାହିଁ। ସକ୍ଷିପ୍ତ ଖବରକାରୀ ସକ୍ରିୟ ହୋଇଥିଲେ ହିଁ କାର୍ଯ୍ଯକାରୀ ହୋଇଥାଏ।" ++msgstr "" ++"ଏହି ବିକଳ୍ପ ABRT କୁ ସକ୍ରିୟ କରିବା ଦ୍ୱାରା ତାହା କଦାପି ଖବର କରାଯାଇଥିବା " ++"ସମସ୍ୟାଗୁଡ଼ିକର ବିଜ୍ଞପ୍ତିଗୁଡ଼ିକୁ ଦର୍ଶାଇବ ନାହିଁ। ସକ୍ଷିପ୍ତ ଖବରକାରୀ ସକ୍ରିୟ " ++"ହୋଇଥିଲେ ହିଁ କାର୍ଯ୍ଯକାରୀ ହୋଇଥାଏ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -256,7 +301,9 @@ msgstr "coredump ଧାରଣ କରିବା ପୂର୍ବରୁ ପଚାର + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "ଏହି ବିକଳ୍ପ ABRT କୁ ସକ୍ରିୟ କରିବା ସହିତ ସର୍ବଦା ସିମୀତ ଅଭିଗମ୍ୟତା ସହିତ ତୃଟି ଟିକଟ ସୃଷ୍ଟି କରିଥାଏ ଯଦି ସମ୍ଭବ ସମ୍ବେଦନଶୀଳ ତଥ୍ୟ ଚିହ୍ନଟ ହୋଇଥାଏ।" ++msgstr "" ++"ଏହି ବିକଳ୍ପ ABRT କୁ ସକ୍ରିୟ କରିବା ସହିତ ସର୍ବଦା ସିମୀତ ଅଭିଗମ୍ୟତା ସହିତ ତୃଟି ଟିକଟ " ++"ସୃଷ୍ଟି କରିଥାଏ ଯଦି ସମ୍ଭବ ସମ୍ବେଦନଶୀଳ ତଥ୍ୟ ଚିହ୍ନଟ ହୋଇଥାଏ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -271,7 +318,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "କମ୍ପୁଟର ବନ୍ଦ ହେବା ସମୟରେ ଅସମ୍ପୂର୍ଣ୍ଣ ସମସ୍ୟାଗୁଡ଼ିକୁ ଚିହ୍ନଟ କରାଯାଇଛି ଅଥବା ବ୍ୟବହାରକାରୀ ଲଗଆଉଟ ହେଉଛି। ମୂଲ୍ୟବାନ ସମସ୍ୟା ବିବରଣୀ ପ୍ରଦାନ କରିବା ପାଇଁ, ABRT ଆପଣଙ୍କୁ ଏହି ସମସ୍ୟାଗୁଡ଼ିକୁ ଦାଖଲ କରିବା ପାଇଁ ଅନୁମତି ଦେବ ନାହିଁ।" ++msgstr "" ++"କମ୍ପୁଟର ବନ୍ଦ ହେବା ସମୟରେ ଅସମ୍ପୂର୍ଣ୍ଣ ସମସ୍ୟାଗୁଡ଼ିକୁ ଚିହ୍ନଟ କରାଯାଇଛି ଅଥବା " ++"ବ୍ୟବହାରକାରୀ ଲଗଆଉଟ ହେଉଛି। ମୂଲ୍ୟବାନ ସମସ୍ୟା ବିବରଣୀ ପ୍ରଦାନ କରିବା ପାଇଁ, ABRT " ++"ଆପଣଙ୍କୁ ଏହି ସମସ୍ୟାଗୁଡ଼ିକୁ ଦାଖଲ କରିବା ପାଇଁ ଅନୁମତି ଦେବ ନାହିଁ।" + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -303,7 +353,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nପ୍ୟାକେଜ ତଥ୍ୟାଧାରକୁ ପଚାରନ୍ତୁ ଏବଂ ପ୍ୟାକେଜ ଏବଂ ଉପାଦାନ ନାମକୁ ସଂରକ୍ଷଣ କରନ୍ତୁ" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"ପ୍ୟାକେଜ ତଥ୍ୟାଧାରକୁ ପଚାରନ୍ତୁ ଏବଂ ପ୍ୟାକେଜ ଏବଂ ଉପାଦାନ ନାମକୁ ସଂରକ୍ଷଣ କରନ୍ତୁ" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -366,7 +419,8 @@ 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 +@@ -392,7 +446,9 @@ msgstr "ଉପାଦାନ '%s' କୁ ସମସ୍ୟା ଡିରେକ୍ଟ + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "'%s' ନାମଟି ହଜିଯାଇଛି, ସେହି ନାମରେ କୌଣସି ସର୍ଭିସ ଚାଲୁଛି କି ନାହିଁ ଦୟାକରି ଯାଞ୍ଚ କରନ୍ତୁ।\n" ++msgstr "" ++"'%s' ନାମଟି ହଜିଯାଇଛି, ସେହି ନାମରେ କୌଣସି ସର୍ଭିସ ଚାଲୁଛି କି ନାହିଁ ଦୟାକରି ଯାଞ୍ଚ " ++"କରନ୍ତୁ।\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -406,11 +462,17 @@ msgstr "ଏହି ପ୍ରଗ୍ରାମକୁ ମୂଖ୍ଯ ଚାଳକ + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 ଆପଣଙ୍କୁ ଏହି ସମସ୍ୟା ଦାଖଲ କରିବା ପାଇଁ ଅନୁମତି ଦେଇନଥାଏ। ଯଦି ଆପଣଙ୍କ ପାଖରେ ସମୟ ଅଛି ଏବଂ ଆପଣ ବିକାଶକାରୀଙ୍କୁ ସମସ୍ୟାର ସମାଧାନ କରିବାରେ ସହାୟତା କରିବା ପାଇଁ ଚାହୁଁଛନ୍ତି ତେବେ, ତେବେ ଦୟାକରି ସେମାନଙ୍କୁ ସିଧା ସଳଖ ଭାବରେ ସମ୍ପର୍କ କରନ୍ତୁ।" ++"detected while computer is shutting down or user is logging out. In order to " ++"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 ଆପଣଙ୍କୁ ଏହି ସମସ୍ୟା ଦାଖଲ କରିବା ପାଇଁ " ++"ଅନୁମତି ଦେଇନଥାଏ। ଯଦି ଆପଣଙ୍କ ପାଖରେ ସମୟ ଅଛି ଏବଂ ଆପଣ ବିକାଶକାରୀଙ୍କୁ ସମସ୍ୟାର " ++"ସମାଧାନ କରିବାରେ ସହାୟତା କରିବା ପାଇଁ ଚାହୁଁଛନ୍ତି ତେବେ, ତେବେ ଦୟାକରି ସେମାନଙ୍କୁ ସିଧା " ++"ସଳଖ ଭାବରେ ସମ୍ପର୍କ କରନ୍ତୁ।" + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -447,7 +509,16 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nUPLOAD_DIRECTORY କୁ ଦେଖିଥାଏ ଏବଂ ଆଗତ ଆଲେଖିକଗୁଡ଼ିକୁ abrt.conf ରେ ଉଲ୍ଲେଖ ହୋଇଥିବା\nଡମ୍ପ ଅବସ୍ଥାନରେ ଖାଲିଥାଏ\n\nଯଦି UPLOAD_DIRECTORY ଦିଆଯାଇନଥାଏ, ତେବେ\nabrt.conf ରୁ WatchCrashdumpArchiveDir option ର ଏକ ମୂଲ୍ୟକୁ ବ୍ୟବହାର କରିଥାଏ" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"UPLOAD_DIRECTORY କୁ ଦେଖିଥାଏ ଏବଂ ଆଗତ ଆଲେଖିକଗୁଡ଼ିକୁ abrt.conf ରେ ଉଲ୍ଲେଖ " ++"ହୋଇଥିବା\n" ++"ଡମ୍ପ ଅବସ୍ଥାନରେ ଖାଲିଥାଏ\n" ++"\n" ++"ଯଦି UPLOAD_DIRECTORY ଦିଆଯାଇନଥାଏ, ତେବେ\n" ++"abrt.conf ରୁ WatchCrashdumpArchiveDir option ର ଏକ ମୂଲ୍ୟକୁ ବ୍ୟବହାର କରିଥାଏ" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -461,19 +532,74 @@ msgstr "ସହକାରୀ କର୍ମଚାରୀ ସଂଖ୍ୟା। ପୂ + msgid "Maximal cache size in MiB. Default is " + msgstr "ସର୍ବାଧିକ କ୍ୟାଶେ ଆକାର MiB ରେ। ପୂର୍ବନିର୍ଦ୍ଧାରିତଟି ହେଉଛି" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "ବୈଧିକରଣକୁ ଅଫ୍‌ କରନ୍ତୁ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Red Hat ସହାୟତା ବ୍ୟବହାରକାରୀ ନାମ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++"Red Hat ସହାୟତା ପ୍ରବେଶ ସଂକେତ, ଯଦି ଦିଆଯାଇ ନାହିଁ, ତେବେ ଏହା ପାଇଁ ଏକ ପ୍ରମ୍ପ୍‌ଟ୍ " ++"ଦିଆଯିବ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "uReport SSL ପ୍ରମାଣପତ୍ର ପଥ କିମ୍ବା ପ୍ରମାଣପତ୍ର ପ୍ରକାର" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "ଆପଣଙ୍କୁ --password ପାଇଁ --username ମଧ୍ଯ ଉଲ୍ଲେଖ କରିବା ଆବଶ୍ୟକ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "ଆପଣ --username କିମ୍ବା --certificate ବ୍ୟବହାର କରିପାରିବେ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "ଆପଣ --username କିମ୍ବା --anonymous ବ୍ୟବହାର କରିପାରିବେ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "ଆପଣ --anonymous କିମ୍ବା --certificate ବ୍ୟବହାର କରିପାରିବେ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "ଅବୈଧ ସଂଖ୍ୟକ ସ୍ୱତନ୍ତ୍ରଚର" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ଅଜଣା ବିକଳ୍ପ ମୂଲ୍ୟ: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "ପ୍ରବେଶ ସଙ୍କେତ:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "ପ୍ରବେଶ ସଂକେତ ବିନା ଆଗକୁ ବଢ଼ିପାରିବେ ନାହିଁ \n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "HTTP ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବାକୁ ବୈଧିକୃତ କରିଛି" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "SSL କ୍ଲାଏଣ୍ଟ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବାକୁ ବୈଧିକୃତ କରିଛି" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "anonymous ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବା" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -484,7 +610,14 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "ବ୍ୟବହାର ବିଧି: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n UPLOAD_DIR - Directory where uploaded archives are stored\n FILENAME - Uploaded archive file name\n" ++msgstr "" ++"ବ୍ୟବହାର ବିଧି: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -591,13 +724,16 @@ msgstr "ଅସ୍ଥାୟୀ ଫାଇଲ '%s' କୁ ନିର୍ମାଣ କ + 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:264 + #, 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 "" +@@ -605,11 +741,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nC/C++ ବ୍ୟାକଟ୍ରେସକୁ ବିଶ୍ଳେଷଣ କରିଥାଏ, ନକଲି ହ୍ୟାସ, ବ୍ୟାକଟ୍ରେସ ମାନ୍ୟତା ସୃଷ୍ଟି କରିଥାଏ, ଏବଂ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ DIR ରେ ନଷ୍ଟ ଫଳନକୁ ଚିହ୍ନିଥାଏ" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"C/C++ ବ୍ୟାକଟ୍ରେସକୁ ବିଶ୍ଳେଷଣ କରିଥାଏ, ନକଲି ହ୍ୟାସ, ବ୍ୟାକଟ୍ରେସ ମାନ୍ୟତା ସୃଷ୍ଟି " ++"କରିଥାଏ, ଏବଂ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ DIR ରେ ନଷ୍ଟ ଫଳନକୁ ଚିହ୍ନିଥାଏ" + ++#. + #. * 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" +@@ -624,7 +766,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nସମସ୍ୟା ଡିରେକ୍ଟୋରୀ DIR ରେ କୋରଡମ୍ପର UUID ପାଇଁ ହିସାବ କରିଥାଏ ଏବଂ ସଂରକ୍ଷଣ କରିଥାଏ" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ DIR ରେ କୋରଡମ୍ପର UUID ପାଇଁ ହିସାବ କରିଥାଏ ଏବଂ ସଂରକ୍ଷଣ କରିଥାଏ" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -650,14 +795,22 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\nUUID ଏବଂ DUPHASH କୁ oops ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ DIR ପାଇଁ ହିସାବ କରିଥାଏ ଏବଂ ସଂରକ୍ଷଣ କରିଥାଏ" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"UUID ଏବଂ 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\nUUID ଏବଂ DUPHASH କୁ xorg ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ DIR ପାଇଁ ହିସାବ କରିଥାଏ ଏବଂ ସଂରକ୍ଷଣ କରିଥାଏ" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"UUID ଏବଂ DUPHASH କୁ xorg ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ DIR ପାଇଁ ହିସାବ କରିଥାଏ ଏବଂ ସଂରକ୍ଷଣ " ++"କରିଥାଏ" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -669,7 +822,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\npython କ୍ରାସ ଡମ୍ପର UUID ଏବଂ DUPHASH କୁ ହିସାବ କରିଥାଏ ଏବଂ ସଂରକ୍ଷଣ କରିଥାଏ" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"python କ୍ରାସ ଡମ୍ପର UUID ଏବଂ DUPHASH କୁ ହିସାବ କରିଥାଏ ଏବଂ ସଂରକ୍ଷଣ କରିଥାଏ" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -684,10 +840,10 @@ msgid "Extracting the oops text from core" + msgstr "ମୂଳ ପାଖରୁ oops ପାଠ୍ୟକୁ ବାହାର କରୁଅଛି" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "{0} କୁ କାର୍ଯ୍ୟକାରୀ କରିପାରିବେ ନାହିଁ:\n" + "{1}" +-msgstr "{0} କୁ କାର୍ଯ୍ୟକାରୀ କରିପାରିବେ ନାହିଁ:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -701,14 +857,20 @@ msgstr "Oops ପାଠ୍ୟ ସଫଳତାର ସହିତ ବାହାର କ + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "ହାର୍ଡୱେର ତୃଟିଗୁଡ଼ିକ ଚିହ୍ନଟ ହୋଇଛି ବୋଲି କର୍ଣ୍ଣଲ ଲଗ ସୂଚାଇଥାଏ।\nଏହା ସମ୍ଭବତଃ ଏକ ସଫ୍ଟୱେର ସମସ୍ୟା ନୁହଁ।\n" ++msgstr "" ++"ହାର୍ଡୱେର ତୃଟିଗୁଡ଼ିକ ଚିହ୍ନଟ ହୋଇଛି ବୋଲି କର୍ଣ୍ଣଲ ଲଗ ସୂଚାଇଥାଏ।\n" ++"ଏହା ସମ୍ଭବତଃ ଏକ ସଫ୍ଟୱେର ସମସ୍ୟା ନୁହଁ।\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nସମସ୍ୟା ଡିରେକ୍ଟୋରୀ DIR ରେ କୋର ଡମ୍ପକୁ ବିଶ୍ଳେଷଣ କରିଥାଏ, ବ୍ୟାକଟ୍ରାସକୁ ସୃଷ୍ଟିକରିଥାଏ ଏବଂ ସଂରକ୍ଷଣ କରିଥାଏ" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ DIR ରେ କୋର ଡମ୍ପକୁ ବିଶ୍ଳେଷଣ କରିଥାଏ, ବ୍ୟାକଟ୍ରାସକୁ " ++"ସୃଷ୍ଟିକରିଥାଏ ଏବଂ ସଂରକ୍ଷଣ କରିଥାଏ" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -720,6 +882,7 @@ 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" +@@ -730,7 +893,10 @@ 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" ++"\n" ++"କୋରଡମ୍ପ ଏବଂ ନିର୍ଭରଶୀଳ ବାଇନାରୀରୁ କୋରଡମ୍ପ ସ୍ତର ବ୍ୟାକଟ୍ରେସକୁ ନିର୍ମାଣ କରିଥାଏ" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -758,7 +924,8 @@ msgstr "ଚାଳକ ନିର୍ଦ୍ଦେଶ ଉପରେ ପ୍ରସ୍ଥ + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -768,13 +935,35 @@ msgid "" + " -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" ++" --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" ++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_FILE ରେ ତାଲିକାଭୁକ୍ତ ସମସ୍ତ build-id ଗୁଡ଼ିକ ପାଇଁ ତୃଟିନିବାରଣ ସୂଚନାକୁ " ++"CACHEDIR ରେ ସ୍ଥାପନ କରିଥାଏ,\n" ++"TMPDIR କୁ ଅସ୍ଥାୟୀ ଷ୍ଟେଜିଙ୍ଗ ସ୍ଥାନ ଭାବରେ ବ୍ୟବହାର କରି।\n" ++"CACHEDIR ରେ ଥିବା ପୁରୁଣା ଫାଇଲଗୁଡ଼ିକୁ ଅପସାରଣ କରାଯାଇଥାଏ ଯେପର୍ଯ୍ୟନ୍ତ ଏହା 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" +-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}" +@@ -782,7 +971,9 @@ 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} ତ୍ରୁଟିନିବାରଣ ଫାଇଲଗୁଡ଼ିକ, ସେମାନଙ୍କ ମଧ୍ଯରୁ {1} ସ୍ଥାପିତ ହୋଇନାହିଁ" ++msgstr "" ++"କୋରଡମ୍ପ ସନ୍ଦର୍ଭ {0} ତ୍ରୁଟିନିବାରଣ ଫାଇଲଗୁଡ଼ିକ, ସେମାନଙ୍କ ମଧ୍ଯରୁ {1} ସ୍ଥାପିତ " ++"ହୋଇନାହିଁ" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -805,21 +996,32 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "କୋର ଡମ୍ପକୁ ଧାରଣ କରିବା ଠିକ କି? (ଏହା ହୁଏତଃ ଜରୁରୀ ତଥ୍ୟ ଧାରଣ କରିଥାଇପାରେ)। ଯଦି ଆପଣଙ୍କର ଉତ୍ତର 'ନାଁ' ତେବେ, ସ୍ଥାନୀୟ ଭାବରେ ଏକ ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି ହେବ। (ଏହା ହୁଏତଃ ବହୁ ପରିମାଣର ତଥ୍ୟ ଆହରଣ କରିପାରେ)।" ++msgstr "" ++"କୋର ଡମ୍ପକୁ ଧାରଣ କରିବା ଠିକ କି? (ଏହା ହୁଏତଃ ଜରୁରୀ ତଥ୍ୟ ଧାରଣ କରିଥାଇପାରେ)। ଯଦି " ++"ଆପଣଙ୍କର ଉତ୍ତର 'ନାଁ' ତେବେ, ସ୍ଥାନୀୟ ଭାବରେ ଏକ ଷ୍ଟାକ ଟ୍ରେସ ସୃଷ୍ଟି ହେବ। (ଏହା " ++"ହୁଏତଃ ବହୁ ପରିମାଣର ତଥ୍ୟ ଆହରଣ କରିପାରେ)।" + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"ଆପଣ ସ୍ଥାନୀୟ ଭାବରେ ଏକ ଷ୍ଟାକ ନିରୀକ୍ଷଣ ସୃଷ୍ଟି କରିବାକୁ ଚାହୁଁଛନ୍ତି କି? (ଏହା ହୁଏତଃ " ++"ଅଧିକ ପରିମାଣର ତଥ୍ୟଆହରଣ କରିପାରେ କିନ୍ତୁ ଷ୍ଟାକ ଟ୍ରେସ ବିନା ଖବରକୁ ଅଗ୍ରସର କରିପାରିବେ " ++"ନାହିଁ)।" + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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\nDIR ଗୁଡ଼ିକରେ ଥିବା ସମସ୍ୟା ଡିରେକଟୋରୀ (-d) କିମ୍ବା ଫାଇଲ (-f) କୁ ଅପସାରଣ କରିଥାଏ।\n ଫାଇଲଗୁଡ଼ିକୁ ସଂରକ୍ଷଣ କରାଯାଇଥାଏ (ଆପସାରଣ କରାଯାଇନଥାଏ)।" ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"DIR ଗୁଡ଼ିକରେ ଥିବା ସମସ୍ୟା ଡିରେକଟୋରୀ (-d) କିମ୍ବା ଫାଇଲ (-f) କୁ ଅପସାରଣ କରିଥାଏ।\n" ++" ଫାଇଲଗୁଡ଼ିକୁ ସଂରକ୍ଷଣ କରାଯାଇଥାଏ (ଆପସାରଣ କରାଯାଇନଥାଏ)।" + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -850,7 +1052,9 @@ msgstr "ବ୍ଯବହାର ବିଧି: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "ପ୍ରଚଳିତ କାର୍ଯ୍ୟକାରୀ ଡିରେକ୍ଟୋରୀକୁ ପାଇବାରେ ଅସମର୍ଥ ଯେହେତୁ ଏହାକୁ ସମ୍ଭବତଃ ଅପସାରଣ କରାଯାଇଛି" ++msgstr "" ++"ପ୍ରଚଳିତ କାର୍ଯ୍ୟକାରୀ ଡିରେକ୍ଟୋରୀକୁ ପାଇବାରେ ଅସମର୍ଥ ଯେହେତୁ ଏହାକୁ ସମ୍ଭବତଃ ଅପସାରଣ " ++"କରାଯାଇଛି" + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +@@ -961,7 +1165,9 @@ 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" +@@ -988,7 +1194,11 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nଲଗ ଫାଇଲ FILE କୁ ଦେଖନ୍ତୁ, PROG କୁ ଚଲାନ୍ତୁ ଯେତେବେଳେ ଏହା ବଢ଼ିଥାଏ ଅଥବା ସ୍ଥାନାନ୍ତରିତ ହୋଇଥାଏ" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"ଲଗ ଫାଇଲ FILE କୁ ଦେଖନ୍ତୁ, PROG କୁ ଚଲାନ୍ତୁ ଯେତେବେଳେ ଏହା ବଢ଼ିଥାଏ ଅଥବା " ++"ସ୍ଥାନାନ୍ତରିତ ହୋଇଥାଏ" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -998,20 +1208,26 @@ msgstr "STR ଗୁଡ଼ିକ ନମିଳିଲା ପର୍ଯ୍ୟନ୍ତ + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "ଖରାପ BIOS ହେତୁ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଦେଖାଦେଇଛି। ଦୁର୍ଭାଗ୍ୟ ବଶତଃ, ଏପରି ସମସ୍ୟାଗୁଡ଼ିକୁ କର୍ଣ୍ଣଲ ପରିଚାଳକମାନଙ୍କ ଦ୍ୱାରା ସମାଧାନ ହୋଇପାରିବ ନାହିଁ।" ++msgstr "" ++"ଖରାପ BIOS ହେତୁ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଦେଖାଦେଇଛି। ଦୁର୍ଭାଗ୍ୟ ବଶତଃ, ଏପରି ସମସ୍ୟାଗୁଡ଼ିକୁ " ++"କର୍ଣ୍ଣଲ ପରିଚାଳକମାନଙ୍କ ଦ୍ୱାରା ସମାଧାନ ହୋଇପାରିବ ନାହିଁ।" + + #: ../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: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). କର୍ଣ୍ଣଲ ପରିଚାଳକମାନେ ତ୍ରୁଟି ବିବରଣୀଗୁଡ଼ିକୁ ବିଶ୍ଳେଷଣ କରିବାରେ ଅସମର୍ଥ।" ++msgstr "" ++"ଏକ କର୍ଣ୍ଣଲ ସମସ୍ୟା ଘଟିଛି, କିନ୍ତୁ ଆପଣଙ୍କର କର୍ଣ୍ଣଲ ଖରାପ ହୋଇଯାଇଛି (ସୂଚକ:%s). " ++"କର୍ଣ୍ଣଲ ପରିଚାଳକମାନେ ତ୍ରୁଟି ବିବରଣୀଗୁଡ଼ିକୁ ବିଶ୍ଳେଷଣ କରିବାରେ ଅସମର୍ଥ।" + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1023,7 +1239,10 @@ msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" +-msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nଫାଇଲରୁ oops ବାହାର କରନ୍ତୁ (କିମ୍ବା ମାନକ ନିବେଶ)" ++msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"ଫାଇଲରୁ oops ବାହାର କରନ୍ତୁ (କିମ୍ବା ମାନକ ନିବେଶ)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1031,13 +1250,16 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" +-msgstr "DIR ରେ ମିଳିଥିବା ପ୍ରତ୍ୟେକ oops ପାଇଁ ନୂତନ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣ କରନ୍ତୁ" ++msgstr "" ++"DIR ରେ ମିଳିଥିବା ପ୍ରତ୍ୟେକ oops ପାଇଁ ନୂତନ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣ କରନ୍ତୁ" + + #: ../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 ରେ ଉଲ୍ଲେଖ କରାଯାଇ ନାହିଁ" ++msgstr "" ++"-d ଡମ୍ପ ଅବସ୍ଥାନ ପରି ସମାନ, ଡମ୍ପ ଅବସ୍ଥାନକୁ abrt.conf ରେ ଉଲ୍ଲେଖ କରାଯାଇ ନାହିଁ" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1073,7 +1295,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nXorg ନଷ୍ଟକୁ FILE (ଅଥବା ମାନକ ନିବେଶ) ରୁ ବାହାର କରନ୍ତୁ" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Xorg ନଷ୍ଟକୁ FILE (ଅଥବା ମାନକ ନିବେଶ) ରୁ ବାହାର କରନ୍ତୁ" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1081,16 +1306,20 @@ 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 "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "ସନ୍ଧାନ କାରୀ ସର୍ଭରକୁ ବ୍ୟବହାର କରି ପାରିବେ ନାହିଁ, କାରଣ ନଷ୍ଟଟି ଅତ୍ଯଧିକ ବଡ଼ ଅଟେ। ସ୍ଥାନୀୟ ଭାବରେ ସନ୍ଧାନ କରନ୍ତୁ।" ++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 +@@ -1113,10 +1342,10 @@ msgstr "ଲମ୍ବ %d ବିଶିଷ୍ଟHTTP ଶୀର୍ଷକକୁ ପ + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "ସର୍ଭରରୁ ଅପ୍ରତ୍ୟାଶିତ HTTP ଉତ୍ତର: %d\n" + "%s" +-msgstr "ସର୍ଭରରୁ ଅପ୍ରତ୍ୟାଶିତ HTTP ଉତ୍ତର: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1132,7 +1361,9 @@ msgstr "ସର୍ଭରରୁ ଅବୈଧ ଉତ୍ତର: ଅନୁପସ୍ + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "ରିଟ୍ରେସ ସର୍ଭର '%s.%s' ପ୍ୟାକେଜକୁ କାର୍ଯ୍ୟକାରୀ କରିବାରେ ଅସମର୍ଥ।\nଏହା କାର୍ଯ୍ୟରତ '%s' ରେପୋଜିଟୋରୀର ଏକ ଅଂଶ କି?" ++msgstr "" ++"ରିଟ୍ରେସ ସର୍ଭର '%s.%s' ପ୍ୟାକେଜକୁ କାର୍ଯ୍ୟକାରୀ କରିବାରେ ଅସମର୍ଥ।\n" ++"ଏହା କାର୍ଯ୍ୟରତ '%s' ରେପୋଜିଟୋରୀର ଏକ ଅଂଶ କି?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1157,7 +1388,9 @@ msgstr "ରିଟ୍ରେସ ସର୍ଭର ବ୍ୟବହାର କରିବ + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "ଆପଣଙ୍କ ନଷ୍ଟର ପରିମାଣ %lld ବାଇଟ ଅଟେ, କିନ୍ତୁ ସନ୍ଧାନକାରୀ ସର୍ଭର କେବଳ %lld ବାଇଟରୁ କମ କିମ୍ବା ତାହା ସହିତ ସମାନ ନଷ୍ଟକୁ ଗ୍ରହଣ କରିଥାଏ।" ++msgstr "" ++"ଆପଣଙ୍କ ନଷ୍ଟର ପରିମାଣ %lld ବାଇଟ ଅଟେ, କିନ୍ତୁ ସନ୍ଧାନକାରୀ ସର୍ଭର କେବଳ %lld ବାଇଟରୁ " ++"କମ କିମ୍ବା ତାହା ସହିତ ସମାନ ନଷ୍ଟକୁ ଗ୍ରହଣ କରିଥାଏ।" + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1185,7 +1418,9 @@ msgstr "ଧାରଣ କରିବା ପାଇଁ ଗୋଟିଏ ଅଭିଲ + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "ଆପଣଙ୍କ ଅଭିଲେଖର ଆକାର %lld ବାଇଟ ଅଟେ, କିନ୍ତୁ ସନ୍ଧାନକାରୀ ସର୍ଭର କେବଳ %lld ବାଇଟରୁ କମ କିମ୍ବା ତାହା ସହିତ ସମାନ ଅଭିଲେଖଗୁଡ଼ିକୁ ଗ୍ରହଣ କରିଥାଏ।" ++msgstr "" ++"ଆପଣଙ୍କ ଅଭିଲେଖର ଆକାର %lld ବାଇଟ ଅଟେ, କିନ୍ତୁ ସନ୍ଧାନକାରୀ ସର୍ଭର କେବଳ %lld ବାଇଟରୁ " ++"କମ କିମ୍ବା ତାହା ସହିତ ସମାନ ଅଭିଲେଖଗୁଡ଼ିକୁ ଗ୍ରହଣ କରିଥାଏ।" + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1228,13 +1463,17 @@ msgstr "ଧାରଣ କ୍ରିୟା ସଫଳ ହୋଇଛି" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "ଆପଣଙ୍କର ସମସ୍ୟା ଡିରେକ୍ଟୋରୀଟି ତ୍ରୁଟିଯୁକ୍ତ ହୋଇଛି ଏବଂ ତାହାକୁ ସନ୍ଧାନକାରୀ ସର୍ଭର ଦ୍ୱାରା କାର୍ଯ୍ୟକାରୀ କରିପାରିବେ ନାହିଁ।" ++msgstr "" ++"ଆପଣଙ୍କର ସମସ୍ୟା ଡିରେକ୍ଟୋରୀଟି ତ୍ରୁଟିଯୁକ୍ତ ହୋଇଛି ଏବଂ ତାହାକୁ ସନ୍ଧାନକାରୀ ସର୍ଭର " ++"ଦ୍ୱାରା କାର୍ଯ୍ୟକାରୀ କରିପାରିବେ ନାହିଁ।" + + #: ../src/plugins/abrt-retrace-client.c:759 + 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." +@@ -1250,10 +1489,10 @@ msgstr "ଅନୁସନ୍ଧାନ କାର୍ୟ୍ୟ ଆରମ୍ଭ ହୋ + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "କାର୍ଯ୍ୟ Id: %s\nକାର୍ଯ୍ୟ ପ୍ରବେଶ ସଂକେତ: %s\n" ++msgstr "କାର୍ଯ୍ୟ Id: %s\n" ++"କାର୍ଯ୍ୟ ପ୍ରବେଶ ସଂକେତ: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1261,10 +1500,10 @@ msgstr "ସର୍ଭରରୁ ଅବୈଧ ଉତ୍ତର: ଅନୁପସ୍ + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "କାର୍ଯ୍ୟ ସ୍ଥିତି: %s\n" + "%s\n" +-msgstr "କାର୍ଯ୍ୟ ସ୍ଥିତି: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1277,7 +1516,9 @@ msgstr "ଲମ୍ବ %d ବିଶିଷ୍ଟ HTTP ଶୀର୍ଷକକୁ ପ + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "ଅନୁସନ୍ଧାନ ବିଫଳ ହୋଇଛି। ପରେ ପୁଣିଥରେ ଚେଷ୍ଟାକରନ୍ତୁ ଏବଂ ତଥାପି ଯଦି ସମସ୍ୟାଟି ଥାଏ ତେବେ ଦୟାକରି ଏହାକୁ ଖବର କରନ୍ତୁ।" ++msgstr "" ++"ଅନୁସନ୍ଧାନ ବିଫଳ ହୋଇଛି। ପରେ ପୁଣିଥରେ ଚେଷ୍ଟାକରନ୍ତୁ ଏବଂ ତଥାପି ଯଦି ସମସ୍ୟାଟି ଥାଏ " ++"ତେବେ ଦୟାକରି ଏହାକୁ ଖବର କରନ୍ତୁ।" + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1291,7 +1532,9 @@ msgstr "ଅନୁସନ୍ଧାନ ସର୍ଭରରେ ଅସୁରକ୍ଷ + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "ଆଲେଖୀକୁ ଧାରଣ କରିବା ପୂର୍ବରୁ ପ୍ରଦତ୍ତ ପ୍ୟାକେଜକୁ କାର୍ଯ୍ୟକାରୀ କରିବାରେ ଅନୁସନ୍ଧାନ ସର୍ଭର ସମର୍ଥ କି ନୁହଁ ତାହା ଯାଞ୍ଚ କରନ୍ତୁ ନାହିଁ" ++msgstr "" ++"ଆଲେଖୀକୁ ଧାରଣ କରିବା ପୂର୍ବରୁ ପ୍ରଦତ୍ତ ପ୍ୟାକେଜକୁ କାର୍ଯ୍ୟକାରୀ କରିବାରେ ଅନୁସନ୍ଧାନ " ++"ସର୍ଭର ସମର୍ଥ କି ନୁହଁ ତାହା ଯାଞ୍ଚ କରନ୍ତୁ ନାହିଁ" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1323,7 +1566,9 @@ 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" +@@ -1341,7 +1586,9 @@ msgstr "ସର୍ଭରରେ ଆପଣଙ୍କର ପ୍ରବେଶ ସଂକ + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [options]\nପ୍ରୟୋଗଗୁଡ଼ିକ: create/status/backtrace/log/batch/exploitable" ++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 +@@ -1373,14 +1620,19 @@ msgstr "ସ୍ଥାନୀୟ GNU ତ୍ରୁଟିନିବାରକ" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "ତ୍ରୁଟି ନିବାରଣ ସୂଚନାକୁ ଆହରଣ କରନ୍ତୁ ଏବଂ GDB ବ୍ୟବହାର କରି ସ୍ଥାନୀୟ ଭାବରେ ବ୍ୟାକଟ୍ରେସ ସୃଷ୍ଟିକରନ୍ତୁ" ++msgstr "" ++"ତ୍ରୁଟି ନିବାରଣ ସୂଚନାକୁ ଆହରଣ କରନ୍ତୁ ଏବଂ GDB ବ୍ୟବହାର କରି ସ୍ଥାନୀୟ ଭାବରେ " ++"ବ୍ୟାକଟ୍ରେସ ସୃଷ୍ଟିକରନ୍ତୁ" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "ତ୍ରୁଟିନିବାରଣ ପ୍ୟାକେଜଗୁଡ଼ିକୁ ଆହରଣ କରିବା ଆବଶ୍ୟକ, ଯାହାକି ହୁଏତଃ କିଛି ସମୟ, ଏବଂ ଡିସ୍କ ସ୍ଥାନ ନେଇପାରେ। ତଥାପି, RetraceServer ପରି, ଏହା ସୁଦୂର ଯନ୍ତ୍ରକୁ କୋରଡମ୍ପ ପଠାଇନଥାଏ।" ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"ତ୍ରୁଟିନିବାରଣ ପ୍ୟାକେଜଗୁଡ଼ିକୁ ଆହରଣ କରିବା ଆବଶ୍ୟକ, ଯାହାକି ହୁଏତଃ କିଛି ସମୟ, ଏବଂ " ++"ଡିସ୍କ ସ୍ଥାନ ନେଇପାରେ। ତଥାପି, RetraceServer ପରି, ଏହା ସୁଦୂର ଯନ୍ତ୍ରକୁ କୋରଡମ୍ପ " ++"ପଠାଇନଥାଏ।" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1388,12 +1640,17 @@ msgstr "ସୁଦୂର ଅନୁସନ୍ଧାନ ସର୍ଭର ପାଖକ + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "ସର୍ଭରରେ କୋରଡମ୍ପକୁ ଧାରଣ କରିଥାଏ, ଯାହାକି ବ୍ୟାକଟ୍ରେସ ସୃଷ୍ଟିକରିଥାଏ ଏବଂ ତାହାକୁ ଫେରାଇଥାଏ। ଲାଭ: ତ୍ରୁଟି ନିବାରଣ ଆହରଣର ଆବଶ୍ୟକତା ନାହିଁ। ଅନୁସନ୍ଧାନ ସର୍ଭରର ତ୍ରୁଟିନିବାରଣ ସୂଚନା ତଥ୍ୟାଧାରଟି ଅଧିକ ସମ୍ପୂର୍ଣ୍ଣ। ଅନୁସନ୍ଧାନ ସର୍ଭର ହୁଏତଃ ଉତ୍ତମ ବ୍ୟାକଟ୍ରେସ ସୃଷ୍ଟି କରିପାରିବ। କ୍ଷତି: ନଷ୍ଟ ପ୍ରଗ୍ରାମରୁ ସମସ୍ତ ତଥ୍ୟ କୋରଡମ୍ପ ଧାରଣ କରିଥାଏ, ଆପଣଙ୍କର ବ୍ୟକ୍ତିଗତ ତଥ୍ୟକୁ ମଧ୍ଯ, ଯଦି ଥାଏ।" ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"ସର୍ଭରରେ କୋରଡମ୍ପକୁ ଧାରଣ କରିଥାଏ, ଯାହାକି ବ୍ୟାକଟ୍ରେସ ସୃଷ୍ଟିକରିଥାଏ ଏବଂ ତାହାକୁ " ++"ଫେରାଇଥାଏ। ଲାଭ: ତ୍ରୁଟି ନିବାରଣ ଆହରଣର ଆବଶ୍ୟକତା ନାହିଁ। ଅନୁସନ୍ଧାନ ସର୍ଭରର " ++"ତ୍ରୁଟିନିବାରଣ ସୂଚନା ତଥ୍ୟାଧାରଟି ଅଧିକ ସମ୍ପୂର୍ଣ୍ଣ। ଅନୁସନ୍ଧାନ ସର୍ଭର ହୁଏତଃ ଉତ୍ତମ " ++"ବ୍ୟାକଟ୍ରେସ ସୃଷ୍ଟି କରିପାରିବ। କ୍ଷତି: ନଷ୍ଟ ପ୍ରଗ୍ରାମରୁ ସମସ୍ତ ତଥ୍ୟ କୋରଡମ୍ପ ଧାରଣ " ++"କରିଥାଏ, ଆପଣଙ୍କର ବ୍ୟକ୍ତିଗତ ତଥ୍ୟକୁ ମଧ୍ଯ, ଯଦି ଥାଏ।" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1418,10 +1675,13 @@ msgstr "ଅସୁରକ୍ଷିତ ସଂଯୋଗକୁ ବ୍ୟବହାର + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "ଅସୁରକ୍ଷିତ ସଂଯୋଗକୁ ଅନୁମତି ଦେବା ପାଇଁ \"ଅସୁରକ୍ଷିତ\" ଲେଖନ୍ତୁ <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"ଅସୁରକ୍ଷିତ ସଂଯୋଗକୁ ଅନୁମତି ଦେବା ପାଇଁ \"ଅସୁରକ୍ଷିତ\" ଲେଖନ୍ତୁ <a href=\"https:/" ++"/fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1435,7 +1695,10 @@ msgstr "~/.xsession-errors ଫାଇଲରୁ ସମ୍ପୃକ୍ତ ଧାଡ + 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." +@@ -1463,7 +1726,8 @@ msgstr "ପ୍ରଦତ୍ତ ଅନୁମତି ପତ୍ରଟି ଅବୈଧ + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "ଅନୁମତି ପତ୍ରଟି ଗୋଟିଏ ଅବିଶ୍ୱସ୍ତ ପ୍ରଦାତା ଦ୍ୱାରା ହସ୍ତାକ୍ଷର କରାଯାଇଛି: '%s'." ++msgstr "" ++"ଅନୁମତି ପତ୍ରଟି ଗୋଟିଏ ଅବିଶ୍ୱସ୍ତ ପ୍ରଦାତା ଦ୍ୱାରା ହସ୍ତାକ୍ଷର କରାଯାଇଛି: '%s'." + + #: ../src/plugins/https-utils.c:103 + #, c-format +@@ -1593,7 +1857,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nବୋଧି ସର୍ଭର ଉପରେ ଅଦ୍ୟତନଗୁଡ଼ିକୁ ସନ୍ଧାନ କରନ୍ତୁ" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"ବୋଧି ସର୍ଭର ଉପରେ ଅଦ୍ୟତନଗୁଡ଼ିକୁ ସନ୍ଧାନ କରନ୍ତୁ" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1611,16 +1878,22 @@ msgstr "ପ୍ୟାକେଜର ସ୍ଥାନୀୟ ସଂସ୍କରଣ ଉ + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "ଆପଣଙ୍କର ସମସ୍ୟାର ସମାଧାନ କରିବା ପାଇଁ ଏକ ଅଦ୍ୟତନ ଅଛି। ଆପଣଏହାକୁ ଚଲାଇ ସ୍ଥାପନ କରିପାରିବେ: %s. ତ୍ରୁଟି ଖବର କରି ଆଗକୁ ବଢ଼ିବାକୁ ଚାହୁଁଛନ୍ତି କି?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"ଆପଣଙ୍କର ସମସ୍ୟାର ସମାଧାନ କରିବା ପାଇଁ ଏକ ଅଦ୍ୟତନ ଅଛି। ଆପଣଏହାକୁ ଚଲାଇ ସ୍ଥାପନ " ++"କରିପାରିବେ: %s. ତ୍ରୁଟି ଖବର କରି ଆଗକୁ ବଢ଼ିବାକୁ ଚାହୁଁଛନ୍ତି କି?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + 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" ++"\n" ++"ବିଭାଜିତ oops ସନ୍ଦେଶ ପାଇଁ ଫାଇଲଗୁଡ଼ିକୁ ସ୍କାନ କରନ୍ତୁ। ସେଗୁଡ଼ିକୁ ମୁଦ୍ରଣ ଏବଂ/ଅଥବା " ++"ଅପସାରଣ କରିପାରିବେ।" + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1671,7 +1944,9 @@ msgstr "ଅଧିକ ସୂଚନା ପାଇଁ 'abrt-cli COMMAND --help' + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +-msgstr "Red Hat ଗ୍ରାହକ ପୃଷ୍ଠାରେ ଏକ ସ୍ଥିତିକୁ ଦର୍ଶାଇବା ପାଇଁ %sRun 'abrt-cli report %s'\n" ++msgstr "" ++"Red Hat ଗ୍ରାହକ ପୃଷ୍ଠାରେ ଏକ ସ୍ଥିତିକୁ ଦର୍ଶାଇବା ପାଇଁ %sRun 'abrt-cli report " ++"%s'\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1688,7 +1963,8 @@ msgstr "ବିସ୍ତୃତ ବିବରଣୀ ଦର୍ଶାନ୍ତୁ" + + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +-msgstr "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟସୀମାର ନିକଟବର୍ତ୍ତୀ ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" ++msgstr "" ++"କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟସୀମାର ନିକଟବର୍ତ୍ତୀ ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" + + #: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" +@@ -1697,9 +1973,13 @@ msgstr "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟସୀମା ଠ + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "ସ୍ୱୟଂ ଖବରକାରୀ ବିଶେଷତା ନିଷ୍କ୍ରିୟ ହୋଇଛି। ଦୟାକରି 'abrt-auto-reporting enabled' କୁ ନ୍ୟସ୍ତ କରି\nଏହାକୁ ରୁଟ ଭାବରେ ସକ୍ରିୟ କରନ୍ତୁ\n" ++msgstr "" ++"ସ୍ୱୟଂ ଖବରକାରୀ ବିଶେଷତା ନିଷ୍କ୍ରିୟ ହୋଇଛି। ଦୟାକରି 'abrt-auto-reporting enabled' " ++"କୁ ନ୍ୟସ୍ତ କରି\n" ++"ଏହାକୁ ରୁଟ ଭାବରେ ସକ୍ରିୟ କରନ୍ତୁ\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1729,7 +2009,9 @@ 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/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1764,7 +2046,8 @@ msgstr "ପରବର୍ତ୍ତୀ ସମସ୍ୟା ପାଇଁ ENTER ଦବ + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "--since ସ୍ୱତନ୍ତ୍ରଚର ବିନା, ସମସ୍ତ ଚିହ୍ନଟ ସମସ୍ୟାଗୁଡ଼ିକ ଉପରେ ବିଶ୍ଳେଷଣ କରନ୍ତୁ।" ++msgstr "" ++"--since ସ୍ୱତନ୍ତ୍ରଚର ବିନା, ସମସ୍ତ ଚିହ୍ନଟ ସମସ୍ୟାଗୁଡ଼ିକ ଉପରେ ବିଶ୍ଳେଷଣ କରନ୍ତୁ।" + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +@@ -1774,7 +2057,9 @@ msgstr "କେବଳ timestamp ପରେ ଥିବା ସମସ୍ୟାଗୁ + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "ସୁଦୂର ଅନୁସନ୍ଧାନ ସର୍ଭର ପାଖକୁ ବିଶ୍ଳେଷଣ ପାଇଁ କୋରଡମ୍ପ ପଠାନ୍ତୁ ଅଥବା ସୁଦୂର ବିଶ୍ଳେଷଣ ବିଫଳ ହେଲେ ସ୍ଥାନୀୟ ବିଶ୍ଳେଷଣ କରନ୍ତୁ" ++msgstr "" ++"ସୁଦୂର ଅନୁସନ୍ଧାନ ସର୍ଭର ପାଖକୁ ବିଶ୍ଳେଷଣ ପାଇଁ କୋରଡମ୍ପ ପଠାନ୍ତୁ ଅଥବା ସୁଦୂର " ++"ବିଶ୍ଳେଷଣ ବିଫଳ ହେଲେ ସ୍ଥାନୀୟ ବିଶ୍ଳେଷଣ କରନ୍ତୁ" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1782,10 +2067,17 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "ସର୍ଭରରେ କୋରଡମ୍ପକୁ ଧାରଣ କରିଥାଏ, ଯାହାକି ବ୍ୟାକଟ୍ରେସ ସୃଷ୍ଟି କରିଥାଏ ଏବଂ ତାହାକୁ ଫେରାଇଥାଏ। ଯଦି ବ୍ୟବହାରକାରୀ ଏହି କୋରଡମ୍ପକୁ କେଉଁଠି ଧାରଣ କରିନଥାଏ ତେବେ ଘଟଣା ସ୍ଥାନୀୟ ବିଶ୍ଳେଷଣ କରିଥାଏ। ସ୍ଥାନୀୟ ବିଶ୍ଳେଷଣ ଘଟଣାକୁ ଚଲାଇଥାଏ ଯଦି ସୁଦୂର ବିଶ୍ଳେଷଣ ବିଫଳ ହୋଇଥାଏ। ସମର୍ଥକ: ତ୍ରୁଟି ନିବାରଣ ଆହରଣ ଆବଶ୍ୟକ ନାହିଁ। ତ୍ରୁଟି ନିବାରଣ ସୂଚନାର ରିଟ୍ରେସ ସର୍ଭରର ତଥ୍ୟାଧାର ସମ୍ପୂର୍ଣ୍ଣ ଅଛି। ରିଟ୍ରେସ ସର୍ଭର ହୁଏତଃ ଉତ୍ତମ ବ୍ୟାକଟ୍ରେସ ସୃଷ୍ଟି କରିପାରେ। ବିପକ୍ଷ: ଆପଣ ଧାରଣ କରିଥିବା କୋରଡମ୍ପନଷ୍ଟ ପ୍ରଗାମରୁ ସମସ୍ତ ତଥ୍ୟ ଧାରଣ କରିଥାଏ, ଆପଣଙ୍କର ବ୍ୟକ୍ତିଗତ ତଥ୍ୟକୁ ଅନ୍ତର୍ଭୁକ୍ତ କରି, ଯଦି କିଛି ଥାଏ।" ++msgstr "" ++"ସର୍ଭରରେ କୋରଡମ୍ପକୁ ଧାରଣ କରିଥାଏ, ଯାହାକି ବ୍ୟାକଟ୍ରେସ ସୃଷ୍ଟି କରିଥାଏ ଏବଂ ତାହାକୁ " ++"ଫେରାଇଥାଏ। ଯଦି ବ୍ୟବହାରକାରୀ ଏହି କୋରଡମ୍ପକୁ କେଉଁଠି ଧାରଣ କରିନଥାଏ ତେବେ ଘଟଣା " ++"ସ୍ଥାନୀୟ ବିଶ୍ଳେଷଣ କରିଥାଏ। ସ୍ଥାନୀୟ ବିଶ୍ଳେଷଣ ଘଟଣାକୁ ଚଲାଇଥାଏ ଯଦି ସୁଦୂର ବିଶ୍ଳେଷଣ " ++"ବିଫଳ ହୋଇଥାଏ। ସମର୍ଥକ: ତ୍ରୁଟି ନିବାରଣ ଆହରଣ ଆବଶ୍ୟକ ନାହିଁ। ତ୍ରୁଟି ନିବାରଣ ସୂଚନାର " ++"ରିଟ୍ରେସ ସର୍ଭରର ତଥ୍ୟାଧାର ସମ୍ପୂର୍ଣ୍ଣ ଅଛି। ରିଟ୍ରେସ ସର୍ଭର ହୁଏତଃ ଉତ୍ତମ ବ୍ୟାକଟ୍ରେସ " ++"ସୃଷ୍ଟି କରିପାରେ। ବିପକ୍ଷ: ଆପଣ ଧାରଣ କରିଥିବା କୋରଡମ୍ପନଷ୍ଟ ପ୍ରଗାମରୁ ସମସ୍ତ ତଥ୍ୟ " ++"ଧାରଣ କରିଥାଏ, ଆପଣଙ୍କର ବ୍ୟକ୍ତିଗତ ତଥ୍ୟକୁ ଅନ୍ତର୍ଭୁକ୍ତ କରି, ଯଦି କିଛି ଥାଏ।" + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1794,13 +2086,17 @@ msgstr "VM ମୂଖ୍ୟକୁ ବିଶ୍ଳେଷଣ କରନ୍ତୁ" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "କର୍ଣ୍ଣଲ ତ୍ରୁଟି ନିବାରଣ ପ୍ୟାକେଜଗୁଡ଼ିକୁ ସ୍ଥାପନ କରନ୍ତୁ, କର୍ଣ୍ଣଲ ଲଗ ଏବଂ oops ସନ୍ଦେଶକୁ ସୃଷ୍ଟି କରନ୍ତୁ" ++msgstr "" ++"କର୍ଣ୍ଣଲ ତ୍ରୁଟି ନିବାରଣ ପ୍ୟାକେଜଗୁଡ଼ିକୁ ସ୍ଥାପନ କରନ୍ତୁ, କର୍ଣ୍ଣଲ ଲଗ ଏବଂ oops " ++"ସନ୍ଦେଶକୁ ସୃଷ୍ଟି କରନ୍ତୁ" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "କର୍ଣ୍ଣଲ ତ୍ରୁଟିନିବାରଣ ପ୍ୟାକେଜଗୁଡ଼ିକୁ ସ୍ଥାପନ କରିବା ଆବଶ୍ୟକ, ଯାହାକି ହୁଏତଃ କିଛି ସମୟ, ଏବଂ ଡିସ୍କ ସ୍ଥାନ ନେଇପାରେ।" ++msgstr "" ++"କର୍ଣ୍ଣଲ ତ୍ରୁଟିନିବାରଣ ପ୍ୟାକେଜଗୁଡ଼ିକୁ ସ୍ଥାପନ କରିବା ଆବଶ୍ୟକ, ଯାହାକି ହୁଏତଃ କିଛି " ++"ସମୟ, ଏବଂ ଡିସ୍କ ସ୍ଥାନ ନେଇପାରେ।" + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1814,7 +2110,9 @@ msgstr "ପ୍ରୟୋଗର GConf ଡିରେକ୍ଟୋରୀରୁ ସଂ + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "gconftool-2 --recursive-list /apps/executable କୁ ଚଲାଇଥାଏ ଏବଂ 'gconf_subtree' ଉପାଦାନ ଭାବରେ ସଂରକ୍ଷଣ କରିଥାଏ।" ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable କୁ ଚଲାଇଥାଏ ଏବଂ 'gconf_subtree' " ++"ଉପାଦାନ ଭାବରେ ସଂରକ୍ଷଣ କରିଥାଏ।" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1828,7 +2126,9 @@ 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 "vimrc ଏବଂ gvimrc ଫାଇଲଗୁଡ଼ିକ /etc ରେ ଅଛି କି ନାହିଁ ଯାଞ୍ଚ କରନ୍ତୁ ଏବଂ ସେଗୁଡ଼ିକୁsystem_vimrc ଏବଂ system_gvimrc ଭାବରେ ସଂରକ୍ଷଣ କରିଥାଏ।" ++msgstr "" ++"vimrc ଏବଂ gvimrc ଫାଇଲଗୁଡ଼ିକ /etc ରେ ଅଛି କି ନାହିଁ ଯାଞ୍ଚ କରନ୍ତୁ ଏବଂ " ++"ସେଗୁଡ଼ିକୁsystem_vimrc ଏବଂ system_gvimrc ଭାବରେ ସଂରକ୍ଷଣ କରିଥାଏ।" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1840,9 +2140,11 @@ msgstr ".vimrc ଏବଂ .gvimrc କୁ ଆପଣଙ୍କର ମୂଖ୍ୟ + + #: ../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 "ଆପଣଙ୍କର ମୂଖ୍ୟ ଡିରେକ୍ଟୋରୀରେ .vimrc ଏବଂ .gvimrc ଅଛି କି ନାହିଁ ଯାଞ୍ଚ କରିଥାଏ ଏବଂ ସେଗୁଡ଼ିକୁuser_vimrc ଏବଂ user_gvimrc ଭାବରେ ସଂରକ୍ଷଣ କରିଥାଏ।" ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"ଆପଣଙ୍କର ମୂଖ୍ୟ ଡିରେକ୍ଟୋରୀରେ .vimrc ଏବଂ .gvimrc ଅଛି କି ନାହିଁ ଯାଞ୍ଚ କରିଥାଏ ଏବଂ " ++"ସେଗୁଡ଼ିକୁuser_vimrc ଏବଂ user_gvimrc ଭାବରେ ସଂରକ୍ଷଣ କରିଥାଏ।" + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/pa.po b/po/pa.po +index fcd7e72..9dbd0bc 100644 +--- a/po/pa.po ++++ b/po/pa.po +@@ -8,17 +8,19 @@ + # Jiří Moskovčák , 2011 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/fedora-abrt/language/pa/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/fedora-" ++"abrt/language/pa/)\n" + "Language: pa\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -33,7 +35,10 @@ 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" +-msgstr "ਜਿਹੜੀ ਸੂਚਨਾ ਭੇਜੀ ਜਾਵੇਗੀ ਉਸ ਵਿੱਚ ਕੋਈ ਸੁਰੱਖਿਆ ਸੰਵੇਦਨਸ਼ੀਲ ਡਾਟਾ ਨਹੀਂ ਹੁੰਦਾ। ਇਸ ਲਈ ਇਹ ਜਰੂਰੀ ਨਹੀਂ ਹੈ ਕਿ ਅਗਲੀ ਵਾਰੀ ਤੁਹਾਨੂੰ ਖੇਚਲ ਦਿੱਤੀ ਜਾਵੇ ਅਤੇ ਤੁਹਾਡੇ ਵੱਲੋਂ ਕੋਈ ਅਗਲੀ ਕਾਰਵਾਈ ਚਾਹੀਦੀ ਹੋਵੇ। \n" ++msgstr "" ++"ਜਿਹੜੀ ਸੂਚਨਾ ਭੇਜੀ ਜਾਵੇਗੀ ਉਸ ਵਿੱਚ ਕੋਈ ਸੁਰੱਖਿਆ ਸੰਵੇਦਨਸ਼ੀਲ ਡਾਟਾ ਨਹੀਂ ਹੁੰਦਾ। ਇਸ ਲਈ " ++"ਇਹ ਜਰੂਰੀ ਨਹੀਂ ਹੈ ਕਿ ਅਗਲੀ ਵਾਰੀ ਤੁਹਾਨੂੰ ਖੇਚਲ ਦਿੱਤੀ ਜਾਵੇ ਅਤੇ ਤੁਹਾਡੇ ਵੱਲੋਂ ਕੋਈ " ++"ਅਗਲੀ ਕਾਰਵਾਈ ਚਾਹੀਦੀ ਹੋਵੇ। \n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +@@ -41,7 +46,8 @@ msgstr "ਕੀ ਤੁਸੀਂ ਸ੍ਵੈ-ਚਲਿਤ ਹੀ ਕਰੈਸ਼ ਸ + + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "ਕੀ ਤੁਸੀਂ ਸ੍ਵੈ-ਚਲਿਤ ਹੀ ਅਗਿਆਤ ਕਰੈਸ਼ ਸੂਚਨਾਵਾਂ ਜਮ੍ਹਾਂ ਕਰਨਾ ਯੋਗ ਕਰਨਾ ਚਾਹੋਗੇ?" ++msgstr "" ++"ਕੀ ਤੁਸੀਂ ਸ੍ਵੈ-ਚਲਿਤ ਹੀ ਅਗਿਆਤ ਕਰੈਸ਼ ਸੂਚਨਾਵਾਂ ਜਮ੍ਹਾਂ ਕਰਨਾ ਯੋਗ ਕਰਨਾ ਚਾਹੋਗੇ?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -91,7 +97,9 @@ msgstr "ਸੂਚਨਾ ਬੰਦ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -130,6 +138,7 @@ msgid "Ignore forever" + msgstr "ਹਮੇਸ਼ਾ ਲਈ ਅਣਦੇਖਿਆ ਕਰੋ" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "ਖੋਲ" +@@ -144,6 +153,7 @@ msgstr "ਇੱਕ ਗਲਤੀ ਆਈ ਹੈ " + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "ਰਿਪੋਰਟ" +@@ -186,14 +196,19 @@ msgstr "gio ਚੈਨਲ ਲਈ ਨਾਨ-ਬਲਾਕਿੰਗ ਮੋਡ ਨਹ + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "ਸੈਸ਼ਨ ਪ੍ਰਬੰਧਕ ਲਈ ਸੰਪਰਕ ਖੋਲ੍ਹਣ ਵਿੱਚ ਅਸਫਲ: '%s' ਸੂਚਨਾ ਅਗਲੇ ਲਾਗਇਨ ਤੇ ਮੁੜ ਪਰਗਟ ਹੋ ਸਕਦੀ ਹੈ" ++msgstr "" ++"ਸੈਸ਼ਨ ਪ੍ਰਬੰਧਕ ਲਈ ਸੰਪਰਕ ਖੋਲ੍ਹਣ ਵਿੱਚ ਅਸਫਲ: '%s' ਸੂਚਨਾ ਅਗਲੇ ਲਾਗਇਨ ਤੇ ਮੁੜ ਪਰਗਟ ਹੋ " ++"ਸਕਦੀ ਹੈ" + + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nਐਪਲਿਟ ਜੋ ਯੂਜ਼ਰ ਨੂੰ ABRT ਦੁਆਰਾ ਲੱਭੀ ਨਵੀਂ ਸਮੱਸਿਆ ਬਾਰੇ ਦੱਸਦਾ ਹੈ\n" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"ਐਪਲਿਟ ਜੋ ਯੂਜ਼ਰ ਨੂੰ ABRT ਦੁਆਰਾ ਲੱਭੀ ਨਵੀਂ ਸਮੱਸਿਆ ਬਾਰੇ ਦੱਸਦਾ ਹੈ\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -214,11 +229,14 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "ਸਟੈਕ ਪੈਦਾ ਕਰਨ ਲਈ ਕੋਰਡੰਪ ਫਾਈਲ ਜਰੂਰੀ ਹੈ ਜਿਹੜੀ ਕਿ ਸਮਾਂ ਅਤੇ ਜਗ੍ਹਾ ਲੈਣ ਵਾਲੀ ਕਾਰਵਾਈ ਹੈ। ABRT ਇੱਕ ਸੇਵਾ ਮੁਹੱਈਆ ਕਰਵਾਉਂਦਾ ਹੈ ਜਿਹੜੀ ਕੋਰਡੰਪ ਤੋਂ ਸਟੈਕ ਟਰੇਸ ਪੈਦਾ ਕਰਦੀ ਹੈ ਪਰ ਤੁਹਾਨੂੰ ਇਸ ਸੇਵਾ ਨੂੰ ਕੋਰਡੰਪ ਅੱਪਲੋਡ ਕਰਨਾ ਪੈਂਦਾ ਹੈ। ਇਸ ਚੋਣ ਨੂੰ ਅਯੋਗ ਕਰਨ ਨਾਲ ABRT ਕੋਰਡੰਪ ਨੂੰ ਬਿਨਾਂ ਪੁੱਛੇ ਹੀ ਅੱਪਲੋਡ ਕਰ ਦੇਵੇਗਾ।" ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"ਸਟੈਕ ਪੈਦਾ ਕਰਨ ਲਈ ਕੋਰਡੰਪ ਫਾਈਲ ਜਰੂਰੀ ਹੈ ਜਿਹੜੀ ਕਿ ਸਮਾਂ ਅਤੇ ਜਗ੍ਹਾ ਲੈਣ ਵਾਲੀ " ++"ਕਾਰਵਾਈ ਹੈ। ABRT ਇੱਕ ਸੇਵਾ ਮੁਹੱਈਆ ਕਰਵਾਉਂਦਾ ਹੈ ਜਿਹੜੀ ਕੋਰਡੰਪ ਤੋਂ ਸਟੈਕ ਟਰੇਸ ਪੈਦਾ " ++"ਕਰਦੀ ਹੈ ਪਰ ਤੁਹਾਨੂੰ ਇਸ ਸੇਵਾ ਨੂੰ ਕੋਰਡੰਪ ਅੱਪਲੋਡ ਕਰਨਾ ਪੈਂਦਾ ਹੈ। ਇਸ ਚੋਣ ਨੂੰ ਅਯੋਗ " ++"ਕਰਨ ਨਾਲ ABRT ਕੋਰਡੰਪ ਨੂੰ ਬਿਨਾਂ ਪੁੱਛੇ ਹੀ ਅੱਪਲੋਡ ਕਰ ਦੇਵੇਗਾ।" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -231,15 +249,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -304,7 +322,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nਕਿਊਰੀ ਪੈਕੇਜ ਡਾਟਾਬੇਸ ਅਤੇ ਪੈਕੇਜ ਸੰਭਾਲੋ ਅਤੇ ਕੰਪੋਨੈੱਟ ਨਾਂ" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"ਕਿਊਰੀ ਪੈਕੇਜ ਡਾਟਾਬੇਸ ਅਤੇ ਪੈਕੇਜ ਸੰਭਾਲੋ ਅਤੇ ਕੰਪੋਨੈੱਟ ਨਾਂ" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -393,7 +414,9 @@ msgstr "ਐਲੀਮੈਂਟ '%s' ਨੂੰ ਸਮੱਸਿਆ ਡਾਇਰੈ + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "ਨਾਂ '%s' ਗੁੰਮ ਗਿਆ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਜਾਂਚੋ ਕਿ ਇਸ ਨਾਂ ਵਾਲਾ ਹੋਰ ਜੰਤਰ ਤਾਂ ਨਹੀਂ ਚੱਲ ਰਿਹਾ।\n" ++msgstr "" ++"ਨਾਂ '%s' ਗੁੰਮ ਗਿਆ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਜਾਂਚੋ ਕਿ ਇਸ ਨਾਂ ਵਾਲਾ ਹੋਰ ਜੰਤਰ ਤਾਂ ਨਹੀਂ ਚੱਲ " ++"ਰਿਹਾ।\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -407,11 +430,16 @@ msgstr "ਇਹ ਪਰੋਗਰਾਮ ਪਰਬੰਧਕ(root) ਦੇ ਤੌਰ + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 ਤੁਹਾਨੂੰ ਇਹ ਮੁਸ਼ਕਿਲ ਦਰਜ ਨਹੀਂ ਕਰਵਾਉਣ ਦੇਵੇਗਾ। ਅਗਰ ਤੁਹਾਡੇ ਕੋਲ ਸਮਾਂ ਹੈ ਤੇ ਵਿਕਾਸਕਾਰਾਂ ਦੀ ਇਸ ਮੁਸ਼ਕਿਲ ਨੂੰ ਹੱਲ ਕਰਨ ਦੀਆਂ ਕੋਸ਼ਿਸ਼ਾਂ ਵਿੱਚ ਮੱਦਦ ਕਰਨੀ ਚਾਹੁਂਦੇ ਹੋ ਤਾਂ, ਕਿਰਪਾ ਕਰ ਕੇ ਉਹਨਾਂ ਨਾਲ ਸਿੱਧਿਆਂ ਸੰਪਰਕ ਕਰੋ।" ++"detected while computer is shutting down or user is logging out. In order to " ++"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 ਤੁਹਾਨੂੰ ਇਹ ਮੁਸ਼ਕਿਲ ਦਰਜ ਨਹੀਂ ਕਰਵਾਉਣ ਦੇਵੇਗਾ। " ++"ਅਗਰ ਤੁਹਾਡੇ ਕੋਲ ਸਮਾਂ ਹੈ ਤੇ ਵਿਕਾਸਕਾਰਾਂ ਦੀ ਇਸ ਮੁਸ਼ਕਿਲ ਨੂੰ ਹੱਲ ਕਰਨ ਦੀਆਂ ਕੋਸ਼ਿਸ਼ਾਂ " ++"ਵਿੱਚ ਮੱਦਦ ਕਰਨੀ ਚਾਹੁਂਦੇ ਹੋ ਤਾਂ, ਕਿਰਪਾ ਕਰ ਕੇ ਉਹਨਾਂ ਨਾਲ ਸਿੱਧਿਆਂ ਸੰਪਰਕ ਕਰੋ।" + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -436,7 +464,9 @@ msgstr "ਯੂਜ਼ਰ ਨੂੰ ਸਿੱਧਾ ਸੰਪਰਕ ਕਰੋ" + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "ਕੰਮ ਕਰਨ ਲਈ ਕੋਈ ਵਰਕਰ ਵਿਹਲਾ ਨਹੀਂ ਹੈ ਤੇ ਬਫਰ ਭਰਿਆ ਹੈ। '%s' ਆਰਕਾਇਵ ਨੂੰ ਛੱਡ ਰਿਹਾ ਹੈ" ++msgstr "" ++"ਕੰਮ ਕਰਨ ਲਈ ਕੋਈ ਵਰਕਰ ਵਿਹਲਾ ਨਹੀਂ ਹੈ ਤੇ ਬਫਰ ਭਰਿਆ ਹੈ। '%s' ਆਰਕਾਇਵ ਨੂੰ ਛੱਡ ਰਿਹਾ " ++"ਹੈ" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -448,7 +478,16 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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 ਚੋਣ ਦਾ ਮੁੱਲ ਵਰਤ ਲੈਂਦਾ ਹੈ" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"UPLOAD_DIRECTORY ਵੇਖਦਾ ਹੈ ਅਤੇ ਅੰਦਰ ਆ ਰਹੇ ਆਰਕਾਇਵਾਂ ਨੂੰ abrt.conf ਵਿੱਚ ਦਰਸਾਏ " ++"ਗਏ \n" ++"DumpLocation ਵਿੱਚ ਖੋਲਦਾ ਹੈ\n" ++"\n" ++"ਜੇ UPLOAD_DIRECTORY ਮੁਹੱਈਆ ਨਹੀਂ ਕਰਵਾਈ ਗਈ, abrt.conf ਤੋਂ\n" ++"WatchCrashdumpArchiveDir ਚੋਣ ਦਾ ਮੁੱਲ ਵਰਤ ਲੈਂਦਾ ਹੈ" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -462,19 +501,72 @@ msgstr "ਕਨਕਰੈਂਟ ਵਰਕਰਾਂ ਦੀ ਗਿਣਤੀ। ਮ + msgid "Maximal cache size in MiB. Default is " + msgstr "ਵੱਧ ਤੋਂ ਵੱਧ ਕੈਚੇ ਆਕਾਰ MiB ਵਿੱਚ। ਮੂਲ ਹੈ" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "ਅਢੁਕਵੀਂ ਗਿਣਤੀ ਦੇ ਆਰਗੂਮੈਂਟ" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ਅਣਪਛਾਤਾ ਚੋਣ ਮੁੱਲ: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -592,7 +684,9 @@ msgstr "ਆਰਜੀ ਫ਼ਾਈਲ '%s' ਨਹੀਂ ਬਣਾ ਸਕਦਾ" + 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:264 +@@ -606,11 +700,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nC/C++ ਬੈਕਟਰੇਸ ਜਾਂਚ ਕਰੋ, ਡੁਪਲੀਕੇਟ ਹੈਸ਼, ਬੈਕਟਰੇਸ ਰੇਟਿੰਗ ਬਣਾਓ,\nਅਤੇ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਵਿੱਚ ਕਰੈਸ਼ ਫੰਕਸ਼ਨ ਦੀ ਪਛਾਣ ਕਰੋ" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"C/C++ ਬੈਕਟਰੇਸ ਜਾਂਚ ਕਰੋ, ਡੁਪਲੀਕੇਟ ਹੈਸ਼, ਬੈਕਟਰੇਸ ਰੇਟਿੰਗ ਬਣਾਓ,\n" ++"ਅਤੇ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਵਿੱਚ ਕਰੈਸ਼ ਫੰਕਸ਼ਨ ਦੀ ਪਛਾਣ ਕਰੋ" + ++#. + #. * 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" +@@ -625,7 +725,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nਸਮੱਸਿਆ ਡਾਇਰੈਟਰੀ DIR ਵਿੱਚ ਕੋਰਡੰਪ ਦਾ UUID ਕੈਲਕੂਲੇਟ ਕਰਦਾ ਹੈ ਅਤੇ ਸੰਭਾਲਦਾ ਹੈ" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"ਸਮੱਸਿਆ ਡਾਇਰੈਟਰੀ DIR ਵਿੱਚ ਕੋਰਡੰਪ ਦਾ UUID ਕੈਲਕੂਲੇਟ ਕਰਦਾ ਹੈ ਅਤੇ ਸੰਭਾਲਦਾ ਹੈ" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -651,14 +754,20 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\nCalculates and saves UUID and DUPHASH for oops problem directory DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calculates and saves UUID and DUPHASH for oops problem directory 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\nCalculates and saves UUID and DUPHASH for xorg problem directory DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calculates and saves UUID and DUPHASH for xorg problem directory DIR" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -670,7 +779,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nਪਾਇਥਨ ਕਰੈਸ਼ ਡੰਪ ਦੇ UUID ਅਤੇ DUPHASH ਨੂੰ ਕੈਲਕੂਲੇਟ ਕਰੋ ਅਤੇ ਸੰਭਾਲੋ" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"ਪਾਇਥਨ ਕਰੈਸ਼ ਡੰਪ ਦੇ UUID ਅਤੇ DUPHASH ਨੂੰ ਕੈਲਕੂਲੇਟ ਕਰੋ ਅਤੇ ਸੰਭਾਲੋ" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -685,10 +797,10 @@ msgid "Extracting the oops text from core" + msgstr "ਕੋਰ ਤੋਂ oops ਪਾਠ ਨਿਖੇੜ ਰਿਹਾ ਹੈ" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "ਅਮਲ ਵਿੱਚ ਨਹੀਂ ਲਿਆ ਸਕਦਾ {0}:\n" + "{1}" +-msgstr "ਅਮਲ ਵਿੱਚ ਨਹੀਂ ਲਿਆ ਸਕਦਾ {0}:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -702,14 +814,20 @@ msgstr "Oops ਸਫਲਤਾਪੂਰਵਕ ਨਿਖੇੜਿਆ ਗਿਆ" + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "ਕਰਨਲ ਲੌਗ ਸੰਕੇਤ ਕਰਦਾ ਹੈ ਕਿ ਹਾਰਡਵੇਅਰ ਗਲਤੀਆਂ ਖੋਜੀਆਂ ਗਈਆਂ।\nਇਹ ਸਾਫਟਵੇਅਰ ਸਮੱਸਿਆ ਉੱਕਾ ਹੀ ਨਹੀਂ ਹੋ ਸਕਦੀ।\n" ++msgstr "" ++"ਕਰਨਲ ਲੌਗ ਸੰਕੇਤ ਕਰਦਾ ਹੈ ਕਿ ਹਾਰਡਵੇਅਰ ਗਲਤੀਆਂ ਖੋਜੀਆਂ ਗਈਆਂ।\n" ++"ਇਹ ਸਾਫਟਵੇਅਰ ਸਮੱਸਿਆ ਉੱਕਾ ਹੀ ਨਹੀਂ ਹੋ ਸਕਦੀ।\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਵਿੱਚ ਕੋਰਡੰਪ ਦੀ ਜਾਂਚ ਕਰਦਾ ਹੈ, ਬੈਕਟਰੇਸ ਬਣਾਉਂਦਾ ਅਤੇ ਸੰਭਾਲਦਾ ਹੈ" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਵਿੱਚ ਕੋਰਡੰਪ ਦੀ ਜਾਂਚ ਕਰਦਾ ਹੈ, ਬੈਕਟਰੇਸ ਬਣਾਉਂਦਾ ਅਤੇ " ++"ਸੰਭਾਲਦਾ ਹੈ" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -721,6 +839,7 @@ 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" +@@ -731,7 +850,10 @@ 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" ++"\n" ++"ਕੋਰਡੰਪ ਤੇ ਸੰਬੰਧਿਤ ਬਾਇਨਰੀ ਤੋਂ ਕੋਰਡੰਪ-ਪੱਧਰ ਦੀ ਬੈਕਟਰੇਸ ਬਣਾਉਂਦਾ ਹੈ" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -759,7 +881,8 @@ msgstr "ਉਪਭੋਗੀ ਕਮਾਂਡ ਬੰਦ ਕਰ ਰਿਹਾ ਹੈ" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -769,13 +892,34 @@ msgid "" + " -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" ++" --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" +-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" ++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 ਨੂੰ ਆਰਜੀ ਸਟੇਜਿੰਗ ਖੇਤਰ ਵਜੋਂ ਵਰਤ ਕੇ,BUILD_IDS_FILE ਵਿੱਚ ਸੂਚੀਬੱਧ ਕੀਤੀਆਂ " ++"ਸਾਰੀਆਂ\n" ++"build-ids ਲਈ debuginfos ਨੂੰ CACHEDIR ਤੇ ਇੰਸਟਾਲ ਕਰਦਾ ਹੈ।\n" ++"CACHEDIR ਵਿੱਚਲੀਆਂ ਸਾਰੀਆਂ ਪੁਰਾਣੀਆਂ ਫਾਈਲਾਂ 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}" +@@ -806,21 +950,33 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Ok to upload core dump? (It may contain sensitive data). If your answer is 'No', a stack trace will be generated locally. (It may download a huge amount of data)." ++msgstr "" ++"Ok to upload core dump? (It may contain sensitive data). If your answer is " ++"'No', a stack trace will be generated locally. (It may download a huge " ++"amount of data)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"ਕੀ ਤੁਸੀਂ ਸਟੈਕ ਟਰੇਸ ਨੂੰ ਸਥਾਨਕ ਤੌਰ ਤੇ ਪੈਦਾ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ? (ਇਹ ਬਹੁਤ ਜਿਆਦਾ " ++"ਤਦਾਦ ਵਿੱਚ ਡਾਟਾ ਡਾਊਨਲੋਡ ਕਰ ਸਕਦਾ ਹੈ ਪਰ ਸਟੈਕ ਟਰੇਸ ਤੋਂ ਬਿਨਾਂ ਇਤਲਾਹ ਦੇਣੀ ਚਾਲੂ " ++"ਨਹੀਂ ਰਹਿ ਸਕਦੀ)।" + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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ਸਮੱਸਿਆ dirs (-d) ਜਾਂ DIRs ਵਿਚਲੀਆਂ ਫਾਇਲਾਂ (-f) ਹਟਾਓ ਜਦੋਂ ਤੱਕ ਉਹ SIZE ਤੋਂ ਛੋਟੀਆਂ ਨਹੀਂ ਹੋ ਜਾਂਦੀਆਂ।\nFILEs ਰਾਖਵੀਆਂ ਰੱਖੀਆਂ ਗਈਆਂ ਹਨ (ਕਦੇ ਹਟਾਈਆਂ ਨਹੀਂ ਜਾਂਦੀਆਂ)।" ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"ਸਮੱਸਿਆ dirs (-d) ਜਾਂ DIRs ਵਿਚਲੀਆਂ ਫਾਇਲਾਂ (-f) ਹਟਾਓ ਜਦੋਂ ਤੱਕ ਉਹ SIZE ਤੋਂ " ++"ਛੋਟੀਆਂ ਨਹੀਂ ਹੋ ਜਾਂਦੀਆਂ।\n" ++"FILEs ਰਾਖਵੀਆਂ ਰੱਖੀਆਂ ਗਈਆਂ ਹਨ (ਕਦੇ ਹਟਾਈਆਂ ਨਹੀਂ ਜਾਂਦੀਆਂ)।" + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -962,7 +1118,9 @@ 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" +@@ -989,7 +1147,10 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nਲਾਗ ਫਾਇਲ FILE ਵੇਖੋ, PROG ਚਲਾਓ ਜਦੋਂ ਇਹ ਫੈਲਦਾ ਹੈ ਜਾਂ ਤਬਦੀਲ ਕੀਤਾ ਜਾਂਦਾ ਹੈ" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"ਲਾਗ ਫਾਇਲ FILE ਵੇਖੋ, PROG ਚਲਾਓ ਜਦੋਂ ਇਹ ਫੈਲਦਾ ਹੈ ਜਾਂ ਤਬਦੀਲ ਕੀਤਾ ਜਾਂਦਾ ਹੈ" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -999,20 +1160,26 @@ msgstr "PROG ਨਾਲ ਚਲਾਓ ਜੇ STRs ਨਹੀਂ ਲੱਭਿਆ" + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "ਟੁੱਟੀ ਹੋਈ BIOS ਦੇ ਕਰ ਕੇ ਇੱਕ ਕਰਨਲ ਮੁਸ਼ਕਲ ਵਾਪਰੀ ਹੈ। ਬਦਕਿਸਮਤੀ ਨਾਲ, ਇਹੋ ਜਿਹੀਆਂ ਮੁਸ਼ਕਲਾਂ ਕਰਨਲ ਪਰਬੰਧਕਾਂ ਦੁਆਰਾ ਠੀਕ ਹੋਣ ਯੋਗ ਨਹੀਂ ਹਨ।" ++msgstr "" ++"ਟੁੱਟੀ ਹੋਈ BIOS ਦੇ ਕਰ ਕੇ ਇੱਕ ਕਰਨਲ ਮੁਸ਼ਕਲ ਵਾਪਰੀ ਹੈ। ਬਦਕਿਸਮਤੀ ਨਾਲ, ਇਹੋ ਜਿਹੀਆਂ " ++"ਮੁਸ਼ਕਲਾਂ ਕਰਨਲ ਪਰਬੰਧਕਾਂ ਦੁਆਰਾ ਠੀਕ ਹੋਣ ਯੋਗ ਨਹੀਂ ਹਨ।" + + #: ../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: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) ਹੋ ਗਿਆ ਹੈ। ਕਰਨਲ ਪਰਬੰਧਕ ਖਰਾਬੀ ਬਾਰੇ ਪੜਤਾਲ ਕਰਨ ਤੋਂ ਅਸਮਰਥ ਹਨ।" ++msgstr "" ++"ਇੱਕ ਕਰਨਲ ਸਮੱਸਿਆ ਆਈ ਹੈ, ਪਰ ਤੁਹਾਡਾ ਕਰਨਲ ਖਰਾਬ (flags:%s) ਹੋ ਗਿਆ ਹੈ। ਕਰਨਲ ਪਰਬੰਧਕ " ++"ਖਰਾਬੀ ਬਾਰੇ ਪੜਤਾਲ ਕਰਨ ਤੋਂ ਅਸਮਰਥ ਹਨ।" + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1024,7 +1191,10 @@ 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" ++"\n" ++"FILE (ਜਾਂ ਆਦਰਸ਼ ਇੰਪੁਟ) ਤੋਂ oops ਅਲੱਗ ਕਰੋ" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1032,6 +1202,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "ਹਰੇਕ oops ਲਈ ਨਵੀਂ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਵਿੱਚ ਬਣਾਓ" +@@ -1074,7 +1245,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nXorg ਕਰੈਸ਼ ਨੂੰ FILE (ਜਾਂ ਸਟੈਂਡਰਡ ਇੰਪੁੱਟ) ਤੋਂ ਲਵੋ" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Xorg ਕਰੈਸ਼ ਨੂੰ FILE (ਜਾਂ ਸਟੈਂਡਰਡ ਇੰਪੁੱਟ) ਤੋਂ ਲਵੋ" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1088,10 +1262,13 @@ msgstr "ਹਰੇਕ ਕਰੈਸ਼ ਲਈ ਸਮੱਸਿਆ ਡਾਇਰੈਕ + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "ਰੀਟਰੇਸ ਸਰਵਰ ਵਰਤਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ, ਕਿਉਂਕਿ ਕਰੈਸ਼ ਬਹੁਤ ਵੱਡਾ ਹੈ। ਲੋਕਲ ਰੀਟਰੇਸਿੰਗ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" ++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 +@@ -1114,10 +1291,10 @@ msgstr "%d ਲੰਬਾਈ ਵਾਲਾ HTTP ਹੈਡਰ ਭੇਜਣ ਤੋਂ + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "ਸਰਵਰ ਤੋਂ ਅਚਾਨਕ HTTP ਜਵਾਬ: %d\n" + "%s" +-msgstr "ਸਰਵਰ ਤੋਂ ਅਚਾਨਕ HTTP ਜਵਾਬ: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1133,7 +1310,9 @@ msgstr "ਸਰਵਰ ਤੋਂ ਗਲਤ ਜਵਾਬ: HTTP ਮੈਸੇਜ ਬ + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "ਰੀਟਰੇਸ ਸਰਵਰ '%s.%s' ਪੰਡ ਨੂੰ ਪ੍ਰੋਸੈਸ ਕਰਨ ਵਿੱਚ ਅਸਮਰੱਥ।\nਕੀ ਇਹ ਅਧਿਕਾਰਤ '%s' ਰਿਪੋਜ਼ਿਟਰੀਆਂ ਦਾ ਹਿੱਸਾ ਹੈ?" ++msgstr "" ++"ਰੀਟਰੇਸ ਸਰਵਰ '%s.%s' ਪੰਡ ਨੂੰ ਪ੍ਰੋਸੈਸ ਕਰਨ ਵਿੱਚ ਅਸਮਰੱਥ।\n" ++"ਕੀ ਇਹ ਅਧਿਕਾਰਤ '%s' ਰਿਪੋਜ਼ਿਟਰੀਆਂ ਦਾ ਹਿੱਸਾ ਹੈ?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1158,7 +1337,9 @@ msgstr "'%s' ਰੈਗੂਲਰ ਫਾਇਲ ਹੋਣੀ ਜਰੂਰੀ ਹੈ + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "ਤੁਹਾਡੇ ਕਰੈਸ਼ ਦਾ ਅਕਾਰ %lld ਬਾਈਟ ਹੈ, ਪਰ ਰੀਟਰੇਸ ਸਰਵਰ ਸਿਰਫ %lld ਬਾਈਟ ਦੇ ਬਰਾਬਰ ਜਾਂ ਛੋਟਾ ਅਕਾਰ ਸਵੀਕਾਰ ਕਰਦਾ ਹੈ।" ++msgstr "" ++"ਤੁਹਾਡੇ ਕਰੈਸ਼ ਦਾ ਅਕਾਰ %lld ਬਾਈਟ ਹੈ, ਪਰ ਰੀਟਰੇਸ ਸਰਵਰ ਸਿਰਫ %lld ਬਾਈਟ ਦੇ ਬਰਾਬਰ ਜਾਂ " ++"ਛੋਟਾ ਅਕਾਰ ਸਵੀਕਾਰ ਕਰਦਾ ਹੈ।" + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1186,7 +1367,9 @@ msgstr "ਅੱਪਲੋਡ ਕਰਨ ਲਈ ਆਰਚੀਵ ਤਿਆਰ ਕਰ + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "ਤੁਹਾਡੀ ਆਰਚੀਵ ਦਾ ਅਕਾਰ %lld ਬਾਈਟ ਹੈ, ਪਰ ਰੀਟਰੇਸ ਸਰਵਰ ਸਿਰਫ %lld ਬਾਈਟ ਦੇ ਬਰਾਬਰ ਜਾਂ ਛੋਟਾ ਅਕਾਰ ਸਵੀਕਾਰ ਕਰਦਾ ਹੈ।" ++msgstr "" ++"ਤੁਹਾਡੀ ਆਰਚੀਵ ਦਾ ਅਕਾਰ %lld ਬਾਈਟ ਹੈ, ਪਰ ਰੀਟਰੇਸ ਸਰਵਰ ਸਿਰਫ %lld ਬਾਈਟ ਦੇ ਬਰਾਬਰ " ++"ਜਾਂ ਛੋਟਾ ਅਕਾਰ ਸਵੀਕਾਰ ਕਰਦਾ ਹੈ।" + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1229,7 +1412,8 @@ msgstr "ਅੱਪਲੋਡ ਸਫਲ ਹੋਇਆ" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "ਤੁਹਾਡੀ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਖਰਾਬ ਹੈ ਅਤੇ ਰੀਟਰੇਸ ਸਰਵਰ ਦੁਆਰਾ ਵਰਤੀ ਨਹੀਂ ਜਾ ਸਕਦੀ।" ++msgstr "" ++"ਤੁਹਾਡੀ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਖਰਾਬ ਹੈ ਅਤੇ ਰੀਟਰੇਸ ਸਰਵਰ ਦੁਆਰਾ ਵਰਤੀ ਨਹੀਂ ਜਾ ਸਕਦੀ।" + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" +@@ -1251,10 +1435,10 @@ msgstr "ਰੀਟਰੇਸ ਜੌਬ ਚਾਲੂ ਹੋਈ" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "ਕਾਰਜ Id: %s\nਕਾਰਜ ਪਾਸਵਰਡ: %s\n" ++msgstr "ਕਾਰਜ Id: %s\n" ++"ਕਾਰਜ ਪਾਸਵਰਡ: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1262,10 +1446,10 @@ msgstr "ਸਰਵਰ ਤੋਂ ਗਲਤ ਜਵਾਬ: X-Task-Status ਗੈਰ- + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "ਕਾਰਜ ਹਾਲਤ: %s\n" + "%s\n" +-msgstr "ਕਾਰਜ ਹਾਲਤ: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1278,7 +1462,9 @@ msgstr "HTTP ਹੈਡਰ ਭੇਜਣ ਤੋਞ ਫੇਲ ਹੋਇਆ ਜਿ + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "ਰੀਟਰੇਸ ਫੇਲ ਹੋਇਆ। ਬਾਅਦ ਵਿੱਚ ਫਿਲ ਕੋਸ਼ਿਸ਼ ਕਰੋ ਜੇ ਸਮੱਸਿਆ ਹੈ ਤਾਂ ਇਸ ਮੁੱਦੇ ਦੀ ਰਿਪੋਰਟ ਕਰੋ।" ++msgstr "" ++"ਰੀਟਰੇਸ ਫੇਲ ਹੋਇਆ। ਬਾਅਦ ਵਿੱਚ ਫਿਲ ਕੋਸ਼ਿਸ਼ ਕਰੋ ਜੇ ਸਮੱਸਿਆ ਹੈ ਤਾਂ ਇਸ ਮੁੱਦੇ ਦੀ ਰਿਪੋਰਟ " ++"ਕਰੋ।" + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1292,7 +1478,8 @@ msgstr "ਰੀਟਰੇਸ ਸਰਵਰ ਨਾਲ ਅਸੁਰੱਖਿਅਤ + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "ਜਾਂਚ ਨਾ ਕਰੋ ਕਿ ਰੀਟਰੇਸ ਸਰਵਰ ਦਿੱਤੇ ਪੈਕੇਜ ਨੂੰ ਪਰੋਸੈੱਸ ਕਰ ਦੇ ਯੋਗ ਹੈ ਜਾਂ ਨਹੀਂ" ++msgstr "" ++"ਜਾਂਚ ਨਾ ਕਰੋ ਕਿ ਰੀਟਰੇਸ ਸਰਵਰ ਦਿੱਤੇ ਪੈਕੇਜ ਨੂੰ ਪਰੋਸੈੱਸ ਕਰ ਦੇ ਯੋਗ ਹੈ ਜਾਂ ਨਹੀਂ" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1342,7 +1529,9 @@ msgstr "ਸਰਵਰ ਉੱਪਰ ਤੁਹਾਡੇ ਕਾਰਜ ਦਾ ਪਾ + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [options]\nਕਾਰਵਾਈਆਂ: create/status/backtrace/log/batch/exploitable" ++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 +@@ -1379,9 +1568,12 @@ msgstr "ਡੀਬੱਗ-ਜਾਣਕਾਰੀ ਡਾਊਨਲੋਡ ਕਰੋ + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "ਡੀਬੱਗ-ਜਾਣਕਾਰੀ ਡਾਊਨਲੋਡ ਕਰਨ ਦੀ ਲੋੜ ਹੈ, ਜਿਸਨੂੰ ਕੁਝ ਸਮਾਂ ਲੱਗ ਸਕਦਾ ਹੈ, ਅਤੇ ਡਿਸਕ ਸਪੇਸ ਵੀ ਲੈ ਸਕਦਾ ਹੈ। ਇਸ ਤਰਾਂ, ਦੂਜੇ ਪਾਸੇ ਰੀਟਰੇਸਸਰਵਰ (RetraceServer), ਰਿਮੋਟ ਮਸ਼ੀਨਾਂ ਵੱਲ ਕੋਰਡੰਪ ਭੇਜਦਾ ਹੈ।" ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"ਡੀਬੱਗ-ਜਾਣਕਾਰੀ ਡਾਊਨਲੋਡ ਕਰਨ ਦੀ ਲੋੜ ਹੈ, ਜਿਸਨੂੰ ਕੁਝ ਸਮਾਂ ਲੱਗ ਸਕਦਾ ਹੈ, ਅਤੇ ਡਿਸਕ " ++"ਸਪੇਸ ਵੀ ਲੈ ਸਕਦਾ ਹੈ। ਇਸ ਤਰਾਂ, ਦੂਜੇ ਪਾਸੇ ਰੀਟਰੇਸਸਰਵਰ (RetraceServer), ਰਿਮੋਟ " ++"ਮਸ਼ੀਨਾਂ ਵੱਲ ਕੋਰਡੰਪ ਭੇਜਦਾ ਹੈ।" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1389,12 +1581,17 @@ msgstr "ਜਾਂਚ ਵਾਸਤੇ ਕੋਰਡੰਪ ਨੂੰ ਰਿਮੋ + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "ਕੋਰਡੰਪ ਨੂੰ ਸਰਵਰ ਤੇ ਅੱਪਲੋਡ ਕਰਦਾ ਹੈ, ਜੋ ਬੈਕਟਰੇਸ ਬਣਾਉਂਦੀ ਹੈ ਅਤੇ ਵਾਪਸ ਭੇਜਦੀ ਹੈ। Pros: ਡੀਬੱਗ-ਜਾਣਕਾਰੀ ਡਾਊਨਲੋਡ ਕਰਨ ਦੀ ਕੋਈ ਲੋੜ ਨਹੀਂ ਹੈ। ਰੀਟਰੇਸ ਸਰਵਰ ਦਾ ਡੀਬੱਗ-ਜਾਣਕਾਰੀ ਡਾਟਾਬੇਸ ਦੀ ਰੀਟਰੇਸ ਜਿਆਦਾ ਮੁਕੰਮਲ ਹੈ। ਰੀਟਰੇਸ ਸਰਵਰ ਵਧੀਆ ਬੈਕਟਰੇਸ ਬਣਾ ਸਕਦਾ ਹੈ। Cons: ਕੋਰਡੰਪ ਜੋ ਤੁਸੀਂ ਅੱਪਲੋਡ ਕੀਤਾ ਹੈ ਉਸ ਵਿੱਚ ਕਰੈਸ਼ ਪਰੋਗਰਾਮ ਦੀ ਸਾਰਾ ਡਾਟਾ ਸ਼ਾਮਿਲ ਹੈ, ਤੁਹਾਡੇ ਪਰਾਈਵੇਟ ਡਾਟੇ ਸਮੇਤ, ਜੇ ਕੋਈ ਹੈ।" ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"ਕੋਰਡੰਪ ਨੂੰ ਸਰਵਰ ਤੇ ਅੱਪਲੋਡ ਕਰਦਾ ਹੈ, ਜੋ ਬੈਕਟਰੇਸ ਬਣਾਉਂਦੀ ਹੈ ਅਤੇ ਵਾਪਸ ਭੇਜਦੀ ਹੈ। " ++"Pros: ਡੀਬੱਗ-ਜਾਣਕਾਰੀ ਡਾਊਨਲੋਡ ਕਰਨ ਦੀ ਕੋਈ ਲੋੜ ਨਹੀਂ ਹੈ। ਰੀਟਰੇਸ ਸਰਵਰ ਦਾ ਡੀਬੱਗ-" ++"ਜਾਣਕਾਰੀ ਡਾਟਾਬੇਸ ਦੀ ਰੀਟਰੇਸ ਜਿਆਦਾ ਮੁਕੰਮਲ ਹੈ। ਰੀਟਰੇਸ ਸਰਵਰ ਵਧੀਆ ਬੈਕਟਰੇਸ ਬਣਾ ਸਕਦਾ " ++"ਹੈ। Cons: ਕੋਰਡੰਪ ਜੋ ਤੁਸੀਂ ਅੱਪਲੋਡ ਕੀਤਾ ਹੈ ਉਸ ਵਿੱਚ ਕਰੈਸ਼ ਪਰੋਗਰਾਮ ਦੀ ਸਾਰਾ ਡਾਟਾ " ++"ਸ਼ਾਮਿਲ ਹੈ, ਤੁਹਾਡੇ ਪਰਾਈਵੇਟ ਡਾਟੇ ਸਮੇਤ, ਜੇ ਕੋਈ ਹੈ।" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1419,10 +1616,13 @@ msgstr "ਅਸੁਰੱਖਿਅਤ ਕੁਨੈਕਸ਼ਨ ਵਰਤਣਾ ਹੈ + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Write \"insecure\" to allow insecure connection <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1436,7 +1636,10 @@ msgstr "ਸੰਬੰਧਿਤ ਲਾਈਨਾਂ ~/.xsession-errors ਫਾਇਲ + 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." +@@ -1594,7 +1797,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nਬੋਧੀ ਸਰਵਰ ਤੇ ਅੱਪਡੇਟਾਂ ਲਈ ਖੋਜੋ" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"ਬੋਧੀ ਸਰਵਰ ਤੇ ਅੱਪਡੇਟਾਂ ਲਈ ਖੋਜੋ" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1612,8 +1818,8 @@ msgstr "ਪੈਕੇਜ ਦਾ ਲੋਕਲ ਵਰਜਨ ਉਪਲੱਬਧ ਅ + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "ਕੀ %s ਤੁਸੀਂ ਬੱਗ ਰਿਪੋਰਟਿੰਗ ਜਾਰੀ ਰੱਖਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1621,7 +1827,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" ++"\n" ++"ਵੰਡੇ ਹੋਏ oops ਸੁਨੇਹਿਆਂ ਲਈ ਫਾਈਲ ਦੀ ਘੋਖ ਕਰਦਾ ਹੈ। ਉਹਨਾਂ ਨੂੰ ਛਾਪ ਅਤੇ/ਜਾਂ ਮਿਟਾ " ++"ਸਕਦਾ ਹੈ।" + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1689,18 +1899,24 @@ msgstr "ਵਿਸਥਾਰ ਰਿਪੋਰਟ ਵੇਖਾਓ" + + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +-msgstr "ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਸੱਜਰੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" ++msgstr "" ++"ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਸੱਜਰੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" + + #: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" +-msgstr "ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਪੁਰਾਣੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" ++msgstr "" ++"ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਪੁਰਾਣੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" + + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "ਸ੍ਵੈ-ਚਲਿਤ ਸੂਚਿਤ ਕਰਨ ਵਾਲਾ ਫੀਚਰ ਅਯੋਗ ਕੀਤਾ ਹੈ। ਕਿਰਪਾ ਕਰ ਕੇ ਇਸ ਨੂੰ 'abrt-auto-reporting enabled' ਨੂੰ\nਰੂਟ ਹੱਕ ਵਾਲੇ ਯੂਜਰ ਵਜੋਂ ਜਾਰੀ ਕਰ ਕੇ ਯੋਗ ਕਰਨ ਲਈ ਵਿਚਾਰੋ\n" ++msgstr "" ++"ਸ੍ਵੈ-ਚਲਿਤ ਸੂਚਿਤ ਕਰਨ ਵਾਲਾ ਫੀਚਰ ਅਯੋਗ ਕੀਤਾ ਹੈ। ਕਿਰਪਾ ਕਰ ਕੇ ਇਸ ਨੂੰ 'abrt-auto-" ++"reporting enabled' ਨੂੰ\n" ++"ਰੂਟ ਹੱਕ ਵਾਲੇ ਯੂਜਰ ਵਜੋਂ ਜਾਰੀ ਕਰ ਕੇ ਯੋਗ ਕਰਨ ਲਈ ਵਿਚਾਰੋ\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1730,7 +1946,9 @@ 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/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1783,10 +2001,17 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Uploads coredump to a server, which generates backtrace and returns it. If " ++"user doens't want to upload his coredump to anywhere the event performs " ++"local analysis. Local analysis is run event if remote analysis fails. Pros: " ++"no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Uploads coredump to a server, which generates backtrace and returns it. If user doens't want to upload his coredump to anywhere the event performs local analysis. Local analysis is run event if remote analysis fails. Pros: no need for debuginfo downloads. Retrace server's database of debuginfos is more complete. Retrace server may generate better backtraces. Cons: coredump you upload contains all the data from the crashed program, including your private data, if any." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1801,7 +2026,9 @@ msgstr "ਕਰਨਲ debuginfo ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰੋ, ਕ + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "ਕਰਨਲ debuginfo ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨ ਦੀ ਲੋੜ ਹੈ, ਜਿਸਨੂੰ ਕੁਝ ਸਮਾਂ ਲੱਗ ਸਕਦਾ ਹੈ, ਅਤੇ ਡਿਸਕ ਸਪੇਸ ਵੀ ਲੈ ਸਕਦਾ ਹੈ।" ++msgstr "" ++"ਕਰਨਲ debuginfo ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨ ਦੀ ਲੋੜ ਹੈ, ਜਿਸਨੂੰ ਕੁਝ ਸਮਾਂ ਲੱਗ ਸਕਦਾ ਹੈ, ਅਤੇ " ++"ਡਿਸਕ ਸਪੇਸ ਵੀ ਲੈ ਸਕਦਾ ਹੈ।" + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1815,7 +2042,9 @@ msgstr "ਐਪਲੀਕੇਸ਼ਨ ਦੇ GConf ਡਾਇਰੈਕਟਰੀ ਵਿ + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "gconftool-2 --recursive-list /apps/executable ਨੂੰ ਚਲਾਉਂਦਾ ਹੈ ਅਤੇ ਇਸਨੂੰ 'gconf_subtree' ਐਲੀਮੈਂਟ ਦੇ ਤੌਰ ਤੇ ਸੰਭਾਲਦਾ ਹੈ।" ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable ਨੂੰ ਚਲਾਉਂਦਾ ਹੈ ਅਤੇ ਇਸਨੂੰ " ++"'gconf_subtree' ਐਲੀਮੈਂਟ ਦੇ ਤੌਰ ਤੇ ਸੰਭਾਲਦਾ ਹੈ।" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1829,7 +2058,9 @@ 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 "ਜਾਂਚੋ ਜੇ vimrc ਅਤੇ gvimrc ਫਾਇਲਾਂ /etc ਵਿੱਚ ਹਨ ਅਤੇ ਉਹਨਾਂ ਨੂੰ ਸੰਭਾਲੋ system_vimrc ਅਤੇ system_gvimrc, ਤੌਰ ਤੇ।" ++msgstr "" ++"ਜਾਂਚੋ ਜੇ vimrc ਅਤੇ gvimrc ਫਾਇਲਾਂ /etc ਵਿੱਚ ਹਨ ਅਤੇ ਉਹਨਾਂ ਨੂੰ ਸੰਭਾਲੋ " ++"system_vimrc ਅਤੇ system_gvimrc, ਤੌਰ ਤੇ।" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1841,9 +2072,11 @@ 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 "ਜਾਂਚੋ ਜੇ .vimrc ਅਤੇ .gvimrc ਤੁਹਾਡੀ ਘਰੇਲੂ ਡਾਇਰੈਕਰੀ ਵਿੱਚ ਹਨ ਅਤੇ user_vimrc ਅਤੇ user_gvimrc, ਤੌਰ ਤੇ ਸੰਭਾਲੋ।" ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"ਜਾਂਚੋ ਜੇ .vimrc ਅਤੇ .gvimrc ਤੁਹਾਡੀ ਘਰੇਲੂ ਡਾਇਰੈਕਰੀ ਵਿੱਚ ਹਨ ਅਤੇ user_vimrc ਅਤੇ " ++"user_gvimrc, ਤੌਰ ਤੇ ਸੰਭਾਲੋ।" + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/pl.po b/po/pl.po +index 177cd0f..9dbea92 100644 +--- a/po/pl.po ++++ b/po/pl.po +@@ -7,17 +7,20 @@ + # Piotr Drąg , 2014 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 14:01+0000\n" +-"Last-Translator: Piotr Drąg \n" +-"Language-Team: Polish (http://www.transifex.com/projects/p/fedora-abrt/language/pl/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 09:01-0500\n" ++"Last-Translator: Piotr Drąg \n" ++"Language-Team: Polish (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/pl/)\n" + "Language: pl\n" +-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " ++"|| n%100>=20) ? 1 : 2);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -32,7 +35,9 @@ 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" +-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" ++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?" +@@ -90,10 +95,17 @@ msgstr "Nie można zamknąć powiadomienia: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "Zostaną wyciszone powiadomienia o konkretnym problemie. Nie będą one już wyświetlane, ale program ABRT będzie nadal wykrywał ten problem, i będzie można go zgłosić z interfejsu programu.\n\nKontynuować?" ++msgstr "" ++"Zostaną wyciszone powiadomienia o konkretnym problemie. Nie będą one już " ++"wyświetlane, ale program ABRT będzie nadal wykrywał ten problem, i będzie " ++"można go zgłosić z interfejsu programu.\n" ++"\n" ++"Kontynuować?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -102,11 +114,15 @@ msgstr "Ostrzeżenie" + #: ../src/applet/applet.c:834 + 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" ++msgstr "" ++"Aplet obszaru powiadamiania informujący użytkownika o problemach wykrytych " ++"przez program ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "Piotr Drąg , 2009\nTomasz Chrzczonowicz , 2009" ++msgstr "" ++"Piotr Drąg , 2009\n" ++"Tomasz Chrzczonowicz , 2009" + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -129,6 +145,7 @@ msgid "Ignore forever" + msgstr "Zawsze ignoruj" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Otwórz" +@@ -143,6 +160,7 @@ msgstr "Wystąpił problem" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Zgłoś" +@@ -185,14 +203,20 @@ msgstr "Nie można włączyć trybu nieblokowania dla kanału GIO: %s" + 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" ++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:1635 + 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" ++msgstr "" ++"& [-v] [KATALOG]...\n" ++"\n" ++"Aplet powiadamiający użytkownika o nowych problemach wykrytych przez program " ++"ABRT\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -213,11 +237,15 @@ msgstr "Ciche skrócone zgłaszanie" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "Plik zrzutu core jest niezbędny do utworzenia wyjątku stosu, co jest działaniem czaso- i pracochłonnym. Program ABRT dostarcza usługę, która może tworzyć wyjątki stosu z plików zrzutu core, ale trzeba do tego wysłać zrzut do usługi. Jeśli ta opcja jest wyłączona, to program ABRT będzie wysyłał zrzuty core bez pytania." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"Plik zrzutu core jest niezbędny do utworzenia wyjątku stosu, co jest " ++"działaniem czaso- i pracochłonnym. Program ABRT dostarcza usługę, która może " ++"tworzyć wyjątki stosu z plików zrzutu core, ale trzeba do tego wysłać zrzut " ++"do usługi. Jeśli ta opcja jest wyłączona, to program ABRT będzie wysyłał " ++"zrzuty core bez pytania." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -225,28 +253,44 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "Program ABRT przechowuje dane problemu w katalogach. Kiedy program ABRT potrzebuje zapisywalnego katalogu, to jest on przenoszony z położenia systemowego do katalogu domowego użytkownika. Jeśli ta opcja jest wyłączona, to program ABRT będzie przenosił katalogi problemów bez pytania." ++msgstr "" ++"Program ABRT przechowuje dane problemu w katalogach. Kiedy program ABRT " ++"potrzebuje zapisywalnego katalogu, to jest on przenoszony z położenia " ++"systemowego do katalogu domowego użytkownika. Jeśli ta opcja jest wyłączona, " ++"to program ABRT będzie przenosił katalogi problemów bez pytania." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport jest krótkim i w pełni anonimowym opisem problemu. Program ABRT używa uReportów do szybkiego, globalnego wykrywania duplikatów. W domyślnej konfiguracji uReport jest wysyłany na początku procesu zgłaszania. Jeśli ta opcja jest włączona, to uReporty będą wysyłane automatycznie od razu po wykryciu problemu." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport jest krótkim i w pełni anonimowym opisem problemu. Program ABRT " ++"używa uReportów do szybkiego, globalnego wykrywania duplikatów. W domyślnej " ++"konfiguracji uReport jest wysyłany na początku procesu zgłaszania. Jeśli ta " ++"opcja jest włączona, to uReporty będą wysyłane automatycznie od razu po " ++"wykryciu problemu." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "Jeśli ta opcja jest włączona, to proces zgłaszania rozpoczęty po naciśnięciu przycisku Zgłoś w powiadomieniu o problemie zostanie przerwany po wysłaniu uReportu. Zawsze można użyć domyślnej przeglądarki problemów, aby utworzyć pełne zgłoszenie." ++msgstr "" ++"Jeśli ta opcja jest włączona, to proces zgłaszania rozpoczęty po naciśnięciu " ++"przycisku Zgłoś w powiadomieniu o problemie zostanie przerwany po wysłaniu " ++"uReportu. Zawsze można użyć domyślnej przeglądarki problemów, aby utworzyć " ++"pełne zgłoszenie." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "Jeśli ta opcja jest włączona, to program ABRT nigdy nie będzie wyświetlał powiadomień o zgłoszonych problemach. Jest brane pod uwagę tylko, jeśli włączone jest Skrócone zgłaszanie." ++msgstr "" ++"Jeśli ta opcja jest włączona, to program ABRT nigdy nie będzie wyświetlał " ++"powiadomień o zgłoszonych problemach. Jest brane pod uwagę tylko, jeśli " ++"włączone jest Skrócone zgłaszanie." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -256,7 +300,9 @@ msgstr "Pytanie przed wysłaniem zrzutu core" + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "Jeśli ta opcja jest włączona, to program ABRT będzie tworzył zgłoszenie błędu z ograniczonym dostępem zawsze, kiedy wykryte zostaną prywatne dane." ++msgstr "" ++"Jeśli ta opcja jest włączona, to program ABRT będzie tworzył zgłoszenie " ++"błędu z ograniczonym dostępem zawsze, kiedy wykryte zostaną prywatne dane." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -271,7 +317,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "Niepełne problemy są wykrywane, kiedy komputer jest wyłączany lub użytkownik jest wylogowywany. Aby dostarczać wartościowe zgłoszenia błędów, program ABRT nie będzie umożliwiał wysłania takich problemów." ++msgstr "" ++"Niepełne problemy są wykrywane, kiedy komputer jest wyłączany lub użytkownik " ++"jest wylogowywany. Aby dostarczać wartościowe zgłoszenia błędów, program " ++"ABRT nie będzie umożliwiał wysłania takich problemów." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -303,7 +352,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c PLIK_KONFIGURACJI] -d KATALOG\n\nOdpytuje bazę danych pakietów i zapisuje nazwę pakietu i składnika" ++msgstr "" ++"& [-v] [-c PLIK_KONFIGURACJI] -d KATALOG\n" ++"\n" ++"Odpytuje bazę danych pakietów i zapisuje nazwę pakietu i składnika" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -366,7 +418,9 @@ msgstr "Nie można uzyskać dostępu do problemu, aby go zmodyfikować" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Zmiana właściciela katalogu się nie powiodła. W dziennikach systemu można znaleźć więcej informacji." ++msgstr "" ++"Zmiana właściciela katalogu się nie powiodła. W dziennikach systemu można " ++"znaleźć więcej informacji." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -392,7 +446,9 @@ msgstr "Nie można usunąć elementu \"%s\" z katalogu problemów \"%s\"" + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "Nazwa \"%s\" została utracona. Proszę sprawdzić, czy inna usługa będąca właścicielem nazwy jest uruchomiona.\n" ++msgstr "" ++"Nazwa \"%s\" została utracona. Proszę sprawdzić, czy inna usługa będąca " ++"właścicielem nazwy jest uruchomiona.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -406,11 +462,16 @@ msgstr "Ten program musi być uruchamiany jako root." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "Dane problemu są niepełne. Zwykle zdarza się to, kiedy wykryty został problem podczas wyłączania komputera lub wylogowywania użytkownika. Aby dostarczać wartościowe zgłoszenia problemów, program ABRT uniemożliwi wysłanie tego problemu. Aby pomóc programistom w rozwiązaniu tego problemu, proszę skontaktować się z nimi bezpośrednio." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"Dane problemu są niepełne. Zwykle zdarza się to, kiedy wykryty został " ++"problem podczas wyłączania komputera lub wylogowywania użytkownika. Aby " ++"dostarczać wartościowe zgłoszenia problemów, program ABRT uniemożliwi " ++"wysłanie tego problemu. Aby pomóc programistom w rozwiązaniu tego problemu, " ++"proszę skontaktować się z nimi bezpośrednio." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -418,7 +479,8 @@ msgstr "Bez tworzenia demona" + + #: ../src/daemon/abrtd.c:498 + msgid "Log to syslog even with -d" +-msgstr "Przekazuje komunikaty do dziennika systemowego, nawet jeśli podano opcję -d" ++msgstr "" ++"Przekazuje komunikaty do dziennika systemowego, nawet jeśli podano opcję -d" + + #: ../src/daemon/abrt-handle-event.c:388 + msgid "& [-v -i] -e|--event EVENT DIR..." +@@ -447,7 +509,16 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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" ++msgstr "" ++"& [-vs] [-w LICZBA] [-c MiB] [KATALOG_WYSYŁANIA]\n" ++"\n" ++"\n" ++"Obserwuje KATALOG_WYSYŁANIA i rozpakowuje przychodzące archiwa do " ++"DumpLocation\n" ++"określonego w pliku abrt.conf\n" ++"\n" ++"Jeśli nie podano KATALOGU_WYSYŁANIA, to używa wartości opcji\n" ++"WatchCrashdumpArchiveDir z pliku abrt.conf" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -461,19 +532,73 @@ msgstr "Liczba jednocześnie działających wątków. Domyślnie wynosi" + 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 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "Nieprawidłowa liczba parametrów" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Nieznana wartość opcji: \"%s\"\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++#, fuzzy ++msgid "SSL Client Authenticated auto reporting" ++msgstr "Ciche skrócone zgłaszanie" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -484,7 +609,16 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "Użycie: %s [-vd] KATALOG_SZPULI_ABRT KATALOG_WYSYŁANIA NAZWA_PLIKU\n\n -v - Więcej informacji\n -d - Usuwa wysłane archiwum\n KATALOG_SZPULI_ABRT - Katalog, do którego rozpakowywane są prawidłowo wysłane archiwa\n KATALOG_WYSYŁANIA - Katalog, w którym przechowywane są wysłane archiwa\n NAZWA_PLIKU - Nazwa pliku wysłanego archiwum\n" ++msgstr "" ++"Użycie: %s [-vd] KATALOG_SZPULI_ABRT KATALOG_WYSYŁANIA NAZWA_PLIKU\n" ++"\n" ++" -v - Więcej informacji\n" ++" -d - Usuwa wysłane archiwum\n" ++" KATALOG_SZPULI_ABRT - Katalog, do którego rozpakowywane są prawidłowo " ++"wysłane archiwa\n" ++" KATALOG_WYSYŁANIA - Katalog, w którym przechowywane są wysłane " ++"archiwa\n" ++" NAZWA_PLIKU - Nazwa pliku wysłanego archiwum\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -591,13 +725,17 @@ msgstr "Nie można utworzyć pliku tymczasowego \"%s\"" + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-msgstr "Nie można zapisać do \"%s\". Problem \"%s\" nie zostanie usunięty z zignorowanych problemów \"%s\"" ++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:264 + #, 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" ++msgstr "" ++"Nie można zmienić nazwy \"%s\" na \"%s\". Usunięcie problemu \"%s\" się nie " ++"powiodło" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" +@@ -605,11 +743,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [opcje] -d KATALOG\n\nAnalizuje wyjątek w języku C/C++, tworzy sumę duplikatu, ocenę wyjątku i\nidentyfikuje funkcję awarii w KATALOGU problemu" ++msgstr "" ++"& [opcje] -d KATALOG\n" ++"\n" ++"Analizuje wyjątek w języku C/C++, tworzy sumę duplikatu, ocenę wyjątku i\n" ++"identyfikuje funkcję awarii w KATALOGU problemu" + ++#. + #. * 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" +@@ -624,7 +768,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d KATALOG\n\nOblicza i zapisuje UUID zrzutu core w KATALOGU problemu" ++msgstr "" ++"& [-v] -d KATALOG\n" ++"\n" ++"Oblicza i zapisuje UUID zrzutu core w KATALOGU problemu" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -650,14 +797,20 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d KATALOG\n\nOblicza i zapisuje UUID i SUMĘ_DUPLIKATU dla KATALOGU problemu oops" ++msgstr "" ++"& [-v] -d KATALOG\n" ++"\n" ++"Oblicza i zapisuje UUID i SUMĘ_DUPLIKATU dla KATALOGU problemu oops" + + #: ../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 KATALOG\n\nOblicza i zapisuje UUID i SUMĘ_DUPLIKATU dla KATALOGU problemu X.org" ++msgstr "" ++"& [-v] -d KATALOG\n" ++"\n" ++"Oblicza i zapisuje UUID i SUMĘ_DUPLIKATU dla KATALOGU problemu X.org" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -669,7 +822,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d KATALOG\n\nOblicza i zapisuje UUID i SUMĘ_DUPLIKATU dla zrzutów awarii języka Python" ++msgstr "" ++"& [-v] -d KATALOG\n" ++"\n" ++"Oblicza i zapisuje UUID i SUMĘ_DUPLIKATU dla zrzutów awarii języka Python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -684,10 +840,10 @@ msgid "Extracting the oops text from core" + msgstr "Wypakowywanie tekstu awarii oops z pliku core" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "Nie można przetworzyć {0}:\n" + "{1}" +-msgstr "Nie można przetworzyć {0}:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -701,14 +857,19 @@ msgstr "Pomyślnie wypakowano tekst awarii oops" + 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" ++msgstr "" ++"Dziennik jądra wskazuje na wykrycie błędów sprzętowych.\n" ++"Prawdopodobnie nie jest to problem oprogramowania.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [opcje] -d KATALOG\n\nAnalizuje zrzut core w KATALOGU problemu, tworzy i zapisuje wyjątek" ++msgstr "" ++"& [opcje] -d KATALOG\n" ++"\n" ++"Analizuje zrzut core w KATALOGU problemu, tworzy i zapisuje wyjątek" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -720,6 +881,7 @@ 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" +@@ -730,7 +892,11 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d KATALOG\n\nTworzy wyjątek na poziomie zrzutu core ze zrzutu core i odpowiedniego pliku binarnego" ++msgstr "" ++"& [-v] [-r] -d KATALOG\n" ++"\n" ++"Tworzy wyjątek na poziomie zrzutu core ze zrzutu core i odpowiedniego pliku " ++"binarnego" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -758,7 +924,8 @@ msgstr "Wyłączanie na polecenie użytkownika" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -768,13 +935,36 @@ msgid "" + " -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" ++" --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" +-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" ++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" ++"\n" ++"Instaluje pakiety debuginfo dla wszystkich identyfikatorów budowania\n" ++"wymienionych w PLIKU_IDENTYFIKATORÓW_BUDOWANIA w " ++"KATALOGU_PAMIĘCI_PODRĘCZNEJ,\n" ++"używając KATALOGU_TYMCZASOWEGO jako obszaru tymczasowej przechowalni.\n" ++"Poprzednie pliki w KATALOGU_PAMIĘCI_PODRĘCZNEJ zostaną usunięte, aby jego\n" ++"rozmiar 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}" +@@ -782,7 +972,9 @@ msgstr "Nie można otworzyć {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Zrzut core odnosi się do plików debuginfo {0}, {1} z nich nie jest zainstalowanych" ++msgstr "" ++"Zrzut core odnosi się do plików debuginfo {0}, {1} z nich nie jest " ++"zainstalowanych" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -805,21 +997,33 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Wysłać zrzut core (może on zawierać prywatne dane)? Jeśli wybrana zostanie odpowiedź \"nie\", to wyjątek stosu zostanie utworzony lokalnie (może to spowodować pobranie dużej ilości danych)." ++msgstr "" ++"Wysłać zrzut core (może on zawierać prywatne dane)? Jeśli wybrana zostanie " ++"odpowiedź \"nie\", to wyjątek stosu zostanie utworzony lokalnie (może to " ++"spowodować pobranie dużej ilości danych)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "Utworzyć wyjątek stosu lokalnie (może to spowodować pobranie dużej ilości danych, ale zgłaszanie nie może być kontynuowane bez wyjątku)?" ++msgstr "" ++"Utworzyć wyjątek stosu lokalnie (może to spowodować pobranie dużej ilości " ++"danych, ale zgłaszanie nie może być kontynuowane bez wyjątku)?" + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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 ROZMIAR:KATALOG]... [-f ROZMIAR:KATALOG]... [-p KATALOG] [PLIK]...\n\nUsuwa katalogi (-d) lub pliki (-f) problemów w KATALOGACH, dopóki nie są mniejsze niż ROZMIAR.\nPLIKI są zachowywane (nigdy nie są usuwane)." ++msgstr "" ++"& [-v] [-d ROZMIAR:KATALOG]... [-f ROZMIAR:KATALOG]... [-p KATALOG] [PLIK]..." ++"\n" ++"\n" ++"Usuwa katalogi (-d) lub pliki (-f) problemów w KATALOGACH, dopóki nie są " ++"mniejsze niż ROZMIAR.\n" ++"PLIKI są zachowywane (nigdy nie są usuwane)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -850,7 +1054,9 @@ msgstr "Użycie: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "Nie można uzyskać bieżącego katalogu roboczego, ponieważ został prawdopodobnie usunięty" ++msgstr "" ++"Nie można uzyskać bieżącego katalogu roboczego, ponieważ został " ++"prawdopodobnie usunięty" + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +@@ -961,7 +1167,9 @@ msgstr "Przejście do nieprawidłowego adresu" + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" +-msgstr "Dostęp poza końcem mapowanego pliku, nieprawidłowy adres, niewyrównany dostęp itp." ++msgstr "" ++"Dostęp poza końcem mapowanego pliku, nieprawidłowy adres, niewyrównany " ++"dostęp itp." + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +@@ -988,7 +1196,11 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F POTOK]... PLIKI PROGRAM [PARAMETRY]\n\nObserwuje PLIK dziennika, wykonuje PROGRAM, kiedy plik się powiększy lub zostanie zastąpiony" ++msgstr "" ++"& [-vs] [-F POTOK]... PLIKI PROGRAM [PARAMETRY]\n" ++"\n" ++"Obserwuje PLIK dziennika, wykonuje PROGRAM, kiedy plik się powiększy lub " ++"zostanie zastąpiony" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -998,20 +1210,26 @@ msgstr "Bez wykonywania PROGRAMU, jeśli nie odnaleziono POTOKU" + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "Wystąpił problem jądra z powodu uszkodzonego BIOS-u. Tego rodzaju problemy nie mogą zostać naprawione przez opiekunów jądra." ++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:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "Wystąpił problem jądra, ale sprzęt jest nieobsługiwany, więc opiekunowie jądra nie mogą go naprawić." ++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: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." ++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:153 + #, c-format +@@ -1023,7 +1241,10 @@ 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)" ++msgstr "" ++"& [-vusoxm] [-d KATALOG]/[-D] [PLIK]\n" ++"\n" ++"Wydobywa awarię z PLIKU (lub standardowego wejścia)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1031,13 +1252,16 @@ 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: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" ++msgstr "" ++"Tworzy nowy katalog problemu w KATALOGU dla każdej odnalezionej awarii oops" + + #: ../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" ++msgstr "" ++"To samo, co -d DumpLocation, DumpLocation jest określone w pliku abrt.conf" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1061,7 +1285,8 @@ msgstr "Skompilowanie wyrażenia regularnego się nie powiodło" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +-msgstr "Nie można zaktualizować problemu: znaleziono więcej niż jedną awarię oops" ++msgstr "" ++"Nie można zaktualizować problemu: znaleziono więcej niż jedną awarię oops" + + #: ../src/plugins/abrt-dump-oops.c:421 + #, c-format +@@ -1073,7 +1298,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d KATALOG]/[-D] [PLIK]\n\nWydobywa awarię Xorg z PLIKU (lub standardowego wejścia)" ++msgstr "" ++"& [-vsoxm] [-d KATALOG]/[-D] [PLIK]\n" ++"\n" ++"Wydobywa awarię Xorg z PLIKU (lub standardowego wejścia)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1081,16 +1309,20 @@ msgstr "Wyświetla odnalezione dane awarii w standardowym wyjściu" + + #: ../src/plugins/abrt-dump-xorg.c:246 + msgid "Create problem directory in DIR for every crash found" +-msgstr "Tworzy nowy katalog problemu w KATALOGU dla każdej odnalezionej awarii" ++msgstr "" ++"Tworzy nowy katalog problemu w KATALOGU dla każdej odnalezionej awarii" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Nie można użyć serwera ponownego śledzenia, ponieważ awaria jest za duża. Proszę spróbować lokalnego ponownego śledzenia." ++msgstr "" ++"Nie można użyć serwera ponownego śledzenia, ponieważ awaria jest za duża. " ++"Proszę spróbować lokalnego ponownego śledzenia." + + #. 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 +@@ -1113,10 +1345,10 @@ msgstr "Wysłanie nagłówka HTTP o długości %d nie powiodło się: błąd NSS + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Nieoczekiwana odpowiedź HTTP od serwera: %d\n" + "%s" +-msgstr "Nieoczekiwana odpowiedź HTTP od serwera: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1132,7 +1364,9 @@ msgstr "Nieprawidłowa odpowiedź od serwera: brak treści komunikatu HTTP." + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "Serwer ponownego śledzenia nie może przetworzyć pakietu \"%s.%s\".\nCzy jest on częścią oficjalnych repozytoriów \"%s\"?" ++msgstr "" ++"Serwer ponownego śledzenia nie może przetworzyć pakietu \"%s.%s\".\n" ++"Czy jest on częścią oficjalnych repozytoriów \"%s\"?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1157,7 +1391,9 @@ msgstr "\"%s\" musi być zwykłym plikiem, aby użyć serwera ponownego śledzen + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Rozmiar awarii wynosi %lld bajtów, a serwer ponownego śledzenia przyjmuje tylko awarie mniejsze niż lub równe %lld bajtom." ++msgstr "" ++"Rozmiar awarii wynosi %lld bajtów, a serwer ponownego śledzenia przyjmuje " ++"tylko awarie mniejsze niż lub równe %lld bajtom." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1185,7 +1421,9 @@ msgstr "Przygotowywanie do wysłania archiwum" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Rozmiar archiwum wynosi %lld bajtów, a serwer ponownego śledzenia przyjmuje tylko archiwa mniejsze niż lub równe %lld bajtom." ++msgstr "" ++"Rozmiar archiwum wynosi %lld bajtów, a serwer ponownego śledzenia przyjmuje " ++"tylko archiwa mniejsze niż lub równe %lld bajtom." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1228,13 +1466,17 @@ msgstr "Wysłano pomyślnie" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Katalog problemów jest uszkodzony i nie może zostać przetworzony przez serwer ponownego śledzenia." ++msgstr "" ++"Katalog problemów jest uszkodzony i nie może zostać przetworzony przez " ++"serwer ponownego śledzenia." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Archiwum zawiera złośliwe pliki (takie jak dowiązania symboliczne), więc nie może zostać przetworzone." ++msgstr "" ++"Archiwum zawiera złośliwe pliki (takie jak dowiązania symboliczne), więc nie " ++"może zostać przetworzone." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1250,10 +1492,10 @@ msgstr "Uruchomiono zadanie ponownego śledzenia" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Identyfikator zadania: %s\nHasło zadania: %s\n" ++msgstr "Identyfikator zadania: %s\n" ++"Hasło zadania: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1261,10 +1503,10 @@ msgstr "Nieprawidłowa odpowiedź od serwera: brak X-Task-Status." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Stan zadania: %s\n" + "%s\n" +-msgstr "Stan zadania: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1277,7 +1519,9 @@ msgstr "Wysłanie nagłówka HTTP o długości %d nie powiodło się: błąd NSS + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Ponowne śledzenie nie powiodło się. Proszę spróbować ponownie później, a jeśli problem się utrzymuje, to proszę go zgłosić." ++msgstr "" ++"Ponowne śledzenie nie powiodło się. Proszę spróbować ponownie później, a " ++"jeśli problem się utrzymuje, to proszę go zgłosić." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1285,13 +1529,16 @@ msgstr "zapisuje w dzienniku systemowym" + + #: ../src/plugins/abrt-retrace-client.c:1209 + msgid "allow insecure connection to retrace server" +-msgstr "zezwolenie na niezabezpieczone połączenie do serwera ponownego śledzenia" ++msgstr "" ++"zezwolenie na niezabezpieczone połączenie do serwera ponownego śledzenia" + + #: ../src/plugins/abrt-retrace-client.c:1211 + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "bez sprawdzania, czy serwer ponownego śledzenia może przetworzyć podany pakiet przed wysłaniem archiwum" ++msgstr "" ++"bez sprawdzania, czy serwer ponownego śledzenia może przetworzyć podany " ++"pakiet przed wysłaniem archiwum" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1323,7 +1570,9 @@ msgstr "Opóźnienie do działań odpytywania" + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "(debugowanie) nie usuwa tymczasowych archiwów utworzonych z katalogu zrzutów w" ++msgstr "" ++"(debugowanie) nie usuwa tymczasowych archiwów utworzonych z katalogu zrzutów " ++"w" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1341,7 +1590,9 @@ msgstr "hasło zadania na serwerze" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [opcje]\nDziałania: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client [opcje]\n" ++"Działania: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1378,9 +1629,12 @@ msgstr "Pobiera pakiety debuginfo i tworzy wyjątek lokalnie używając GDB" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Należy pobrać pakiety debuginfo, co może zająć dużo czasu i miejsca na dysku. Jednakże, w przeciwieństwie do RetraceServer, nie wysyła zrzutów core do zdalnych komputerów." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Należy pobrać pakiety debuginfo, co może zająć dużo czasu i miejsca na dysku." ++" Jednakże, w przeciwieństwie do RetraceServer, nie wysyła zrzutów core do " ++"zdalnych komputerów." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1388,12 +1642,17 @@ msgstr "Wysyła zrzut core do zdalnego serwera ponownego śledzenia do analizy" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Wysyła zrzuty core do serwera, którzy tworzy wyjątek i go zwraca. Zalety: nie trzeba pobierać pakietów debuginfo. Baza danych pakietów debuginfo serwera ponownego śledzenia jest bardziej kompletna. Może on tworzyć lepsze wyjątki. Wady: wysyłane zrzuty core zawierają wszystkie dane programu, który uległ awarii, w tym potencjalnie prywatne dane." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Wysyła zrzuty core do serwera, którzy tworzy wyjątek i go zwraca. Zalety: " ++"nie trzeba pobierać pakietów debuginfo. Baza danych pakietów debuginfo " ++"serwera ponownego śledzenia jest bardziej kompletna. Może on tworzyć lepsze " ++"wyjątki. Wady: wysyłane zrzuty core zawierają wszystkie dane programu, który " ++"uległ awarii, w tym potencjalnie prywatne dane." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1418,10 +1677,13 @@ msgstr "Określa, czy używać niezabezpieczonego połączenia" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Wpisanie \"insecure\" umożliwia użycie połączenia niezabezpieczonego <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(ostrzeżenie)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Wpisanie \"insecure\" umożliwia użycie połączenia niezabezpieczonego <a " ++"href=\"https://fedorahosted.org/abrt/wiki/" ++"AbrtRetraceServerInsecureConnection\" >(ostrzeżenie)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1435,7 +1697,9 @@ msgstr "Zapisuje ważne wiersze z pliku ~/.xsession-errors" + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Skanuje plik ~/.xsession-errors i zapisuje te wiersze, które zawierają nazwę pliku wykonywalnego. Wynik jest zapisywany jako element \"xsession_errors\"." ++msgstr "" ++"Skanuje plik ~/.xsession-errors i zapisuje te wiersze, które zawierają nazwę " ++"pliku wykonywalnego. Wynik jest zapisywany jako element \"xsession_errors\"." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1468,7 +1732,9 @@ msgstr "Certyfikat jest podpisany przez niezaufanego wystawcę: \"%s\"." + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "Nazwa tematu certyfikatu \"%s\" nie pasuje do docelowej nazwy komputera \"%s\"." ++msgstr "" ++"Nazwa tematu certyfikatu \"%s\" nie pasuje do docelowej nazwy komputera " ++"\"%s\"." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1593,7 +1859,11 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[WYDANIE]] (-b IDENTYFIKATOR1[,IDENTYFIKATOR2,...] | NAZWA-PAKIETU) [NAZWA-PAKIETU]... \n\nWyszukuje aktualizacje na serwerze Bodhi" ++msgstr "" ++"& [-v] [-r[WYDANIE]] (-b IDENTYFIKATOR1[,IDENTYFIKATOR2,...] | NAZWA-" ++"PAKIETU) [NAZWA-PAKIETU]... \n" ++"\n" ++"Wyszukuje aktualizacje na serwerze Bodhi" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1611,16 +1881,22 @@ msgstr "Lokalna wersja pakietu jest nowsza niż dostępne aktualizacje" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Jedna z aktualizacji może naprawić ten problem. Można ją zainstalować wykonując: %s. Kontynuować zgłaszanie błędu?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Jedna z aktualizacji może naprawić ten problem. Można ją zainstalować " ++"wykonując: %s. Kontynuować zgłaszanie błędu?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] PLIK...\n\nSkanuje pliki w poszukiwaniu rozdzielonych komunikatów awarii. Może je wyświetlić i/lub usunąć." ++msgstr "" ++"& [-v] [-od] PLIK...\n" ++"\n" ++"Skanuje pliki w poszukiwaniu rozdzielonych komunikatów awarii. Może je " ++"wyświetlić i/lub usunąć." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1665,13 +1941,16 @@ msgstr "Przetwarza wiele problemów" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "Wydanie polecenia \"abrt-cli POLECENIE --help\" wyświetli więcej informacji" ++msgstr "" ++"Wydanie polecenia \"abrt-cli POLECENIE --help\" wyświetli więcej informacji" + + #: ../src/cli/list.c:127 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +-msgstr "%sWykonanie polecenia \"abrt-cli report %s\" utworzy zgłoszenie w Red Hat Customer Portal\n" ++msgstr "" ++"%sWykonanie polecenia \"abrt-cli report %s\" utworzy zgłoszenie w Red Hat " ++"Customer Portal\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1697,9 +1976,13 @@ msgstr "Wyświetla tylko problemy starsze niż podany czas" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-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" ++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:235 + msgid "& info [options] DIR..." +@@ -1729,7 +2012,9 @@ msgstr "Wyświetla tylko problemy nowsze niż podany czas" + #: ../src/cli/status.c:104 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" +-msgstr "Program ABRT wykrył %u problemy. Więcej informacji po wykonaniu polecenia: abrt-cli list%s\n" ++msgstr "" ++"Program ABRT wykrył %u problemy. Więcej informacji po wykonaniu polecenia: " ++"abrt-cli list%s\n" + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1774,7 +2059,9 @@ msgstr "Wybiera tylko problemy wykryte po podanym czasie" + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Wysyła zrzut core do serwera ponownego śledzenia w celu wykonania analizy lub wykonuje analizę lokalnie, jeśli zdalna analiza się nie powiedzie" ++msgstr "" ++"Wysyła zrzut core do serwera ponownego śledzenia w celu wykonania analizy " ++"lub wykonuje analizę lokalnie, jeśli zdalna analiza się nie powiedzie" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1782,10 +2069,17 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Wysyła zrzut core do serwera, którzy tworzy wyjątek i go zwraca. Jeśli użytkownik nie chce wysyłać swojego zrzutu, to zdarzenie wykonuje analizę lokalną. Lokalna analiza jest wykonywana także wtedy, gdy zdalna analiza się nie powiedzie. Zalety: nie trzeba pobierać pakietów debuginfo. Baza danych pakietów debuginfo serwera ponownego śledzenia jest bardziej kompletna. Może on tworzyć lepsze wyjątki. Wady: wysyłane zrzuty core zawierają wszystkie dane programu, który uległ awarii, w tym potencjalnie prywatne dane." ++msgstr "" ++"Wysyła zrzut core do serwera, którzy tworzy wyjątek i go zwraca. Jeśli " ++"użytkownik nie chce wysyłać swojego zrzutu, to zdarzenie wykonuje analizę " ++"lokalną. Lokalna analiza jest wykonywana także wtedy, gdy zdalna analiza się " ++"nie powiedzie. Zalety: nie trzeba pobierać pakietów debuginfo. Baza danych " ++"pakietów debuginfo serwera ponownego śledzenia jest bardziej kompletna. Może " ++"on tworzyć lepsze wyjątki. Wady: wysyłane zrzuty core zawierają wszystkie " ++"dane programu, który uległ awarii, w tym potencjalnie prywatne dane." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1794,13 +2088,16 @@ msgstr "Analizuje plik vmcore" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Instaluje pakiety debuginfo jądra, tworzy dziennik jądra i komunikat oops" ++msgstr "" ++"Instaluje pakiety debuginfo jądra, tworzy dziennik jądra i komunikat oops" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Należy zainstalować pakiety debuginfo jądra, co może zająć dużo czasu i miejsca na dysku." ++msgstr "" ++"Należy zainstalować pakiety debuginfo jądra, co może zająć dużo czasu i " ++"miejsca na dysku." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1814,7 +2111,9 @@ msgstr "Zapisuje konfigurację z katalogu GConf aplikacji" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Wykonuje polecenie gconftool-2 --recursive-list /apps/plik-wykonywalny i zapisuje wynik jako element \"gconf_subtree\"." ++msgstr "" ++"Wykonuje polecenie gconftool-2 --recursive-list /apps/plik-wykonywalny i " ++"zapisuje wynik jako element \"gconf_subtree\"." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1828,7 +2127,9 @@ msgstr "Zapisuje pliki /etc/vimrc i /etc/gvimrc" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Sprawdza, czy istnieją pliki vimrc i gvimrc w katalogu /etc i zapisuje je jako system_vimrc i system_gvimrc." ++msgstr "" ++"Sprawdza, czy istnieją pliki vimrc i gvimrc w katalogu /etc i zapisuje je " ++"jako system_vimrc i system_gvimrc." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1840,9 +2141,11 @@ msgstr "Zapisuje pliki .vimrc i .gvimrc z katalogu domowego użytkownika" + + #: ../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 "Sprawdza, czy istnieją pliki .vimrc i .gvimrc w katalogu domowym i zapisuje je jako user_vimrc i user_gvimrc." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Sprawdza, czy istnieją pliki .vimrc i .gvimrc w katalogu domowym i zapisuje " ++"je jako user_vimrc i user_gvimrc." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/pt.po b/po/pt.po +index 245b7c6..81ea0da 100644 +--- a/po/pt.po ++++ b/po/pt.po +@@ -14,17 +14,19 @@ + # Rui Gouveia , 2011-2012 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora-abrt/language/pt/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/pt/)\n" + "Language: pt\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -39,7 +41,10 @@ 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" +-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" ++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?" +@@ -58,7 +63,8 @@ msgstr "Não é possível conetar ao Gestor de Rede sob 'DBus': %s" + #: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" +-msgstr "Não é possível determinar o estado da rede através do Gestor de Rede: %s" ++msgstr "" ++"Não é possível determinar o estado da rede através do Gestor de Rede: %s" + + #: ../src/applet/applet.c:342 + #, c-format +@@ -97,7 +103,9 @@ msgstr "Não é possível fechar a notificação: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -109,11 +117,14 @@ msgstr "Aviso" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "A míni aplicação da área de notificação que notifica os utilizadores sobre os problemas detetados 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:850 + msgid "translator-credits" +-msgstr "Rui Gouveia / Manuela Silva " ++msgstr "" ++"Rui Gouveia / Manuela Silva " + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -136,6 +147,7 @@ msgid "Ignore forever" + msgstr "Ignorar para sempre" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Abrir" +@@ -150,6 +162,7 @@ msgstr "Ocorreu um Problema Conhecido" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Comunicar" +@@ -192,14 +205,20 @@ msgstr "Não é possível ligar o modo 'não bloquear' para o canal 'gio': %s" + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-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" ++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:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nMíni aplicação que notifica o utilizador quando são detectados novos problemas pelo ABRT\n" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Míni aplicação que notifica o utilizador quando são detectados novos " ++"problemas pelo ABRT\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -220,10 +239,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -237,15 +255,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -310,7 +328,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nConsultar a base de dados do pacote e gravar o pacote e o nome do componente" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Consultar 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 +@@ -399,7 +420,9 @@ msgstr "Não é possível apagar o elemento '%s' da diretoria de problemas '%s'" + 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 ser executado.\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:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -413,11 +436,17 @@ msgstr "Este programa tem que ser executado como 'root'." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"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" +@@ -468,19 +497,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -612,11 +694,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [opções] -d DIR\n\nAnalisa traçagem C/C++, gera hash de duplicação, classificação de traçagem,\ne identifica função de falha no directório com problema DIR" ++msgstr "" ++"& [opções] -d DIR\n" ++"\n" ++"Analisa traçagem C/C++, gera hash de duplicação, classificação de traçagem,\n" ++"e identifica função de falha no directório com problema DIR" + ++#. + #. * 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" +@@ -631,7 +719,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nCalcula e grava o UUID de coredump no directório de problemas DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcula e grava o UUID de coredump no directório de problemas DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -676,7 +767,9 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nCalcula e grava o UUID e DUPHASH de dumps do python" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"Calcula e grava o UUID e DUPHASH de dumps do python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -691,8 +784,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -715,7 +807,10 @@ msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [opções] -d DIR\n\nAnalisa coredump no directório DIR com problema, gera e grava traçagem." ++msgstr "" ++"& [opções] -d DIR\n" ++"\n" ++"Analisa coredump no directório DIR com problema, gera e grava traçagem." + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -727,6 +822,7 @@ 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" +@@ -765,7 +861,8 @@ msgstr "A sair por comando do utilizador" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -775,7 +872,8 @@ msgid "" + " -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" ++" --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" +@@ -789,7 +887,9 @@ msgstr "Incapaz de abrir {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "O coredump referencia {0} ficheiros debuginfo, {1} deles não estão instalados" ++msgstr "" ++"O coredump referencia {0} ficheiros debuginfo, {1} deles não estão " ++"instalados" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -824,9 +924,15 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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 TAMANHO:DIR]... [-f TAMANHO:DIR]... [-p DIR] [FICHEIRO]...\n\nRemove directórios com problemas (-d) ou ficheiros (-f) em DIRs até que estes sejam menores que TAMANHO.\nFICHEIROs são preservados (nunca apagados)." ++msgstr "" ++"& [-v] [-d TAMANHO:DIR]... [-f TAMANHO:DIR]... [-p DIR] [FICHEIRO]...\n" ++"\n" ++"Remove directórios com problemas (-d) ou ficheiros (-f) em DIRs até que " ++"estes sejam menores que TAMANHO.\n" ++"FICHEIROs são preservados (nunca apagados)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -995,7 +1101,11 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nVerifique o ficheiro de log FILE, corra PROG quando este aumentar ou for subtituido" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Verifique o ficheiro de log FILE, corra PROG quando este aumentar ou for " ++"subtituido" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1018,7 +1128,10 @@ msgstr "" + 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." ++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:153 + #, c-format +@@ -1038,6 +1151,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1080,7 +1194,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nExtrair o Xorg crash do ficheiro FILE (ou entrada padrão)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extrair o Xorg crash do ficheiro FILE (ou entrada padrão)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1094,10 +1211,13 @@ msgstr "" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "O servidor de traçagem não pode ser utilizado porque o ficheiro de erro é muito grande. Tente a traçagem local." ++msgstr "" ++"O servidor de traçagem não pode ser utilizado porque o ficheiro de erro é " ++"muito grande. Tente a traçagem local." + + #. 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,10 +1240,10 @@ msgstr "Falha ao enviar cabeçalho HTTP de tamanho %d: erro NSS %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Resposta HTTP inesperada do servidor: %d\n" + "%s" +-msgstr "Resposta HTTP inesperada do servidor: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1164,7 +1284,9 @@ msgstr "" + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "O tamanho do crash é %lld bytes, mas o servidor retrace apenas aceita crashes menores ou iguais a %lld bytes." ++msgstr "" ++"O tamanho do crash é %lld bytes, mas o servidor retrace apenas aceita " ++"crashes menores ou iguais a %lld bytes." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1192,7 +1314,9 @@ msgstr "A preparar um arquivo para enviar" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "O tamanho do arquivo é %lld bytes, mas o servidor retrace apenas aceita arquivos menores ou iguais a %lld bytes." ++msgstr "" ++"O tamanho do arquivo é %lld bytes, mas o servidor retrace apenas aceita " ++"arquivos menores ou iguais a %lld bytes." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1235,13 +1359,17 @@ msgstr "Envio bem sucedido" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "O directório está corrompido e não pode ser processado pelo servidor de traçagem." ++msgstr "" ++"O directório está corrompido e não pode ser processado pelo servidor de " ++"traçagem." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "O arquivo contém ficheiros nefastos (tais como apontadores simbólicos) e portanto não pode ser processado." ++msgstr "" ++"O arquivo contém ficheiros nefastos (tais como apontadores simbólicos) e " ++"portanto não pode ser processado." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1257,10 +1385,10 @@ msgstr "Iniciado o retrace" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Id da tarefa Id: %s\nSenha da tarefa: %s\n" ++msgstr "Id da tarefa Id: %s\n" ++"Senha da tarefa: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1268,10 +1396,10 @@ msgstr "Resposta inválida do servidor: falta X-Task-Status." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Estado da tarefa: %s\n" + "%s\n" +-msgstr "Estado da tarefa: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1284,7 +1412,9 @@ msgstr "Falha ao enviar cabeçalho HTTP de tamanho %d: erro NSS %d." + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "A traçagem falhou. Tente novamente mais tarde e se o problema persistir reporte este problema." ++msgstr "" ++"A traçagem falhou. Tente novamente mais tarde e se o problema persistir " ++"reporte este problema." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1298,7 +1428,9 @@ msgstr "permitir ligação insegura ao servidor retrace" + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "não verificar se o servidor retrace é capaz de processar o pacote fornecido antes de enviar o ficheiro" ++msgstr "" ++"não verificar se o servidor retrace é capaz de processar o pacote fornecido " ++"antes de enviar o ficheiro" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1380,14 +1512,19 @@ msgstr "Depurador GNU local" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Descarregar pacotes debuginfo e gerar traçagem inversa localmente utilizando GDB" ++msgstr "" ++"Descarregar pacotes debuginfo e gerar traçagem inversa localmente utilizando " ++"GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Precisa de descarregar pacotes debuginfo, o que demora tempo considerável, e consome espaço em disco. Contudo, ao contrário do RetraceServer, não envia coredumps para máquinas remotas." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Precisa de descarregar pacotes debuginfo, o que demora tempo considerável, e " ++"consome espaço em disco. Contudo, ao contrário do RetraceServer, não envia " ++"coredumps para máquinas remotas." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1395,12 +1532,18 @@ msgstr "Enviar core dump para o servidor retrace remoto para análise" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Envia o coredump para um servidor, o que gera uma traçagem inversa e a retorna. Vantagens: não necessita de descarregar debuginfos. A base de dados de debuginfos do servidor retrace é mais completa. O servidor de retrace pode gerar melhores traçagens inversas. Desvantagens: o coredump que envia contém todos os dados do programa que crashou, incluindo, se existirem, dados privados." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Envia o coredump para um servidor, o que gera uma traçagem inversa e a " ++"retorna. Vantagens: não necessita de descarregar debuginfos. A base de dados " ++"de debuginfos do servidor retrace é mais completa. O servidor de retrace " ++"pode gerar melhores traçagens inversas. Desvantagens: o coredump que envia " ++"contém todos os dados do programa que crashou, incluindo, se existirem, " ++"dados privados." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1425,10 +1568,13 @@ msgstr "Usar ou não uma ligação insegura" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Escreve \"inseguro\" para permitir ligações inseguras <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(aviso)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Escreve \"inseguro\" para permitir ligações inseguras <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(aviso)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1442,11 +1588,14 @@ msgstr "Gravar linhas relevantes do ficheiro ~/.xsession-errors" + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Analisa através do ficheiro ~/.xsession-errors e grava as linhas que contêm o nome do executável. O resultado é gravado como elemento 'xsession_errors'." ++msgstr "" ++"Analisa através do ficheiro ~/.xsession-errors e grava as linhas que contêm " ++"o nome do executável. O resultado é gravado como elemento 'xsession_errors'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +-msgstr "" ++msgstr "Ocorreu um erro no servidor." + + #: ../src/plugins/https-utils.c:65 + #, c-format +@@ -1475,7 +1624,9 @@ msgstr "O certificado está assinado por um emissor não confiável: '%s'." + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "Nome do sujeito '%s' no certificado não corresponde com o nome do servidor de destino '%s'." ++msgstr "" ++"Nome do sujeito '%s' no certificado não corresponde com o nome do servidor " ++"de destino '%s'." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1600,7 +1751,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nProcurar actualizações no servidor bodhi" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Procurar actualizações no servidor bodhi" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1613,13 +1767,15 @@ msgstr "Não foram encontradas actualizações para este pacote" + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" +-msgstr "A versão local deste pacote é mais recente do que a disponível nas actualizações" ++msgstr "" ++"A versão local deste pacote é mais recente do que a disponível nas " ++"actualizações" + + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1704,7 +1860,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1789,8 +1946,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1801,13 +1958,17 @@ msgstr "Analisar núcleo VM" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Instala os pacotes debuginfo do kernel, gera o log do kernel e mensagens de oops" ++msgstr "" ++"Instala os pacotes debuginfo do kernel, gera o log do kernel e mensagens de " ++"oops" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Obriga a instalar pacotes debuginfo do kernel, o que pode demorar algum tempo, e ocupa espaço em disco." ++msgstr "" ++"Obriga a instalar pacotes debuginfo do kernel, o que pode demorar algum " ++"tempo, e ocupa espaço em disco." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1821,7 +1982,9 @@ msgstr "Guardar a configuração da directoria GConf da aplicação" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Executa gconftool-2 --recursive-list /apps/executable e grava-o como um elemento 'gconf_subtree'." ++msgstr "" ++"Executa gconftool-2 --recursive-list /apps/executable e grava-o como um " ++"elemento 'gconf_subtree'." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1835,7 +1998,9 @@ msgstr "Gravar /etc/vimrc e /etc/gvimrc" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Verifica se existem ficheiros vimrc e gvimrc em /etc e grava-os como system_vimrc e system_gvimrc, respectivamente." ++msgstr "" ++"Verifica se existem ficheiros vimrc e gvimrc em /etc e grava-os como " ++"system_vimrc e system_gvimrc, respectivamente." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1847,9 +2012,11 @@ msgstr "Grava .vimrc e .gvimrc da sua pasta pessoal" + + #: ../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 "Verifica se existem .vimrc e .gvimrc na sua pasta pessoal e grava-os como user_vimrc e user_gvimrc, respectivamente." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Verifica se existem .vimrc e .gvimrc na sua pasta pessoal e grava-os como " ++"user_vimrc e user_gvimrc, respectivamente." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/pt_BR.po b/po/pt_BR.po +index 2440d98..6a4d2d7 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -24,22 +24,26 @@ + # Vitor Lobo Ramos , 2014 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/fedora-abrt/language/pt_BR/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: pt_BR\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" ++"fedora-abrt/language/pt_BR/)\n" ++"Language: pt-BR\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" ++"X-Generator: Zanata 3.5.1\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" + msgstr "Ferramenta para o relatório automático de erros" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "ABRT notification applet" + msgstr "miniaplicativo de notificação do ABRT" +@@ -49,57 +53,72 @@ 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" +-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" ++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?" ++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?" ++msgstr "" ++"Você quer habilitar os relatórios de travamento anônimos submetidos " ++"automaticamente?" + ++# translation auto-copied from project abrt, version master, document abrt + #. The NetworkManager DBus service is not available. + #: ../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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:342 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Não foi possível obter propriedade de '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:350 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "Não é possível abrir o diretório para escrita '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "Foi detectado um problema" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "Foi detectado um problema no pacote %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "%s e os dados do diagnóstico foram submetidos" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:589 ../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'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" +@@ -107,109 +126,151 @@ msgstr "Não é possível fechar a notificação: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "Você irá sileinciar as notificações de um problema específico. Você não verá mais notificações para este problema novamente, no entanto, o ABRT irá detectar as notificações e você poderá reportá-las a partir do ABRT GUI.\n\nVocê deseja continuar?" ++msgstr "" ++"Você irá sileinciar as notificações de um problema específico. Você não verá " ++"mais notificações para este problema novamente, no entanto, o ABRT irá " ++"detectar as notificações e você poderá reportá-las a partir do ABRT GUI.\n" ++"\n" ++"Você deseja continuar?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "Aviso" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:834 + 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 " ++msgstr "" ++"O mini aplicativo da área de notificação para notificar o usuário sobre os " ++"problemas detectados pelo ABRT " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "Ricardo Gyorfy \nGlaucia Cintra\nTaylon Silmer \nTeseu " ++msgstr "" ++"Ricardo Gyorfy \n" ++"Glaucia Cintra\n" ++"Taylon Silmer \n" ++"Teseu " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "_Sair" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Esconder" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:862 + msgid "_About" + msgstr "_Sobre" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Problema detectado" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "Sempre ignorar" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Abrir" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "O Problema já foi Reportado" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "Um erro conhecido ocorreu" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Relatar" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "Ocorreu um Problema" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "Um problema foi relatado" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "Um novo problema ocorreu" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "Não é possível mostrar a notificação: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #. TODO: Terminate child's process? + #: ../src/applet/applet.c:1098 ../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'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "Não é possível definir codificação no canal gio: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1186 + #, 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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1494 + #, 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" ++msgstr "" ++"Falha ao abrir conexão para o gerenciador de sessão: '%s' a notificação deve " ++"reaparecer no próximo login" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1635 + 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" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"O mini aplicativo que notifica o usuário quando novos problemas foram " ++"detectados pelo ABRT\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -230,11 +291,15 @@ msgstr "Reportar resumidamente de maneira anônima" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "O arquivo coredump é necessário para a geração de rastreamento de pilha que é o tempo e o espaço consumindo da operação. O ABRT oferece um serviço que gera rastreamento de pilha do coredump mas é necessário fazer upload do coredump a este serviço. Com esta opção desabilitada, o ABRT fará o upload do coredump automaticamente." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"O arquivo coredump é necessário para a geração de rastreamento de pilha que " ++"é o tempo e o espaço consumindo da operação. O ABRT oferece um serviço que " ++"gera rastreamento de pilha do coredump mas é necessário fazer upload do " ++"coredump a este serviço. Com esta opção desabilitada, o ABRT fará o upload " ++"do coredump automaticamente." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -242,28 +307,42 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "O ABRT armazena dados do problema em diretórios. Sempre que o ABRT precisar gravar o diretório, este será movido do local do sistema para o seu diretório home. Com esta opção desabilitada o ABRT irá mover o diretório problemático automaticamente." ++msgstr "" ++"O ABRT armazena dados do problema em diretórios. Sempre que o ABRT precisar " ++"gravar o diretório, este será movido do local do sistema para o seu " ++"diretório home. Com esta opção desabilitada o ABRT irá mover o diretório " ++"problemático automaticamente." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport é a descrição curta e completamente anônima de um problema. O ABRT usa o uReports para uma rápida detecção de duplicação generalizada. Na configuração padrão o uReport é enviado no início do processo da comunicação. Com esta opção habilitada o uReports será enviado automaticamente e imediatamente após a detecção problema." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport é a descrição curta e completamente anônima de um problema. O ABRT " ++"usa o uReports para uma rápida detecção de duplicação generalizada. Na " ++"configuração padrão o uReport é enviado no início do processo da comunicação." ++" Com esta opção habilitada o uReports será enviado automaticamente e " ++"imediatamente após a detecção problema." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "Se você clicar neste botão, o uReport será interrompido antes de ser enviado e aparecerá uma notificação. Lembre-se que você poderá usar o navegador padrão para fazer o relatório completo do problema." ++msgstr "" ++"Se você clicar neste botão, o uReport será interrompido antes de ser enviado " ++"e aparecerá uma notificação. Lembre-se que você poderá usar o navegador " ++"padrão para fazer o relatório completo do problema." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "Com esta opção habilitada o ABRT nunca mostrará as notificações de problemas relatados. Terá efeito somente se o relatório resumido estiver habilitado." ++msgstr "" ++"Com esta opção habilitada o ABRT nunca mostrará as notificações de problemas " ++"relatados. Terá efeito somente se o relatório resumido estiver habilitado." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -273,12 +352,15 @@ msgstr "Pergunte antes de fazer o upload do coredump" + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr " Com esta opção, o ABRT habilitado sempre cria um tiquete de erro com acesso restrito caso dados sensíveis forem possivelmente detectados." ++msgstr "" ++" Com esta opção, o ABRT habilitado sempre cria um tiquete de erro com acesso " ++"restrito caso dados sensíveis forem possivelmente detectados." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" + msgstr "Solicite um ticket privado para informações minuciosas" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" + msgstr "Notificar problemas incompletos" +@@ -288,40 +370,54 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "Problemas incompletos estão sendo detectados enquanto o computador for desligado ou o usuário sair. A fim de fornecer relatórios minuciosos dos problemas, o ABRT não enviará os relatórios agora." ++msgstr "" ++"Problemas incompletos estão sendo detectados enquanto o computador for " ++"desligado ou o usuário sair. A fim de fornecer relatórios minuciosos dos " ++"problemas, o ABRT não enviará os relatórios agora." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "_Fechar" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "_Padrão" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "Problema de configuração reportado" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "Sobre o sistema de configuração ABRT" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "Sobre" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "Sair" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:382 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nAnalise o banco de dados do pacote e salve o pacote e nome do componente" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Analise o banco de dados do pacote e salve o pacote e nome do componente" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 +@@ -333,43 +429,52 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n\nAnalise o banco de dados do pacote e salv + msgid "Problem directory" + msgstr "Diretório do problema" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:395 + msgid "Configuration file" + msgstr "Arquivo de Configuração" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:797 + msgid "Use NUM as client uid" + msgstr "Utilize o NUM como uid de cliente" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Adicionar os nomes dos programas ao log" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:123 + msgid "Unknown error" + msgstr "Erro desconhecido" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:188 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' não é um diretório de problema válido" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:223 + #, c-format + msgid "'%s' element can't be modified" + msgstr "O '%s' não pode ser modificado" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 + #: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 +@@ -377,74 +482,99 @@ msgstr "O '%s' não pode ser modificado" + msgid "Not Authorized" + msgstr "Não Autorizado" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:256 + msgid "Can't access the problem for modification" + msgstr "Não é possível acessar o problema para modificação" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Erro ao mudar o dono do diretório. Verifique os logs do sistema para mais detalhes." ++msgstr "" ++"Erro ao mudar o dono do diretório. Verifique os logs do sistema para mais " ++"detalhes." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:559 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' não é um nome válido de elemento" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:580 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Não foi possível obter o tamanho de '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:595 + msgid "No problem space left" + msgstr "Nenhum problema de espaço." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:627 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Não é possível remover o elemento '%s' do diretório de problema '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:763 ../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 que possui o nome não está em execução.\n" ++msgstr "" ++"O nome '%s' foi perdido, por favor verifique se outro serviço que possui o " ++"nome não está em execução.\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Sai após os segundos NUM de inatividade" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa deve estar sendo executado como root." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "Os dados do problema estão incompletos. Isso geralmente ocorre quando um problema é detectado enquanto o computador está desligando ou o usuário está saindo de sua conta. Para manter apenas relatórios de problemas importantes, o ABRT não deixará que você envie esse problema. Se você tem tempo e deseja auxiliar os desenvolvedores em seu esforço para resolver esse problema, por favor contacte-os diretamente." +- ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"Os dados do problema estão incompletos. Isso geralmente ocorre quando um " ++"problema é detectado enquanto o computador está desligando ou o usuário está " ++"saindo de sua conta. Para manter apenas relatórios de problemas importantes, " ++"o ABRT não deixará que você envie esse problema. Se você tem tempo e deseja " ++"auxiliar os desenvolvedores em seu esforço para resolver esse problema, por " ++"favor contacte-os diretamente." ++ ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" + msgstr "Não criar um daemon" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:498 + msgid "Log to syslog even with -d" + msgstr "Registrar no syslog mesmo com o -d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:388 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:396 + msgid "Run EVENT on DIR" + msgstr "Executar o EVENT no DIR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:397 + msgid "Communicate directly to the user" + msgstr "Comunicar diretamente com o usuário" +@@ -464,8 +594,17 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-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" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Observa UPLOAD_DIRECTORY e desempacota arquivos de entrada no DumpLocation\n" ++"especificado em abrt.conf\n" ++"\n" ++"Se UPLOAD_DIRECTORY não for fornecido, usa um valor de\n" ++"WatchCrashdumpArchiveDir opção de abrt.conf" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "Daemize" +@@ -474,23 +613,79 @@ msgstr "Daemize" + msgid "Number of concurrent workers. Default is " + msgstr "Número de trabalhadores concomitantes. Padrão é" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "Número de argumentos é inválido" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valor de opção desconhecida: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++#, fuzzy ++msgid "SSL Client Authenticated auto reporting" ++msgstr "Reportar resumidamente de maneira anônima" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -501,7 +696,14 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n UPLOAD_DIR - Directory where uploaded archives are stored\n FILENAME - Uploaded archive file name\n" ++msgstr "" ++"Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -568,65 +770,86 @@ msgstr "Não foi possível desempacotar '{0}'" + msgid "'{0}' processed successfully" + msgstr "'{0}' processado com sucesso" + ++# translation auto-copied from project abrt, version master, document abrt + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "Gerando o backtrace" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:42 + #, c-format + msgid "Can't connect to system DBus: %s" + msgstr "Não é possível conectar-se com o sistema DBus: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "Não é possível realizar o chown'%s': %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "Remoção do diretório problema falhou: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Não foi possível obter dados de problemas do abrt-dbus: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:169 + #, c-format + 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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "Não foi possível criar arquivo temporário '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-msgstr "Não foi possível escrever em '%s'. Problema '%s' não será removido dos problemas ignorados '%s'" ++msgstr "" ++"Não foi possível escrever em '%s'. Problema '%s' não será removido dos " ++"problemas ignorados '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, 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'" ++msgstr "" ++"Não é possível renomear '%s' para '%s'. Falha ao remover problema '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nAnalisa o C/C++backtrace, gera o hash de duplicação, classificação de backtrace, e identifica a função de travamento no DIR do diretório do problema" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analisa o C/C++backtrace, gera o hash de duplicação, classificação de " ++"backtrace, e identifica a função de travamento no DIR do diretório do " ++"problema" + ++# translation auto-copied from project abrt, version master, document abrt ++#. + #. * 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" +@@ -636,12 +859,16 @@ msgstr "Análise do backtrace falhou por %s" + msgid "Crash thread not found" + msgstr "Opção de travamento não foi encontrada" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-c.c:67 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nCalcula e salva o UUID do coredump no DIR do diretório do problema" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcula e salva o UUID do coredump no DIR do diretório do problema" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -662,36 +889,48 @@ msgstr "Maneira de usar: %s [-v] [-o OUTFILE] -c COREFILE" + msgid "COREFILE is not specified" + msgstr "COREFILE não foi especificado" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR⏎ ⏎ Calcula e salva a UUID e DUPHASH para o diretório de problema oops DIR" ++msgstr "" ++"& [-v] -d DIR⏎ ⏎ Calcula e salva a UUID e DUPHASH para o diretório de " ++"problema oops DIR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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⏎ ⏎ Calcula e salva a UUID e DUPHASH para o diretório de problema do xorg DIR" ++msgstr "" ++"& [-v] -d DIR⏎ ⏎ Calcula e salva a UUID e DUPHASH para o diretório de " ++"problema do xorg DIR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" + msgstr "Módulo '%s' foi carregado - não irá reportar este travamento" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nCalcula e salva o UUID e DUPHASH dos despejos de travamentos do python" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Calcula e salva o UUID e DUPHASH dos despejos de travamentos do python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "Uso: {0} [-v[v]] [--core=VMCORE]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "O arquivo {0} não existe" +@@ -700,11 +939,12 @@ msgstr "O arquivo {0} não existe" + msgid "Extracting the oops text from core" + msgstr "Extraindo o texto do oops do núcleo" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "Não foi possível processar {0}:\n" + "{1}" +-msgstr "Não foi possível processar {0}:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -718,25 +958,35 @@ msgstr "Texto do oops extraído com sucesso" + 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" ++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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nAnalisa o coredump no DIR do diretório do problema, gera e salva o backtrace" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analisa o coredump no DIR do diretório do problema, gera e salva o backtrace" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" + msgstr "Diretórios de informações de depuração adicionais" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" + msgstr "Terminar o gdb se ele rodar por mais de NUM segundos" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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" +@@ -747,26 +997,35 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\nCria um backtrace do coredump-level do despejo do núcleo e binário correspondente" ++msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"Cria um backtrace do coredump-level do despejo do núcleo e binário " ++"correspondente" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" + msgstr "Não " + ++# translation auto-copied from project abrt, version master, document abrt + #. Let user know what's going on + #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 + msgid "Generating core_backtrace" + msgstr "Gerando core_backtrace" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" + msgstr "Erro: GDB não retornou nenhum dado" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" + msgstr "Erro: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" + msgstr "Saindo no comando do usuário" +@@ -775,7 +1034,8 @@ msgstr "Saindo no comando do usuário" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -785,21 +1045,46 @@ msgid "" + " -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" ++" --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" +-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" ++msgstr "" ++"Uso: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Instala debuginfos para todos os build-ids listados em BUILD_IDS_FILE\n" ++"para realizar um CACHEDIR, usando TMPDIR como área temporária.\n" ++"Arquivos 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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" + msgstr "Não é possível abrir {0}: {1}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Referências do coredump {0} arquivos de debuginfo, {1} deles não foi instalado" ++msgstr "" ++"Referências do coredump {0} arquivos de debuginfo, {1} deles não foi " ++"instalado" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -809,43 +1094,63 @@ msgstr "{0} de arquivos debuginfo não estão instalados" + msgid "Missing requested file: {0}" + msgstr "Arquivo requerido faltando: {0} " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" + msgstr "Faltando arquivo debuginfo: {0}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:231 + msgid "All debuginfo files are available" + msgstr "Todos os arquivos debuginfo estão disponíveis." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Carregar dump central? (Pode conter dados sensíveis). Se a resposta for 'Não', um rastreamento em pilha será gerado localmente. (Pode baixar uma grande quantidade de dados)." ++msgstr "" ++"Carregar dump central? (Pode conter dados sensíveis). Se a resposta for " ++"'Não', um rastreamento em pilha será gerado localmente. (Pode baixar uma " ++"grande quantidade de dados)." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "Você deseja gerar um rastreamento em pilha localmente? (Pode baixar uma grade quantidade de dados mas a reportagem não pode continuar sem o rastreamento em pilha)." ++msgstr "" ++"Você deseja gerar um rastreamento em pilha localmente? (Pode baixar uma " ++"grade quantidade de dados mas a reportagem não pode continuar sem o " ++"rastreamento em pilha)." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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\nRemove problemas dirs (-d) ou arquivos (-f) em DIRs até que sejam diminuídos de TAMANHO.\nARQUIVOs são preservados (nunca removidos)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Remove problemas dirs (-d) ou arquivos (-f) em DIRs até que sejam diminuídos " ++"de TAMANHO.\n" ++"ARQUIVOs são preservados (nunca removidos)." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" + msgstr "Remova todos os diretórios de problema" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:237 + msgid "Delete files inside this directory" + msgstr "Remova arquivos de dentro deste diretório" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" + msgstr "Preservar este diretório" +@@ -867,7 +1172,9 @@ msgstr "Uso: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "Não foi possível obter diretório atual em funcionamento pois pode ter sido removido" ++msgstr "" ++"Não foi possível obter diretório atual em funcionamento pois pode ter sido " ++"removido" + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +@@ -882,14 +1189,17 @@ msgstr "uReport já foi enviado, não será enviado novamente" + msgid "reporter-ureport failed with exit code %d" + msgstr "o reporter-ureport falhou com o código de saída %d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "Sinal enviado pelo código no espaço do usuário" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" + msgstr "Sinal enviado pelo evento timer/IO/async" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" + msgstr "Sinal tem siginfo.si_code = SI_USER" +@@ -898,16 +1208,19 @@ msgstr "Sinal tem siginfo.si_code = SI_USER" + msgid "Signal due to write to closed pipe" + msgstr "Sinal devido à gravação para fechar o pipe" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" + msgstr "SInal enviado pelo teclado" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" + msgstr "Sinal de controle do job enviado pelo kernel" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" +@@ -922,6 +1235,7 @@ msgstr "Sinal enviado pela expiração do alarme(N) " + msgid "Signal due to write to broken pipe" + msgstr "Sinal devido à gravação em pipe interrompido" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" + msgstr "Sinal do ABRT (abort() foi chamado?)" +@@ -942,6 +1256,7 @@ msgstr "Sinal do TRAP (pode ser um 'erro' em um debugger/rastreador)" + msgid "SYS signal (unknown syscall was called?)" + msgstr "Sinal do SYS (syscall desconhecido foi chamado?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" + msgstr "Exceção aritmética" +@@ -950,6 +1265,7 @@ msgstr "Exceção aritmética" + msgid "Division by zero" + msgstr "Sivisão por zero" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" + msgstr "Instrução ilegal (saltar para endereço aleatório?)" +@@ -958,18 +1274,23 @@ msgstr "Instrução ilegal (saltar para endereço aleatório?)" + msgid "Non-crash related signal" + msgstr "Sinal relacionado ao não travamento" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" + msgstr "Estouro de pilha" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:656 + msgid "Write to an invalid address" + msgstr "Escrever em um endereço inválido" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "Retorno de uma sub-rotina para um endereço inválido (pilha corrompida?)" ++msgstr "" ++"Retorno de uma sub-rotina para um endereço inválido (pilha corrompida?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 + msgid "Jump to an invalid address" +@@ -978,12 +1299,15 @@ 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 "Acesso depois do final do arquivo mapeado, endereço inválido, acesso desalinhado, etc" ++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 "Não foi possível obter sinal no e realizar análise de exploração.\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " + msgstr "Provável razão da saída inesperada:" +@@ -992,6 +1316,7 @@ msgstr "Provável razão da saída inesperada:" + msgid "Exploitable rating (0-9 scale): " + msgstr "Classificação de exploração (escala de 0-9)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " + msgstr "Instrução atual:" +@@ -1000,13 +1325,19 @@ msgstr "Instrução atual:" + msgid "Exploitability analysis came up empty\n" + msgstr "Análise de exploração apareceu vazia.\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nObserve o arquivo de log FILE, execute o PROG quando aumentar ou for substituído" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Observe o arquivo de log FILE, execute o PROG quando aumentar ou for " ++"substituído" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" + msgstr "Não execute o PROG se o STRs não for encontrado" +@@ -1015,21 +1346,30 @@ msgstr "Não execute o PROG se o STRs não for encontrado" + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-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." ++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:130 + msgid "" + "A kernel problem occurred, but your hardware is unsupported, therefore " + "kernel maintainers are unable to fix this problem." +-msgstr "Ocorreu um problema com o kernel mas seu kernel não é suportado, portanto os mantedores do kernel não podem reparar este problema." ++msgstr "" ++"Ocorreu um problema com o kernel mas seu kernel não é suportado, portanto os " ++"mantedores do kernel não podem reparar este problema." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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." ++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." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." +@@ -1040,26 +1380,35 @@ msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nExtrai o oops de FILE (ou entrada padrão)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extrai o oops de FILE (ou entrada padrão)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "Exibir erros encontrados no resultado padrão" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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: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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" ++msgstr "" ++"Mesmo que -d DumpLocation, DumpLocation está especificado no abrt.conf" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "Salva a informação extraída em PROBLEM" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" +@@ -1068,6 +1417,7 @@ msgstr "Tornar o diretório de problema mundial legível" + msgid "Throttle problem directory creation to 1 per second" + msgstr "Alterna a criação de diretório do problema para 1 por segundo" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" +@@ -1080,40 +1430,54 @@ msgstr "Falha ao compilar o regex" + msgid "Can't update the problem: more than one oops found" + msgstr "Não foi possível atualizar o problema: mais do que um oops encontrado" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Dormindo por %d segundos" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:237 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nExtraia o travamento do Xorg doFILE (ou entrada padrão)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extraia o travamento do Xorg doFILE (ou entrada padrão)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" + msgstr "Imprima dados de travamento encontrados na saída do padrão" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:246 + msgid "Create problem directory in DIR for every crash found" +-msgstr "Criar diretório de problema no DIR para todos os travamentos encontrados" ++msgstr "" ++"Criar diretório de problema no DIR para todos os travamentos encontrados" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "A servidor de retraçamento não pode ser usado, por causa que o travamento é muito grande. Tente um retraçamento local." ++msgstr "" ++"A servidor de retraçamento não pode ser usado, por causa que o travamento é " ++"muito grande. Tente um retraçamento local." + ++# translation auto-copied from project abrt, version master, document abrt + #. 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 "Impossível criar o arquivo tenporario em " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 + #: ../src/plugins/abrt-retrace-client.c:666 +@@ -1122,6 +1486,7 @@ msgstr "Impossível criar o arquivo tenporario em " + msgid "Failed to send HTTP header of length %d: NSS error %d" + msgstr "Falha ao enviar o cabeçalho HTTP de extensão %d:erro NSS %d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 + #: ../src/plugins/abrt-retrace-client.c:765 +@@ -1130,11 +1495,12 @@ msgstr "Falha ao enviar o cabeçalho HTTP de extensão %d:erro NSS %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Resposta HTTP não esperada do servidor: %d\n" + "%s" +-msgstr "Resposta HTTP não esperada do servidor: %d\n%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 + #: ../src/plugins/abrt-retrace-client.c:841 +@@ -1144,25 +1510,32 @@ msgstr "Resposta HTTP não esperada do servidor: %d\n%s" + msgid "Invalid response from server: missing HTTP message body." + msgstr "Resposta inválida do servidor: corpo de mensagem HTTP faltando." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "O servidor Retrace não é capaz de processar pacote '%s.%s'.\nEle é parte dos repositórios oficias do '%s'?" ++msgstr "" ++"O servidor Retrace não é capaz de processar pacote '%s.%s'.\n" ++"Ele é parte dos repositórios oficias do '%s'?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" + msgstr "Consultando configurações do servidor" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." + msgstr "O servidor está ocupado. Tente novamente mais tarde." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." + msgstr "O servidor negou seu pedido." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:484 + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format +@@ -1174,25 +1547,32 @@ msgstr "'%s' deve ser um arquivo comum para utilizar o servidor Retrace." + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "O tamanho de seu travamento é %lld bytes, mas o servidor de retraçamento somente aceita travamentos maiores ou iguais a %lld bytes." ++msgstr "" ++"O tamanho de seu travamento é %lld bytes, mas o servidor de retraçamento " ++"somente aceita travamentos maiores ou iguais a %lld bytes." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." + msgstr "O servidor não suporta os tarballs xz-comprimidos." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:571 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." + msgstr "O lançamento '%s' não é suportado pelo servidor Retrace." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:575 + msgid "The server is not able to handle your request." + msgstr "O servidor não é capaz de lidar com sua requisição." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:594 + msgid "Unknown package sent to Retrace server." + msgstr "Pacote desconhecido enviado ao servidor Retrace." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:603 + msgid "Preparing an archive to upload" + msgstr "Preparando um arquivo para fazer upload" +@@ -1202,13 +1582,16 @@ msgstr "Preparando um arquivo para fazer upload" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "O tamanho de seu arquivo é %lld bytes, mas o servidor de retraçamento somente aceita arquivos menores ou iguais a %lld bytes." ++msgstr "" ++"O tamanho de seu arquivo é %lld bytes, mas o servidor de retraçamento " ++"somente aceita arquivos menores ou iguais a %lld bytes." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format + msgid "You are going to upload %d megabytes. Continue?" + msgstr "Você vai carregar %d megabytes. Continuar?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:638 + msgid "Cancelled by user" + msgstr "Cancelado pelo usuário" +@@ -1223,66 +1606,83 @@ msgstr "Fazendo upload de %d megabytes\n" + msgid "Uploading %lld bytes\n" + msgstr "Fazendo upload de %lld bytes\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:699 + #, c-format + msgid "Uploading %d%%\n" + msgstr "Fazendo upload %d%%\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:711 + msgid "Failed to read from a pipe" + msgstr "Falha ao ler a partir do pipe" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:724 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" + msgstr "Falha ao enviar dados: erro NSS %d (%s): %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:735 + msgid "Upload successful" + msgstr "Upload realizado com sucesso" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:757 + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Seu diretório de problemas está corrompido e não pode ser processado pelo servidor de retraçamento." ++msgstr "" ++"Seu diretório de problemas está corrompido e não pode ser processado pelo " ++"servidor de retraçamento." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "O depósito de arquivos contém arquivos maliciosos (como symlinks) e então não podem ser processados." ++msgstr "" ++"O depósito de arquivos contém arquivos maliciosos (como symlinks) e então " ++"não podem ser processados." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." + msgstr "Resposta inválida do servidor: faltando X-Task-Id." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:778 + msgid "Invalid response from server: missing X-Task-Password." + msgstr "Resposta inválida do servidor: faltando X-Task-Password." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:785 + msgid "Retrace job started" + msgstr "Retraçar tarefa iniciada" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Id da Tarefa:%s\nSenha da Tarefa:%s\n" ++msgstr "Id da Tarefa:%s\n" ++"Senha da Tarefa:%s\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." + msgstr "Resposta inválida do servidor: faltando X-Task-Status." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Estado da Tarefa: %s\n" + "%s\n" +-msgstr "Estado da Tarefa: %s\n%s\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 + #: ../src/plugins/abrt-retrace-client.c:1043 +@@ -1290,66 +1690,86 @@ msgstr "Estado da Tarefa: %s\n%s\n" + msgid "Failed to send HTTP header of length %d: NSS error %d." + msgstr "Falha ao enviar o cabeçalho HTTP de extensão %d: erro do NSS %d." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1160 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "O servidor de retraçamento falhou. Tente novamente mais tarde e se o problema persistir, por favor reporte o problema." ++msgstr "" ++"O servidor de retraçamento falhou. Tente novamente mais tarde e se o " ++"problema persistir, por favor reporte o problema." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" + msgstr "log no syslog" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1209 + msgid "allow insecure connection to retrace server" + msgstr "permitir conexões inseguras ao servidor de retraçamento" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1211 + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "não verificar se o servidor retrace está apto a processar o pacote fornecido antes de carregar o arquivo." ++msgstr "" ++"não verificar se o servidor retrace está apto a processar o pacote fornecido " ++"antes de carregar o arquivo." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" + msgstr "Retraçar URL do servidor" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1216 + msgid "retrace server port" + msgstr "reconstituir a porta do servidor" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1218 + msgid "(debug) show received HTTP headers" + msgstr "(depurar) exibir cabeçalhos HTTP" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1219 + msgid "For create and batch operations" + msgstr "Para criar e fazer operações em lote" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1221 + msgid "read data from ABRT problem directory" + msgstr "ler dados do diretório do problema do ABRT" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1223 + msgid "read data from coredump" + msgstr "ler dados do coredump" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1225 + msgid "Delay for polling operations" + 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 "(debug) não remova arquivos temporários criados a partir do diretório de despejo em" ++msgstr "" ++"(debug) não remova arquivos temporários criados a partir do diretório de " ++"despejo em" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" + msgstr "Para o estado, backtrace e operações de log" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1231 + msgid "id of your task on server" + msgstr "id de sua tarefa no servidor" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1233 + msgid "password of your task on server" + msgstr "senha de sua tarefa no servidor" +@@ -1358,13 +1778,17 @@ msgstr "senha de sua tarefa no servidor" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [options]\nOperações: create/status/backtrace/log/batch/explorável" ++msgstr "" ++"abrt-retrace-client [options]\n" ++"Operações: create/status/backtrace/log/batch/explorável" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 + msgid "Either problem directory or coredump is needed." + msgstr "Tanto o diretório do problema quanto o coredump são necessários." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1294 + #: ../src/plugins/abrt-retrace-client.c:1302 + #: ../src/plugins/abrt-retrace-client.c:1310 +@@ -1372,6 +1796,7 @@ msgstr "Tanto o diretório do problema quanto o coredump são necessários." + msgid "Task id is needed." + msgstr "O id da tarefa é necessário." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1296 + #: ../src/plugins/abrt-retrace-client.c:1304 + #: ../src/plugins/abrt-retrace-client.c:1312 +@@ -1379,152 +1804,200 @@ msgstr "O id da tarefa é necessário." + msgid "Task password is needed." + msgstr "A senha da tarefa é necessária" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1324 + #, c-format + msgid "Unknown operation: %s." + msgstr "Operação desconhecida: %s." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" + msgstr "GNU Debugger Local" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Baixar os pacotes debuginfo e gerar o backtrace localmente usando o GDB" ++msgstr "" ++"Baixar os pacotes debuginfo e gerar o backtrace localmente usando o GDB" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Precisa baixar pacotes de informação de depuração, que podem levar um tempo significativo e consome espaço de disco. Entretanto, diferente do Servidor de Retraçamento, não envia o coredump às máquinas remotas." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Precisa baixar pacotes de informação de depuração, que podem levar um tempo " ++"significativo e consome espaço de disco. Entretanto, diferente do Servidor " ++"de Retraçamento, não envia o coredump às máquinas remotas." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +-msgstr "Envia o despejo de núcleo ao servidor de retraçamento remoto para análise." ++msgstr "" ++"Envia o despejo de núcleo ao servidor de retraçamento remoto para análise." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Faz o upload do coredump a um servidor, que gera o backtrace e o retorna. Vantagens: sem necessidade de baixar o debuginfo. O banco de dados do servidor de retraçamento é mais completo. O servidor de retraçamento pode gerar backtraces melhores. Desvantagens: o coredump que você fez upload contém todos os dados do programa que travou, incluindo os dados privados, se houverem." +- ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Faz o upload do coredump a um servidor, que gera o backtrace e o retorna. " ++"Vantagens: sem necessidade de baixar o debuginfo. O banco de dados do " ++"servidor de retraçamento é mais completo. O servidor de retraçamento pode " ++"gerar backtraces melhores. Desvantagens: o coredump que você fez upload " ++"contém todos os dados do programa que travou, incluindo os dados privados, " ++"se houverem." ++ ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 + msgid "Retrace server URL" + msgstr "URL do servidor de retraçamento" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 + #: ../src/plugins/analyze_CCpp.xml.in.h:4 + msgid "Address of the retrace server" + msgstr "Endereço do servidor de retraçamento" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 + #: ../src/plugins/analyze_CCpp.xml.in.h:5 + msgid "Insecure" + msgstr "Inseguro" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 + #: ../src/plugins/analyze_CCpp.xml.in.h:6 + msgid "Whether or not to use insecure connection" + msgstr "Usar ou não conexão insegura." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Escrever \"inseguro\" para permitir conexão insegura <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Escrever \"inseguro\" para permitir conexão insegura <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" + msgstr "Coletar .xsession-errors" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" + msgstr "Salva linhas relevantes do arquivo ~/.xsession-errors" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "Escaneia o arquivo ~/.xsession-errors e salvas essas linhas que contém nomes executáveis. O resultado é salvo como um elemento 'xsession_errors'." ++msgstr "" ++"Escaneia o arquivo ~/.xsession-errors e salvas essas linhas que contém nomes " ++"executáveis. O resultado é salvo como um elemento 'xsession_errors'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." + msgstr "Um erro ocorreu no lado do servidor." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" + msgstr "Um erro do lado do servidor ocorreu em '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:74 + msgid "An error occurred while connecting to the server" + msgstr "Um erro ocorreu enquanto se conectava ao servidor" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:77 + #, c-format + msgid "An error occurred while connecting to '%s'" + msgstr "Um erro ocorreu enquanto se conectava a '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:97 + #, c-format + msgid "Issuer certificate is invalid: '%s'." + msgstr "O certificado do emissor é inválido: '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." + msgstr "O certificado é assinado por um emissor não confiável: '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "O nome do assunto do certificado '%s' não corresponde ao nome do host alvo '%s'." ++msgstr "" ++"O nome do assunto do certificado '%s' não corresponde ao nome do host alvo " ++"'%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." + msgstr "O certificado remoto expirou." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." + msgstr "O emissor do certificado não é reconhecido: '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." + msgstr "Certificado inválido recebido. Assunto '%s', emissor '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:149 + #, c-format + msgid "Failed to get slot 'PEM Token #0': %d." + msgstr "Falha ao obter slot 'PEM Token #0':%d." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." + msgstr "Não foi possível determinar o nome da máquina '%s'. Erro NSS %d." + ++# translation auto-copied from project abrt, version master, document abrt + #. Host exists, but has neither IPv4 nor IPv6?? + #: ../src/plugins/https-utils.c:203 + #, c-format + msgid "Can't resolve host name '%s'." + msgstr "Não foi possível determinar o nome da máquina '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." + msgstr "Falha ao definir o modo de bloqueio de soquete." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:213 + msgid "Failed to wrap TCP socket by SSL." + msgstr "Falha ao envolver o soquete TCP pelo SSL." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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." +@@ -1537,108 +2010,139 @@ msgstr "Falha ao habilitar SSL3." + msgid "Failed to enable TLS." + msgstr "Falha ao habilitar TLS." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "Falha ao definir o URL ao soquete SSL." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "Não foi possível se conectar a '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "Falha ao definir o gancho do certificado." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "Falha ao definir o aperto de mão do callback." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "Falha ao restabelecer o aperto de mão." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "Falha ao fechar o soquete SSL." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "Resposta do cabeçalho HTTP malformada: '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "Resposta em blocos malformados." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "Falha ao inicializar o NSS" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "Falha ao inicializar o módulo de seguridade" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "Falha ao desligar NSS" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:375 + msgid "List of bug ids" + msgstr "Lista de ids de bug" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:376 + msgid "Specify a bodhi server url" + msgstr "Especificar a url do servidor bodhi" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:377 + msgid "Specify a release" + msgstr "Especificar um lançamento" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:382 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nBuscar atualizações no servidor bodhi." ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Buscar atualizações no servidor bodhi." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" + msgstr "Buscando atualizações" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:440 + msgid "No updates for this package found" + msgstr "Nenhuma atualização para este pacote encontrado" + ++# translation auto-copied from project abrt, version master, document abrt + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" + msgstr "Versão local dos pacotes é mais nova do que atualizações disponíveis." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Existe uma atualização que repara seu problema. Você pode instalá'lo executando o: %s. Você quer continuar com a reportagem de bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Existe uma atualização que repara seu problema. Você pode instalá'lo " ++"executando o: %s. Você quer continuar com a reportagem de bug?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\nArquivos de scans para mensagens divididas do oops. Pode imprimir e/ou removê-los." ++msgstr "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"Arquivos de scans para mensagens divididas do oops. Pode imprimir e/ou " ++"removê-los." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" + msgstr "Imprimir oopses encontrados" +@@ -1652,6 +2156,7 @@ msgstr "Remover arquivos com os oopses encontrados" + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identifica mais do que um diretório de problema" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Uso: abrt-cli [--version] COMMAND [DIR]..." +@@ -1660,18 +2165,22 @@ msgstr "Uso: abrt-cli [--version] COMMAND [DIR]..." + msgid "List problems [in DIRs]" + msgstr "Listar problemas [in DIRs]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "Remover DIR de diretório de problema" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "Analisar e reportar dados do problema no DIR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "Imprimir informações sobre o DIR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "Mostrar a contagem das quebras recentes" +@@ -1680,6 +2189,7 @@ msgstr "Mostrar a contagem das quebras recentes" + msgid "Process multiple problems" + msgstr "Processar problemas múltiplos" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informações." +@@ -1690,6 +2200,7 @@ msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& lista [options] [DIR]..." +@@ -1698,6 +2209,7 @@ msgstr "& lista [options] [DIR]..." + msgid "List only not-reported problems" + msgstr "Listar somente os problemas não reportados" + ++# translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full + #: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" +@@ -1705,19 +2217,28 @@ msgstr "Exibir relatório detalhado" + + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +-msgstr "Listar apenas problemas mais recentes que o carimbo de data e hora especificado" ++msgstr "" ++"Listar apenas problemas mais recentes que o carimbo de data e hora " ++"especificado" + + #: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" +-msgstr "Listar apenas problemas mais recentes que o carimbo de data e hora especificado" ++msgstr "" ++"Listar apenas problemas mais recentes que o carimbo de data e hora " ++"especificado" + + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-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" ++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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." +@@ -1731,22 +2252,29 @@ msgstr "Texto maior do que este será exibido abreviado" + msgid "No such problem directory '%s'" + msgstr "Não há tal diretório de problemas '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:70 + msgid "& status [DIR]..." + msgstr "& status [DIR]..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:78 + msgid "Print only the problem count without any message" + msgstr "Mostrar apenas a contagem de problema sem mensagem" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:79 + msgid "Print only the problems more recent than specified timestamp" +-msgstr "Mostrar apenas problemas mais recentes que a marca de tempo especificada" ++msgstr "" ++"Mostrar apenas problemas mais recentes que a marca de tempo especificada" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 detectou %u problema(s). Para mais informações execute: abrt-cli list%s\n" ++msgstr "" ++"ABRT detectou %u problema(s). Para mais informações execute: abrt-cli " ++"list%s\n" + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1787,11 +2315,14 @@ msgstr "Sem o argumento --since, itera em todos os problemas detectados." + msgid "Selects only problems detected after timestamp" + msgstr "Seleciona somente problemas detectados após o timestamp" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Enviar o dump para o servidor retrace remoto para análise ou realizar análises locais, caso a análise remota falhar." ++msgstr "" ++"Enviar o dump para o servidor retrace remoto para análise ou realizar " ++"análises locais, caso a análise remota falhar." + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1799,76 +2330,109 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Carrega o coredump em um servidor, que gera o backtrace e retorna-o. Se o usuário não desejar carregar seu coredump para qualquer lugar que o evento realize análise local. A análise local é executada se a análise remota falhar. Prós: não é necessário fazer downloads de debuginfo. O banco de dados do servidor Retrace de debuginfos é mais completo. O Servidor Retrace pode gerar melhores backtraces. Cons: o coredump que você carrega contém todos os dados do programa de travamento, incluindo seus dados pessoais, caso haja algum." +- ++msgstr "" ++"Carrega o coredump em um servidor, que gera o backtrace e retorna-o. Se o " ++"usuário não desejar carregar seu coredump para qualquer lugar que o evento " ++"realize análise local. A análise local é executada se a análise remota " ++"falhar. Prós: não é necessário fazer downloads de debuginfo. O banco de " ++"dados do servidor Retrace de debuginfos é mais completo. O Servidor Retrace " ++"pode gerar melhores backtraces. Cons: o coredump que você carrega contém " ++"todos os dados do programa de travamento, incluindo seus dados pessoais, " ++"caso haja algum." ++ ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" + msgstr "Analisa o VM core" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Instalar os pacotes do kernel debuginfo, gerar o log do kernel e mensagens do oops" ++msgstr "" ++"Instalar os pacotes do kernel debuginfo, gerar o log do kernel e mensagens " ++"do oops" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Precisa instalar os pacotes do kernel debuginfo, que deve tomar bastante tempo, e tomar o espaço do disco." ++msgstr "" ++"Precisa instalar os pacotes do kernel debuginfo, que deve tomar bastante " ++"tempo, e tomar o espaço do disco." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" + msgstr "Coletar configuração do GConf" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" + msgstr "Salva a configuração de diretório do GConf do aplicativo" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:3 + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Executa gconftool-2 --recursive-list /apps/executable e o salva como elemento 'gconf_subtree'." ++msgstr "" ++"Executa gconftool-2 --recursive-list /apps/executable e o salva como " ++"elemento 'gconf_subtree'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" + msgstr "Coleta os arquivos de configuração do vm de todo o sistema." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" + msgstr "Salva o /etc/vimrc and /etc/gvimrc" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "Verifica se existem arquivos vimrc e gvmrc no /etc e os salva como system_vimrc e system_gvimrc, respectivamente." ++msgstr "" ++"Verifica se existem arquivos vimrc e gvmrc no /etc e os salva como " ++"system_vimrc e system_gvimrc, respectivamente." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" + msgstr "Coleta seus arquivos de configuração vim" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" + msgstr "Salva os .vimrc e .gvimrc de seu diretório home." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "Verifica se existem .vimrc e .gvimrc em seu diretório home e os salva como user_vimrc e user_gvimrc, respectivamente." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Verifica se existem .vimrc e .gvimrc em seu diretório home e os salva como " ++"user_vimrc e user_gvimrc, respectivamente." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" + msgstr "Pós reportagem" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:2 + msgid "Executed after the reporting is finished" + msgstr "Executado após a reportagem terminar" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:3 + msgid "Used for updating of the databases" + msgstr "Usado para atualizar banco de dados" +diff --git a/po/ro.po b/po/ro.po +index 294cfbb..a00324d 100644 +--- a/po/ro.po ++++ b/po/ro.po +@@ -5,17 +5,20 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Romanian (http://www.transifex.com/projects/p/fedora-abrt/language/ro/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Romanian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ro/)\n" + "Language: ro\n" +-"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" ++"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=" ++"0)))?2:1));\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +91,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +132,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +147,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +218,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +234,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +410,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +465,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +664,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +743,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +778,7 @@ 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" +@@ -756,7 +817,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +828,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +878,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1093,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1154,7 @@ 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,8 +1177,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1313,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1323,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1439,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1449,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1479,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1672,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1758,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1844,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1902,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/ru.po b/po/ru.po +index 1be08af..2668233 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -12,19 +12,23 @@ + # Stanislav Hanzhin , 2011 + # Yulia , 2012,2014 + # Yuri Khabarov , 2011 ++# yuliya , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Russian (http://www.transifex.com/projects/p/fedora-abrt/language/ru/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-06 08:47-0500\n" ++"Last-Translator: yuliya \n" ++"Language-Team: Russian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ru/)\n" + "Language: ru\n" +-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " ++"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -39,7 +43,9 @@ 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" +-msgstr "Созданный отчет не будет содержать личных данных, поэтому больше ничего предпринимать не надо.\n" ++msgstr "" ++"Созданный отчет не будет содержать личных данных, поэтому больше ничего " ++"предпринимать не надо.\n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +@@ -97,10 +103,17 @@ msgstr "Не удалось закрыть уведомление: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "Вы собираетесь отключить уведомления для определенной проблемы. Соответствующие всплывающие сообщения больше не будут появляться, но вы сможете создать отчет об ошибке в графическом режиме ABRT.\n\nПродолжить?" ++msgstr "" ++"Вы собираетесь отключить уведомления для определенной проблемы. " ++"Соответствующие всплывающие сообщения больше не будут появляться, но вы " ++"сможете создать отчет об ошибке в графическом режиме ABRT.\n" ++"\n" ++"Продолжить?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -113,7 +126,10 @@ msgstr "Значок в области уведомления сообщает + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "Yulia \nMisha Shnurapet \nYuri Khabarov " ++msgstr "" ++"Yulia \n" ++"Misha Shnurapet \n" ++"Yuri Khabarov " + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -136,6 +152,7 @@ msgid "Ignore forever" + msgstr "Игнорировать всегда" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Открыть" +@@ -150,6 +167,7 @@ msgstr "Произошла известная проблема" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Сообщить" +@@ -192,14 +210,19 @@ msgstr "Не удалось включить неблокирующий режи + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "Не удалось открыть соединение с менеджером сеанса: «%s», уведомление может появиться при следующем входе" ++msgstr "" ++"Не удалось открыть соединение с менеджером сеанса: «%s», уведомление может " ++"появиться при следующем входе" + + #: ../src/applet/applet.c:1635 + 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" ++msgstr "& [-v] [DIR]...\n" ++"\n" ++"Модуль оповещения о неполадках, обнаруженных ABRT\n" ++"\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -220,11 +243,14 @@ msgstr "Сокращенный отчет без подтверждения" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "Файл дампа памяти нужен для создания трассировки стека. На эту операцию требуется достаточно много времени и места. ABRT предоставляет службу создания трассировки стека из предварительно загруженного дампа памяти. Если этот параметр выключен, ABRT будет отправлять дамп без подтверждения." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"Файл дампа памяти нужен для создания трассировки стека. На эту операцию " ++"требуется достаточно много времени и места. ABRT предоставляет службу " ++"создания трассировки стека из предварительно загруженного дампа памяти. Если " ++"этот параметр выключен, ABRT будет отправлять дамп без подтверждения." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -232,28 +258,43 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT хранит данные о сбоях в каталогах. Когда ABRT потребуется осуществить запись в каталог, он будет перемещен в вашу домашнюю папку. Если этот параметр выключен, ABRT переместит каталог с данными сбоя без подтверждения." ++msgstr "" ++"ABRT хранит данные о сбоях в каталогах. Когда ABRT потребуется осуществить " ++"запись в каталог, он будет перемещен в вашу домашнюю папку. Если этот " ++"параметр выключен, ABRT переместит каталог с данными сбоя без подтверждения." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport содержит краткое и полностью анонимное описание проблемы. ABRT использует отчеты uReport для быстрого обнаружения дубликатов. В стандартной конфигурации uReport отправляется в начале процесса формирования отчетности. Если этот параметр включен, отчеты uReport отправляются автоматически сразу после обнаружения проблемы." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport содержит краткое и полностью анонимное описание проблемы. ABRT " ++"использует отчеты uReport для быстрого обнаружения дубликатов. В стандартной " ++"конфигурации uReport отправляется в начале процесса формирования отчетности. " ++"Если этот параметр включен, отчеты uReport отправляются автоматически сразу " ++"после обнаружения проблемы." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "Если этот параметр включен, процесс создания отчета, запущенный нажатием кнопки «Отчет» во всплывающем сообщении о сбое, будет прерван после отправления отчета uReport. Для создания полного отчета можно воспользоваться стандартным средством просмотра проблем." ++msgstr "" ++"Если этот параметр включен, процесс создания отчета, запущенный нажатием " ++"кнопки «Отчет» во всплывающем сообщении о сбое, будет прерван после " ++"отправления отчета uReport. Для создания полного отчета можно " ++"воспользоваться стандартным средством просмотра проблем." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "Если этот параметр включен, ABRT не будет показывать уведомления о сообщенных проблемах. Действует, только если включен сокращенный формат отчетов." ++msgstr "" ++"Если этот параметр включен, ABRT не будет показывать уведомления о " ++"сообщенных проблемах. Действует, только если включен сокращенный формат " ++"отчетов." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -263,7 +304,10 @@ msgstr "Спрашивать перед выгрузкой дампа памят + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "Если этот параметр включен, ABRT будет создавать отчет об ошибке с ограниченным доступом, если обнаружена вероятность попадания в отчет конфиденциальных данных." ++msgstr "" ++"Если этот параметр включен, ABRT будет создавать отчет об ошибке с " ++"ограниченным доступом, если обнаружена вероятность попадания в отчет " ++"конфиденциальных данных." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -278,7 +322,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "Обнаружены неполные данные об ошибках вследствие выключения компьютера или выхода пользователя из системы. С целью обеспечения содержательности отчетов ABRT не отправит отчет об этих ошибках." ++msgstr "" ++"Обнаружены неполные данные об ошибках вследствие выключения компьютера или " ++"выхода пользователя из системы. С целью обеспечения содержательности отчетов " ++"ABRT не отправит отчет об этих ошибках." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -310,7 +357,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nЗапросить в базе данных и сохранить названия пакета и компонента" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"Запросить в базе данных и сохранить названия пакета и компонента" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -399,7 +449,9 @@ msgstr "Ошибка удаления элемента «%s» из катало + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "Имя «%s» было потеряно, проверьте, не работает ли другая служба, использующая это имя.\n" ++msgstr "" ++"Имя «%s» было потеряно, проверьте, не работает ли другая служба, " ++"использующая это имя.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -408,16 +460,22 @@ msgstr "Выйти после NUM секунд бездействия" + + #: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." +-msgstr "Эта программа должна запускаться от имени привелигированного пользователя." ++msgstr "" ++"Эта программа должна запускаться от имени привелигированного пользователя." + + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 не позволит вам отправить отчет об этой ошибке. Если у вас есть время, и вы хотите помочь разработчикам в их усилиях разобраться с этим сбоем, связывайтесь с ними напрямую." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 не позволит вам отправить отчет " ++"об этой ошибке. Если у вас есть время, и вы хотите помочь разработчикам в их " ++"усилиях разобраться с этим сбоем, связывайтесь с ними напрямую." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -442,7 +500,8 @@ msgstr "Взаимодействие с пользователем напрям + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "Полный буфер и нет свободных способов обработки. Пропускается архив «%s»" ++msgstr "" ++"Полный буфер и нет свободных способов обработки. Пропускается архив «%s»" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -454,7 +513,15 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "& [-vs] [-w НОМЕР] [-c МиБ] [КАТАЛОГ]\n\n\nСледит за указанным каналогом и распаковывает поступающие\nархивы в место, определенное в выражении DumpLocation в abrt.conf\n\nЕсли КАТАЛОГ не определен, будет выбрано значение \nWatchCrashdumpArchiveDir из abrt.conf" ++msgstr "" ++"& [-vs] [-w НОМЕР] [-c МиБ] [КАТАЛОГ]\n" ++"\n" ++"\n" ++"Следит за указанным каналогом и распаковывает поступающие\n" ++"архивы в место, определенное в выражении DumpLocation в abrt.conf\n" ++"\n" ++"Если КАТАЛОГ не определен, будет выбрано значение \n" ++"WatchCrashdumpArchiveDir из abrt.conf" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -468,19 +535,74 @@ msgstr "Число параллельных потоков обработки. + msgid "Maximal cache size in MiB. Default is " + msgstr "Максимальный размер кэша в МиБ. По умолчанию:" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "Отключает аутентификацию" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Имя пользователя в системе поддержки Red Hat" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++"Пароль доступа к системе поддержки Red Hat. Если не указан, будет предложено " ++"его ввести вручную" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "Путь к SSL-сертификату uReport или тип сертификата" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "Если задан пароль, необходимо определить --username" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "Укажите --username или --certificate " ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "Укажите --username или --anonymous" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "Укажите --anonymous или --certificate" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "Недопустимое число аргументов" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Неизвестное значение параметра: «%s»\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "Пароль:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "Для продолжения необходимо ввести пароль.\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "Автоматический отчет для HTTP-подключений" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "Автоматический отчет для SSL-подключений" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "Автоматический отчет для анонимных подключений" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -491,7 +613,14 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "Формат: %s [-vd] ВРЕМЕННЫЙ_КАТАЛОГ КАТАЛОГ_ПОЛУЧАТЕЛЬ ФАЙЛ\n\n -v - подробный вывод\n -d - удалить архив после отправки\n ВРЕМЕННЫЙ_КАТАЛОГ - каталог, в который будут распакованы архивы\n КАТАЛОГ_ПОЛУЧАТЕЛЬ - каталог, в котором будут размещаться полученные архивы\n ФАЙЛ - имя файла отправляемого архива\n" ++msgstr "" ++"Формат: %s [-vd] ВРЕМЕННЫЙ_КАТАЛОГ ПОЛУЧАТЕЛЬ ФАЙЛ\n" ++"\n" ++" -v - подробный вывод\n" ++" -d - удалить архив после отправки\n" ++" ВРЕМЕННЫЙ_КАТАЛОГ - каталог, в который будут распакованы архивы\n" ++" ПОЛУЧАТЕЛЬ - каталог, в котором будут размещаться полученные архивы\n" ++" ФАЙЛ - имя файла отправляемого архива\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -598,13 +727,16 @@ msgstr "Не удалось создать временный файл «%s»" + 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:264 + #, 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 "" +@@ -612,11 +744,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [параметры] -d DIR\n\nАнализ протокола сбоев C/C++, создание хеша дублирования,\nрейтинга трассировки и определение сбойной функции в каталоге статистики сбоя DIR" ++msgstr "" ++"& [параметры] -d DIR\n" ++"\n" ++"Анализ протокола сбоев C/C++, создание хеша дублирования,\n" ++"рейтинга трассировки и определение сбойной функции в каталоге статистики " ++"сбоя DIR" + ++#. + #. * 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" +@@ -631,7 +770,9 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nРасчет и сохранение UUID дампа памяти в каталоге DIR" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"Расчет и сохранение UUID дампа памяти в каталоге DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -657,14 +798,20 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-vs] -d DIR\n\nРасчет и сохранение UUID и DUPHASH для каталога сбоев oops DIR" ++msgstr "" ++"& [-vs] -d DIR\n" ++"\n" ++"Расчет и сохранение UUID и 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\nРасчет и сохранение UUID и DUPHASH для каталога DIR со сбоями xorg" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Расчет и сохранение UUID и DUPHASH для каталога DIR со сбоями xorg" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -676,7 +823,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nРасчет и сохранение UUID и DUPHASH аварийных дампов python" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Расчет и сохранение UUID и DUPHASH аварийных дампов python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -691,10 +841,10 @@ msgid "Extracting the oops text from core" + msgstr "Извлечение текста ошибки ядра" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "Не удалось обработать: {0}:\n" + "{1}" +-msgstr "Не удалось обработать: {0}:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -715,7 +865,10 @@ msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [параметры] -d DIR\n\nАнализ дампа памяти в каталоге DIR и формирование протокола сбоя" ++msgstr "" ++"& [параметры] -d DIR\n" ++"\n" ++"Анализ дампа памяти в каталоге DIR и формирование протокола сбоя" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -727,6 +880,7 @@ 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" +@@ -737,7 +891,11 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\nСоздает трассировку coredump-level из дампа памяти и соответствующего двоичного файла" ++msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"Создает трассировку coredump-level из дампа памяти и соответствующего " ++"двоичного файла" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -765,7 +923,8 @@ msgstr "Выход по команде пользователя" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -775,13 +934,35 @@ msgid "" + " -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" ++" --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" +-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" ++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}" +@@ -789,7 +970,9 @@ msgstr "Не удалось открыть {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Дамп содержит ссылки на файлы debuginfo (всего {0}), {1} из них не установлен(о)" ++msgstr "" ++"Дамп содержит ссылки на файлы debuginfo (всего {0}), {1} из них не " ++"установлен(о)" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -812,21 +995,32 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Отправить дамп ядра? Он может содержать конфиденциальные данные. При отказе трассировка стека будет выполнена локально. Это может потребовать загрузки значительного объема данных." ++msgstr "" ++"Отправить дамп ядра? Он может содержать конфиденциальные данные. При отказе " ++"трассировка стека будет выполнена локально. Это может потребовать загрузки " ++"значительного объема данных." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"Создать данные трассировки стека локально? Это может потребовать загрузки " ++"значительного объема данных, но это необходимо для создания отчета." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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) и файлов (-f) в DIR до тех пор,\nпока они не станут меньше SIZE.\nФайлы из списка FILE удаляться не будут." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Удаление каталогов с данными сбоя (-d) и файлов (-f) в DIR до тех пор,\n" ++"пока они не станут меньше SIZE.\n" ++"Файлы из списка FILE удаляться не будут." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -878,7 +1072,9 @@ msgstr "Сигнал, отправленный из кода в простран + + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" +-msgstr "Сигнал, отправленный по событию таймера, ввода-вывода или асинхронному событию" ++msgstr "" ++"Сигнал, отправленный по событию таймера, ввода-вывода или асинхронному " ++"событию" + + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" +@@ -968,7 +1164,9 @@ 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" +@@ -995,7 +1193,11 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nСледить за журнальным файлом FILE, запускать PROG, когда он увеличится или будет замещен" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Следить за журнальным файлом FILE, запускать PROG, когда он увеличится или " ++"будет замещен" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1005,20 +1207,27 @@ msgstr "Не запускать PROG, если не найдены STR" + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "Произошла ошибка ядра вследствие конфликтов BIOS. К сожалению, подобные проблемы не решаются на уровне ядра." ++msgstr "" ++"Произошла ошибка ядра вследствие конфликтов BIOS. К сожалению, подобные " ++"проблемы не решаются на уровне ядра." + + #: ../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: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). Разработчики не могут диагностировать проблему в таких ядрах." ++msgstr "" ++"Возник сбой в работе ядра. Установленное в вашей системе ядро содержит " ++"несвободные компоненты и помечено флагами (flags:%s). Разработчики не могут " ++"диагностировать проблему в таких ядрах." + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1030,7 +1239,10 @@ msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" +-msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n\nИзвлекать данные о сбоях из FILE (или стандартного ввода)" ++msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Извлекать данные о сбоях из FILE (или стандартного ввода)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1038,6 +1250,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "Создавать каталог в DIR для каждого сбоя oops" +@@ -1080,7 +1293,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nИзвлекать данные о сбое Xorg из FILE (или стандартного ввода)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Извлекать данные о сбое Xorg из FILE (или стандартного ввода)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1094,10 +1310,13 @@ msgstr "Создавать каталог в DIR для каждого сбоя" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Не удалось задействовать сервер трассировки, так как сбой слишком обширен. Попробуйте обработать локально." ++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 +@@ -1120,10 +1339,10 @@ msgstr "Не удалось отправить заголовок HTTP длин + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Непредвиденный HTTP-ответ сервера: %d\n" + "%s" +-msgstr "Непредвиденный HTTP-ответ сервера: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1139,7 +1358,9 @@ msgstr "Неверный ответ сервера: отсутствует те + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "Сервер перетрассировки не может обработать пакет «%s.%s».\nОн входит в официальные репозитории «%s»?" ++msgstr "" ++"Сервер перетрассировки не может обработать пакет «%s.%s».\n" ++"Он входит в официальные репозитории «%s»?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1157,14 +1378,18 @@ msgstr "Отказ сервера." + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "Чтобы использовать возможности сервера трассировки, необходимо, чтобы «%s» был обычным файлом." ++msgstr "" ++"Чтобы использовать возможности сервера трассировки, необходимо, чтобы «%s» " ++"был обычным файлом." + + #: ../src/plugins/abrt-retrace-client.c:514 + #, c-format + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Размер архива составляет %lld байт, но отслеживающий сервер принимает не больше %lld байт." ++msgstr "" ++"Размер архива составляет %lld байт, но отслеживающий сервер принимает не " ++"больше %lld байт." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1192,7 +1417,9 @@ msgstr "Подготовка архива к передаче" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Размер архива - %lld байт, но отслеживающий сервер принимает архивы размером не более %lld байт." ++msgstr "" ++"Размер архива - %lld байт, но отслеживающий сервер принимает архивы размером " ++"не более %lld байт." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1241,7 +1468,9 @@ msgstr "Каталог поврежден и не может быть обраб + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Архив содержит недопустимые файлы (такие как символьные ссылки) и не может быть обработан." ++msgstr "" ++"Архив содержит недопустимые файлы (такие как символьные ссылки) и не может " ++"быть обработан." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1257,10 +1486,10 @@ msgstr "Задание отслеживания запущено" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "ID задания: %s\nПароль: %s\n" ++msgstr "ID задания: %s\n" ++"Пароль: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1268,10 +1497,10 @@ msgstr "Неверный ответ сервера: отсутствует X-Tas + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Статус задания: %s\n" + "%s\n" +-msgstr "Статус задания: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1284,7 +1513,9 @@ msgstr "Не удалось отправить заголовок HTTP длин + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Обработка не удалась. Повторите попытку позже, а в случае неудачи сообщите разработчикам." ++msgstr "" ++"Обработка не удалась. Повторите попытку позже, а в случае неудачи сообщите " ++"разработчикам." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1298,7 +1529,9 @@ msgstr "разрешить незащищенное соединение с се + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "не проверять перед отправкой архива, может ли сервер перетрассировки обработать данный пакет" ++msgstr "" ++"не проверять перед отправкой архива, может ли сервер перетрассировки " ++"обработать данный пакет" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1330,7 +1563,8 @@ 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" +@@ -1348,7 +1582,9 @@ msgstr "Пароль задания на сервере" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client <операция> [параметры]\nОперации: create, status, backtrace, log, batch, exploitable" ++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 +@@ -1380,14 +1616,18 @@ msgstr "Локальный отладчик GNU" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Загрузка отладочных пакетов и создание протоколов локально при помощи GDB" ++msgstr "" ++"Загрузка отладочных пакетов и создание протоколов локально при помощи GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Требует загрузки пакетов debuginfo, что может занять некоторое время и требует наличия свободного места на диске. Отличается от обработки на сервере тем, что не передаёт дамп удалённым компьютерам." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Требует загрузки пакетов debuginfo, что может занять некоторое время и " ++"требует наличия свободного места на диске. Отличается от обработки на " ++"сервере тем, что не передаёт дамп удалённым компьютерам." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1395,12 +1635,17 @@ msgstr "Отправка дампа памяти удалённому серве + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Отправляет дамп памяти на сервер для генерации протокола сбоя. Достоинства: не требуется загружать debuginfo. База данных на остлеживающем сервер более подробная, поэтому сервер может создавать более точные отчёты. Недостатки: отправляемый дамп содержит все данные сбойной программы, в том числе и личные." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Отправляет дамп памяти на сервер для генерации протокола сбоя. Достоинства: " ++"не требуется загружать debuginfo. База данных на остлеживающем сервер более " ++"подробная, поэтому сервер может создавать более точные отчёты. Недостатки: " ++"отправляемый дамп содержит все данные сбойной программы, в том числе и " ++"личные." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1425,10 +1670,13 @@ msgstr "Использование незащищенного подключен + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Введите «insecure», чтобы разрешить незащищенное подключение <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(предупреждение)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Введите «insecure», чтобы разрешить незащищенное подключение <a href=" ++"\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(предупреждение)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1442,7 +1690,9 @@ msgstr "Извлечение значимых строк из файла ~/.xses + 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." +@@ -1475,7 +1725,8 @@ msgstr "Сертификат подписан ненадежным издате + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "Тема сертификата «%s» не соответствует имени целевого компьютера «%s»." ++msgstr "" ++"Тема сертификата «%s» не соответствует имени целевого компьютера «%s»." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1600,7 +1851,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nИскать обновления на bodhi-сервере" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"Искать обновления на bodhi-сервере" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1608,30 +1862,35 @@ msgstr "Поиск обновлений" + + #: ../src/plugins/bodhi.c:440 + msgid "No updates for this package found" +-msgstr "Для этого пакета не найдено обновлений" ++msgstr "Нет обновлений этого пакета" + + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" +-msgstr "Локальная версия пакета новее, чем имеющиеся обновления" ++msgstr "Локальная версия пакета новее обнаруженных обновлений" + + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Доступно обновление, которое поможет исправить эту проблему. Команда установки: %s. Продолжить создание отчета?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Доступно обновление, которое поможет исправить эту проблему. Команда " ++"установки: %s. Продолжить создание отчета?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\nИщет в файлах разбитые сообщения о сбоях. Может их вывести и (или) удалить." ++msgstr "" ++"& [-v] [-od] ФАЙЛ...\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" +@@ -1644,7 +1903,7 @@ msgstr "«%s» обнаружил несколько проблемных кат + + #: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Формат: abrt-cli [--version] COMMAND [DIR]..." ++msgstr "Формат: abrt-cli [--version] КОМАНДА [DIR]..." + + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +@@ -1656,7 +1915,7 @@ msgstr "Удалить каталог DIR" + + #: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" +-msgstr "Анализировать и дать отчет по данным сбоя в DIR" ++msgstr "Анализировать и предоставить отчет по ошибкам в DIR" + + #: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" +@@ -1664,7 +1923,7 @@ msgstr "Вывод информации о DIR" + + #: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" +-msgstr "Печать числа недавних сбоев" ++msgstr "Вывод числа недавних сбоев" + + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +@@ -1672,13 +1931,16 @@ msgstr "Обработка нескольких проблем" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "Для получения дополнительной информации выполните «abrt-cli COMMAND --help»" ++msgstr "" ++"Для получения дополнительной информации выполните «abrt-cli КОМАНДА --help»" + + #: ../src/cli/list.c:127 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" ++"%Выполните «abrt-cli report %s», чтобы создать отчет на портале " ++"пользователей Red Hat\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1695,18 +1957,21 @@ msgstr "Показать подробный отчёт" + + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +-msgstr "Дать список лишь сбоев, более поздних, чем указанный момент времени" ++msgstr "Дать список сбоев, обнаруженных после указанного момента времени" + + #: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" +-msgstr "Дать список лишь сбоев, более ранних, чем указанный момент времени" ++msgstr "Дать список сбоев, обнаруженных до указанного момента времени" + + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "Функции автоматического создания отчетов отключены. \nЧтобы их включить, в режиме root выполните: abrt-auto-reporting enabled\n" ++msgstr "" ++"Функции автоматического создания отчетов отключены. \n" ++"Чтобы их включить, в режиме root выполните: abrt-auto-reporting enabled\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1727,16 +1992,18 @@ 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 "ABRT обнаружила %u сбой (сбоев). Для получения дополнительной информации запустите: abrt-cli list%s\n" ++msgstr "" ++"ABRT обнаружил %u сбой (сбоев). Для получения дополнительной информации " ++"выполните: abrt-cli list%s\n" + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1771,7 +2038,9 @@ msgstr "Для перехода к следующей проблеме нажм + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "Без аргумента --since будет осуществляться циклический переход между обнаруженными проблемами" ++msgstr "" ++"Если аргумент --since не указан, обнаруженные ошибки будут обрабатываться " ++"последовательно" + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +@@ -1781,7 +2050,9 @@ msgstr "Выбор сбоев, обнаруженных после заданн + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Передача дампа памяти удалённому серверу для анализа. В случае неудачи выполнить анализ локально" ++msgstr "" ++"Передача дампа памяти удалённому серверу для анализа. В случае неудачи " ++"выполнить анализ локально" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1789,10 +2060,16 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Отправляет дамп памяти на сервер для генерации протокола сбоя. По желанию анализ события может быть произведен локально. Локальный анализ также будет выполнен, если не удастся выполнить его удаленно. Достоинства: не требуется загружать debuginfo. База данных на остлеживающем сервере более полная, поэтому сервер может создавать более точные отчёты. Недостатки: отправляемый дамп содержит все данные сбойной программы, в том числе и конфиденциальные." ++msgstr "" ++"Отправляет дамп памяти на сервер для создания протокола сбоя. По желанию " ++"анализ события может быть произведен локально. Локальный анализ также будет " ++"выполнен, если не удастся выполнить его удаленно. Достоинства: не требуется " ++"загружать debuginfo. База данных на отслеживающем сервере более полная, " ++"поэтому сервер может создавать более точные отчеты. Недостатки: отправляемый " ++"дамп содержит все данные сбойной программы, в том числе и конфиденциальные." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1807,7 +2084,9 @@ msgstr "Установка пакетов для отладки ядра и со + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Требует установки пакетов debuginfo, что может занять значительное время и требует наличия дополнительного пространства." ++msgstr "" ++"Требует установки пакетов debuginfo, что может занять значительное время и " ++"требует наличия дополнительного пространства." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1821,7 +2100,9 @@ msgstr "Чтение параметров из каталога GConf" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Запуск «gconftool-2 --recursive-list /apps/executable» с сохранением данных в «gconf_subtree»." ++msgstr "" ++"Запуск «gconftool-2 --recursive-list /apps/executable» с сохранением данных " ++"в «gconf_subtree»." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1829,13 +2110,15 @@ msgstr "Сбор системных файлов конфигурации vim" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" +-msgstr "Чтение /etc/vimrc и /etc/gvimrc" ++msgstr "Сохранить /etc/vimrc и /etc/gvimrc" + + #: ../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 "Поиск файлов vimrc и gvimrc в /etc и их сохранение как system_vimrc и system_gvimrc." ++msgstr "" ++"Поиск файлов vimrc и gvimrc в /etc и их сохранение в system_vimrc и " ++"system_gvimrc." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1847,9 +2130,11 @@ msgstr "Получение .vimrc и .gvimrc из домашнего катал + + #: ../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 "Поиск .vimrc и .gvimrc в домашнем каталоге и их сохранение как user_vimrc и user_gvimrc." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Поиск .vimrc и .gvimrc в домашнем каталоге и их сохранение в user_vimrc и " ++"user_gvimrc." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +@@ -1857,7 +2142,7 @@ msgstr "Отправить отчет" + + #: ../src/plugins/post_report.xml.in.h:2 + msgid "Executed after the reporting is finished" +-msgstr "Вызов выполнен после окончания создания отчета" ++msgstr "Выполнено после создания отчета" + + #: ../src/plugins/post_report.xml.in.h:3 + msgid "Used for updating of the databases" +diff --git a/po/ru_RU.po b/po/ru_RU.po +index 4606c98..adceb3d 100644 +--- a/po/ru_RU.po ++++ b/po/ru_RU.po +@@ -1,21 +1,23 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/fedora-abrt/language/ru_RU/)\n" ++"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/fedora-" ++"abrt/language/ru_RU/)\n" ++"Language: ru_RU\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: ru_RU\n" +-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" ++"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +778,7 @@ 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" +@@ -756,7 +817,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +828,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +878,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1093,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1154,7 @@ 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 +@@ -1376,8 +1442,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1482,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1761,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1847,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1857,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1904,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/si.po b/po/si.po +index 98c8ca5..da84ab4 100644 +--- a/po/si.po ++++ b/po/si.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Sinhala (http://www.transifex.com/projects/p/fedora-abrt/language/si/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Sinhala (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/si/)\n" + "Language: si\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/sk.po b/po/sk.po +index e7a3e6d..79180a2 100644 +--- a/po/sk.po ++++ b/po/sk.po +@@ -10,17 +10,19 @@ + # Richard Marko , 2012 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Slovak (http://www.transifex.com/projects/p/fedora-abrt/language/sk/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Slovak (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/sk/)\n" + "Language: sk\n" + "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -49,7 +51,8 @@ msgstr "" + #: ../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" ++msgstr "" ++"Nedá sa pripojiť k správcovi siete NetworkManager cez zbernicu DBus: %s" + + #: ../src/applet/applet.c:267 + #, c-format +@@ -93,7 +96,9 @@ msgstr "Nedá sa zavrieť oznámenie: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -105,11 +110,15 @@ msgstr "Upozornenie" + #: ../src/applet/applet.c:834 + 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" ++msgstr "" ++"Oblasť upozornení pre ABRT applet, ktorý upozorňuje uživateľov na zistené " ++"problémy" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "PrekladateliaMichal Hriň jmoskovc Dušan Kazik " ++msgstr "" ++"PrekladateliaMichal Hriň jmoskovc Dušan Kazik " + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -132,6 +141,7 @@ msgid "Ignore forever" + msgstr "Ignorovať navždy" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Otvoriť" +@@ -146,6 +156,7 @@ msgstr "Vyskytol sa známy problém" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Nahlásiť" +@@ -188,14 +199,19 @@ msgstr "Nedá sa zapnúť neblokovaný režim pre kanál gio: %s" + 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í" ++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:1635 + 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" ++msgstr "" ++"& [-v] [ADRESÁR]...\n" ++"\n" ++"Aplet, ktorý upozorní používateľa na novo zistené problémy službou ABRT\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -216,10 +232,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -233,15 +248,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -306,7 +321,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c KONF.SÚBOR] -d ADRESÁR\n\nPožiada o databázu, uloží balík a názov komponentu" ++msgstr "" ++"& [-v] [-c KONF.SÚBOR] -d ADRESÁR\n" ++"\n" ++"Požiada o databázu, uloží balík a názov komponentu" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -369,7 +387,9 @@ msgstr "Nedá sa pristúpiť k problému a zmeniť ho" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Vykonávanie chown na adresár zlyhalo. Pre viac podrobností skontrolujte systémové záznamy." ++msgstr "" ++"Vykonávanie chown na adresár zlyhalo. Pre viac podrobností skontrolujte " ++"systémové záznamy." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -395,7 +415,9 @@ msgstr "Nedá sa odstrániť prvok „%s“ z adresára problému „%s“" + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "Názov '%s' bol stratený. Prosím, skontrolujte, či iná služba vlastniaca tento názov nie je spustená.\n" ++msgstr "" ++"Názov '%s' bol stratený. Prosím, skontrolujte, či iná služba vlastniaca " ++"tento názov nie je spustená.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -409,11 +431,16 @@ msgstr "Tento program musí byť spustený s oprávneniami administrátora." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "Údaje o probléme sú neúplné. Toto sa obvykle stáva, keď je problém zistený počas vypínania počítača alebo odhlasovania používateľa. Kvôli zachovaniu kvality hlásení o chybách, vám program ABRT neumožní odoslať tento problém. Ak máte čas a chcete pomôcť vývojárom pri vyriešení tohoto problému, bez obáv ich priamo kontaktujte." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"Údaje o probléme sú neúplné. Toto sa obvykle stáva, keď je problém zistený " ++"počas vypínania počítača alebo odhlasovania používateľa. Kvôli zachovaniu " ++"kvality hlásení o chybách, vám program ABRT neumožní odoslať tento problém. " ++"Ak máte čas a chcete pomôcť vývojárom pri vyriešení tohoto problému, bez " ++"obáv ich priamo kontaktujte." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -464,19 +491,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -594,7 +674,9 @@ msgstr "Nedá sa vytvoriť dočasný súbor „%s“" + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-msgstr "Nedá sa zapísať do „%s“. Problém „%s“ nebude odtránený z ignorovaných problémov „%s“" ++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:264 +@@ -608,11 +690,17 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nAnalyzuje C/C++ backtrace, generuje hash duplikát, hodnotenie backtrace, a identifikuje funkciu spôsobujúcu pád v pracovnom adresári DIR" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analyzuje C/C++ backtrace, generuje hash duplikát, hodnotenie backtrace, a " ++"identifikuje funkciu spôsobujúcu pád v pracovnom adresári DIR" + ++#. + #. * 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" +@@ -627,7 +715,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nSpočíta a uloží UUID coredump-u v pracovnom adresári DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Spočíta a uloží UUID coredump-u v pracovnom adresári DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -653,14 +744,20 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\nVypočíta a uloží UUID a DUPHASH pre oops správu v pracovnom adresári DIR" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Vypočíta a uloží UUID a DUPHASH pre oops správu v pracovnom adresári 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\nVypočíta a uloží UUID a DUPHASH pre adresár DIR so xorg problémami" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Vypočíta a uloží UUID a DUPHASH pre adresár DIR so xorg problémami" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -672,7 +769,9 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nSpočíta a uloží UUID a DUPHASH pádov Python aplikácií" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"Spočíta a uloží UUID a DUPHASH pádov Python aplikácií" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -687,8 +786,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -711,7 +809,10 @@ msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nAnalyzuje coredump v pracovnom adresárí DIR, generuje a ukladá backtrace" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"Analyzuje coredump v pracovnom adresárí DIR, generuje a ukladá backtrace" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -723,6 +824,7 @@ 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" +@@ -761,7 +863,8 @@ msgstr "Ukončuje sa na príkaz používateľa" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -771,7 +874,8 @@ msgid "" + " -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" ++" --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" +@@ -785,7 +889,9 @@ msgstr "Nie je možné otvoriť {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Coredump odkazuje na {0} debuginfo balíčkov, {1} z nich nie je nainštalovaných" ++msgstr "" ++"Coredump odkazuje na {0} debuginfo balíčkov, {1} z nich nie je " ++"nainštalovaných" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -808,21 +914,32 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Odoslať core dump? (Môže obsahovať citlivé údaje). Ak je Vaša odpoveď 'Nie', stacktrace bude vygenerovaný lokálne. (Môže byť nutné stiahnuť veľké množstvo dát)." ++msgstr "" ++"Odoslať core dump? (Môže obsahovať citlivé údaje). Ak je Vaša odpoveď 'Nie', " ++"stacktrace bude vygenerovaný lokálne. (Môže byť nutné stiahnuť veľké " ++"množstvo dát)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "Chcete lokálne vygenerovať záznam zásobníka? (Môže byť prevzaté veľké množstvo údajov, ale nahlásenie nemôže pokračovať bez záznamu zásobníka)." ++msgstr "" ++"Chcete lokálne vygenerovať záznam zásobníka? (Môže byť prevzaté veľké " ++"množstvo údajov, ale nahlásenie nemôže pokračovať bez záznamu zásobníka)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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\nZmaže pracovné adresáre (-d) alebo súbory (-f) v adresároch DIR tak, aby ich veľkosť bola menšia než SIZE.\nSúbory FILE sú ponechané (ignorované)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"Zmaže pracovné adresáre (-d) alebo súbory (-f) v adresároch DIR tak, aby ich " ++"veľkosť bola menšia než SIZE.\n" ++"Súbory FILE sú ponechané (ignorované)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -991,7 +1108,11 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nKontrolovať stav log súboru FILE, spustiť PROG v prípade, že sa súbor zväčší alebo je nahradený" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"Kontrolovať stav log súboru FILE, spustiť PROG v prípade, že sa súbor zväčší " ++"alebo je nahradený" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1014,7 +1135,10 @@ msgstr "" + 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." ++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:153 + #, c-format +@@ -1034,6 +1158,7 @@ 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: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" +@@ -1076,7 +1201,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nExtrahovať Xorg pád z FILE(súbor) (alebo zo štandardného vstupu)" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Extrahovať Xorg pád z FILE(súbor) (alebo zo štandardného vstupu)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1090,10 +1218,13 @@ msgstr "Vytvoriť adresár s problémom v DIR pre každý nájdený pád" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Kvôli priveľkému objemu dát nie je možné použiť retrace server. Skúste použiť lokálne generovanie." ++msgstr "" ++"Kvôli priveľkému objemu dát nie je možné použiť retrace server. Skúste " ++"použiť lokálne generovanie." + + #. 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,10 +1247,10 @@ msgstr "Nepodarilo sa odoslať HTTP hlavičku o dĺžke %d: NSS chyba %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Neočakávaná HTTP odpoveď zo servera: %d\n" + "%s" +-msgstr "Neočakávaná HTTP odpoveď zo servera: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1135,7 +1266,9 @@ msgstr "Neplatná odpoveď zo servera: chýba telo HTTP správy." + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "Server Retrace nie je schopný spracovať balík „%s.%s“.\nJe súčasťou oficiálnych repozitárov „%s“?" ++msgstr "" ++"Server Retrace nie je schopný spracovať balík „%s.%s“.\n" ++"Je súčasťou oficiálnych repozitárov „%s“?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1160,7 +1293,9 @@ msgstr "'%s' musí byť obyčajný súbor pre použitie Retrace serveru. " + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Objem dát potrebných k analýze pádu programu je %lld bajtov, retrace server však akceptuje maximálne %lld bajtov." ++msgstr "" ++"Objem dát potrebných k analýze pádu programu je %lld bajtov, retrace server " ++"však akceptuje maximálne %lld bajtov." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1188,7 +1323,9 @@ msgstr "Pripravuje sa archív na odovzdanie" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Veľkosť vášho archívu je %lld bajtov, retrace server však akceptuje maximálne %lld bajtov." ++msgstr "" ++"Veľkosť vášho archívu je %lld bajtov, retrace server však akceptuje " ++"maximálne %lld bajtov." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1212,7 +1349,8 @@ msgstr "Odovzdáva sa %lld bajtov\n" + #: ../src/plugins/abrt-retrace-client.c:699 + #, c-format + msgid "Uploading %d%%\n" +-msgstr "Odosiela sa %d%%\n\n" ++msgstr "Odosiela sa %d%%\n" ++"\n" + + #: ../src/plugins/abrt-retrace-client.c:711 + msgid "Failed to read from a pipe" +@@ -1231,13 +1369,17 @@ msgstr "Odoslanie úspešný" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Váš adresár s dátami o probléme je poškodený a nemôže byť spracovaný Retrace serverom." ++msgstr "" ++"Váš adresár s dátami o probléme je poškodený a nemôže byť spracovaný Retrace " ++"serverom." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Archív obsahuje špeciálne súbory (ako symbolické odkazy), a preto nemôže byť spracovaný." ++msgstr "" ++"Archív obsahuje špeciálne súbory (ako symbolické odkazy), a preto nemôže byť " ++"spracovaný." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1253,10 +1395,10 @@ msgstr "Retrace úloha začala" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Id úlohy: %s\nHeslo úlohy: %s\n" ++msgstr "Id úlohy: %s\n" ++"Heslo úlohy: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1264,10 +1406,10 @@ msgstr "Neplatná odpoveď zo servera: chýba X-Task-Status." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Stav úlohy: %s\n" + "%s\n" +-msgstr "Stav úlohy: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1280,7 +1422,9 @@ msgstr "Zlyhalo odosielanie HTTP hlavičky o dĺžke %d: NSS chyba %d." + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Úloha zlyhala. Prosím skúste úlohu odoslať neskôr. V prípade, že problém pretrváva, prosím nahláste daný problém." ++msgstr "" ++"Úloha zlyhala. Prosím skúste úlohu odoslať neskôr. V prípade, že problém " ++"pretrváva, prosím nahláste daný problém." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1294,7 +1438,9 @@ msgstr "povoliť nezabezpečené pripojenie k retrace serveru" + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "pred nahratím archívu nekontrolovať, či server retrace dokáže spracovať daný balík" ++msgstr "" ++"pred nahratím archívu nekontrolovať, či server retrace dokáže spracovať daný " ++"balík" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1376,14 +1522,18 @@ msgstr "Lokálny GNU Debbuger" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Stiahntuť debuginfo balíčky a vytvoriť backtrace lokálne s použitím GDB" ++msgstr "" ++"Stiahntuť debuginfo balíčky a vytvoriť backtrace lokálne s použitím GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Je potrebné stiahnuť debuginfo balíčky, čo môže trvať značné množstvo času a zabrať diskový priestor. Narozdiel od RetraceServer-u však coredump nie je odosielaný na vzdialený server." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Je potrebné stiahnuť debuginfo balíčky, čo môže trvať značné množstvo času a " ++"zabrať diskový priestor. Narozdiel od RetraceServer-u však coredump nie je " ++"odosielaný na vzdialený server." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1391,12 +1541,17 @@ msgstr "Odoslať výpis jadra na analýzu na vzdialený retrace server" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Nahrať coredump na server, ktorý vygeneruje a vráti backtrace. Výhody: nie je nutné sťahovať a inštalovať debuginfo balíčky. Databáza debuginfo balíkov Retrace serveru je obsiahlejšia, čo môže vplývať na výslednú kvalitu vygenerovaných backtrace. Nevýhody: coredump odoslaný na server obsahuje všetky dáta programu, ktorý spadol - môže obsahovať súkromné dáta." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Nahrať coredump na server, ktorý vygeneruje a vráti backtrace. Výhody: nie " ++"je nutné sťahovať a inštalovať debuginfo balíčky. Databáza debuginfo balíkov " ++"Retrace serveru je obsiahlejšia, čo môže vplývať na výslednú kvalitu " ++"vygenerovaných backtrace. Nevýhody: coredump odoslaný na server obsahuje " ++"všetky dáta programu, ktorý spadol - môže obsahovať súkromné dáta." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1421,10 +1576,13 @@ msgstr "Použiť nezabezpečené pripojenie alebo nie" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Pre povolenie nezabezpečeného pripojenia napíšte \"insecure\" - <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Pre povolenie nezabezpečeného pripojenia napíšte \"insecure\" - <a href=" ++"\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1438,7 +1596,9 @@ msgstr "Uložiť dôležité riadky zo súboru ~/.xsession-errors" + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Prehľadá súbor ~/.xsession-errors a uloží tie riadky, ktoré obsahujú názov vykonateľného súboru. Výsledok je uložený ako element 'xsession_errors'." ++msgstr "" ++"Prehľadá súbor ~/.xsession-errors a uloží tie riadky, ktoré obsahujú názov " ++"vykonateľného súboru. Výsledok je uložený ako element 'xsession_errors'." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1471,7 +1631,8 @@ msgstr "Certifikát je podpísaný nedôveryhodnou autoritou: '%s'." + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "Názov predmetu certifikátu '%s' nesúhlasí s cieľovým názvom hostiteľa '%s'." ++msgstr "" ++"Názov predmetu certifikátu '%s' nesúhlasí s cieľovým názvom hostiteľa '%s'." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1596,7 +1757,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]...\n\nVyhľadávať aktualizácie na bodhi serveri" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]...\n" ++"\n" ++"Vyhľadávať aktualizácie na bodhi serveri" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1614,9 +1778,11 @@ msgstr "Lokálna verzia balíka je novšia ako v dostupných aktualizáciách" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Existuje aktualizácia, ktorá môže vyriešiť Váš problém. Môžete ju nainštalovať spustením: %s. Chcete pokračovať v nahlásení chyby?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Existuje aktualizácia, ktorá môže vyriešiť Váš problém. Môžete ju " ++"nainštalovať spustením: %s. Chcete pokračovať v nahlásení chyby?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" +@@ -1700,7 +1866,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1727,12 +1894,15 @@ msgstr "Vypísať iba počet problémov bez akejkoľvek správy" + + #: ../src/cli/status.c:79 + msgid "Print only the problems more recent than specified timestamp" +-msgstr "Vypísať jedine problémy, ktoré nastali neskôr ako uvedená časová hranica" ++msgstr "" ++"Vypísať jedine problémy, ktoré nastali neskôr ako uvedená časová hranica" + + #: ../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 zistil %u problém(y/ov). Pre viac informácií spustite: abrt-cli list%s\n" ++msgstr "" ++"ABRT zistil %u problém(y/ov). Pre viac informácií spustite: abrt-cli " ++"list%s\n" + + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1777,7 +1947,9 @@ msgstr "" + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Odoslať výpis jadra na analýzu do vzdialeného servera retrace, alebo vykonať lokálnu analýzu, ak zlyhá vzdialená analýza." ++msgstr "" ++"Odoslať výpis jadra na analýzu do vzdialeného servera retrace, alebo vykonať " ++"lokálnu analýzu, ak zlyhá vzdialená analýza." + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1785,10 +1957,17 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Odošle coredump na server, ktorý spätne vygeneruje backtrace. Ak užívateľ nechce jeho coredump nikam odoslať, vykoná sa len lokálna analýza. Lokálne analýza je vykonaná v prípade, že vzdialená analýza zlyhá. Klady: žiadna potreba sťahovania debuginfo. Databáza retrace serveru je obsiahlejšia. Retrace server môže vygenerovať lepší backtrace. Zápory: coredump, ktorý odošlete obsahuje všetky údaje o spadnutom programe, vrátane Vaších osobných dát, ak sú nejaké." ++msgstr "" ++"Odošle coredump na server, ktorý spätne vygeneruje backtrace. Ak užívateľ " ++"nechce jeho coredump nikam odoslať, vykoná sa len lokálna analýza. Lokálne " ++"analýza je vykonaná v prípade, že vzdialená analýza zlyhá. Klady: žiadna " ++"potreba sťahovania debuginfo. Databáza retrace serveru je obsiahlejšia. " ++"Retrace server môže vygenerovať lepší backtrace. Zápory: coredump, ktorý " ++"odošlete obsahuje všetky údaje o spadnutom programe, vrátane Vaších osobných " ++"dát, ak sú nejaké." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1797,13 +1976,16 @@ msgstr "Analyzovať obsah jadra" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Nainštalovať debuginfo balíčky jadra, vygenerovať protokol a oops správu" ++msgstr "" ++"Nainštalovať debuginfo balíčky jadra, vygenerovať protokol a oops správu" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Je potrebné nainštalovať debuginfo balíčky jadra, čo môže trvať značné množstvo času a zabrať diskový priestor." ++msgstr "" ++"Je potrebné nainštalovať debuginfo balíčky jadra, čo môže trvať značné " ++"množstvo času a zabrať diskový priestor." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1817,7 +1999,9 @@ msgstr "Uložiť konfiguráciu aplikácie z adresára GConf" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Spúšťa gconftool-2 --recursive-list /apps/executable a ukladá dáta pod položkou 'gconf_subtree'." ++msgstr "" ++"Spúšťa gconftool-2 --recursive-list /apps/executable a ukladá dáta pod " ++"položkou 'gconf_subtree'." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1831,7 +2015,9 @@ msgstr "Uložiť /etc/vimrc a /etc/gvimrc" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Kontroluje prítomnosť vimrc a gvimrc súborov v adresári /etc a ukladá ich ako system_vimrc respektíve system_gvimrc." ++msgstr "" ++"Kontroluje prítomnosť vimrc a gvimrc súborov v adresári /etc a ukladá ich " ++"ako system_vimrc respektíve system_gvimrc." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1843,9 +2029,11 @@ msgstr "Uložiť .vimrc a .gvimrc z domovského adresára" + + #: ../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 "Kontroluje prítomnosť .vimrc a .gvimrc súborov v domovskom adresári a ukladá ich ako user_vimrc respektíve user_gvimrc." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Kontroluje prítomnosť .vimrc a .gvimrc súborov v domovskom adresári a ukladá " ++"ich ako user_vimrc respektíve user_gvimrc." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/sl.po b/po/sl.po +index b5e39b2..8977a27 100644 +--- a/po/sl.po ++++ b/po/sl.po +@@ -5,17 +5,20 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Slovenian (http://www.transifex.com/projects/p/fedora-abrt/language/sl/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Slovenian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/sl/)\n" + "Language: sl\n" +-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" ++"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " ++"n%100==4 ? 2 : 3);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +91,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +132,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +147,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +218,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +234,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +410,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +465,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +664,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +743,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +778,7 @@ 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" +@@ -756,7 +817,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +828,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +878,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1093,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1154,7 @@ 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,8 +1177,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1313,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1323,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1439,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1449,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1479,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1672,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1758,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1844,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1902,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/sq.po b/po/sq.po +index dcd84f2..d973e29 100644 +--- a/po/sq.po ++++ b/po/sq.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Albanian (http://www.transifex.com/projects/p/fedora-abrt/language/sq/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Albanian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/sq/)\n" + "Language: sq\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/sr.po b/po/sr.po +index b79ea5f..7d0b468 100644 +--- a/po/sr.po ++++ b/po/sr.po +@@ -6,17 +6,20 @@ + # Jiří Moskovčák , 2011 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Serbian (http://www.transifex.com/projects/p/fedora-abrt/language/sr/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Serbian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/sr/)\n" + "Language: sr\n" +-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " ++"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -89,7 +92,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -101,7 +106,9 @@ msgstr "Упозорење" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "Програмчић из обавештајне зоне који обавештава кориснике о проблемима нађеним помоћу ABRT-а" ++msgstr "" ++"Програмчић из обавештајне зоне који обавештава кориснике о проблемима " ++"нађеним помоћу ABRT-а" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -128,6 +135,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -142,6 +150,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Пријава" +@@ -212,10 +221,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +237,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -405,10 +413,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -460,19 +468,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -606,9 +667,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -683,8 +746,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -719,6 +781,7 @@ 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" +@@ -757,7 +820,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +831,8 @@ msgid "" + " -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" ++" --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" +@@ -816,7 +881,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1030,6 +1096,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1090,6 +1157,7 @@ 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 +@@ -1112,8 +1180,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1249,8 +1316,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1260,8 +1326,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1377,8 +1442,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1387,11 +1452,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1417,9 +1482,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1610,8 +1675,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1696,7 +1761,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1781,8 +1847,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1839,8 +1905,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/sr@latin.po b/po/sr@latin.po +index 039bf5e..e217e0e 100644 +--- a/po/sr@latin.po ++++ b/po/sr@latin.po +@@ -6,17 +6,20 @@ + # Jiří Moskovčák , 2011 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/fedora-abrt/language/sr@latin/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/fedora-" ++"abrt/language/sr@latin/)\n" + "Language: sr@latin\n" +-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " ++"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -89,7 +92,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -101,7 +106,9 @@ msgstr "Upozorеnjе" + #: ../src/applet/applet.c:834 + 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" ++msgstr "" ++"Programčić iz obavеštajnе zonе koji obavеštava korisnikе o problеmima " ++"nađеnim pomoću ABRT-a" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -128,6 +135,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -142,6 +150,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Prijava" +@@ -212,10 +221,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +237,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -405,10 +413,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -460,19 +468,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -606,9 +667,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -683,8 +746,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -719,6 +781,7 @@ 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" +@@ -757,7 +820,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +831,8 @@ msgid "" + " -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" ++" --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" +@@ -816,7 +881,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1030,6 +1096,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1090,6 +1157,7 @@ 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 +@@ -1112,8 +1180,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1249,8 +1316,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1260,8 +1326,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1377,8 +1442,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1387,11 +1452,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1417,9 +1482,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1610,8 +1675,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1696,7 +1761,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1781,8 +1847,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1839,8 +1905,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/sv.po b/po/sv.po +index a3cb63e..d960eb5 100644 +--- a/po/sv.po ++++ b/po/sv.po +@@ -10,17 +10,19 @@ + # Mick Ohrberg , 2013 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Swedish (http://www.transifex.com/projects/p/fedora-abrt/language/sv/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Swedish (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/sv/)\n" + "Language: sv\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -30,20 +32,26 @@ msgstr "Automatiskt felrapporteringsverktyg" + msgid "ABRT notification applet" + msgstr "ABRT notifieringsapplet" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" + msgstr "" ++"Rapporten som kommer skickas innehåller inte någon säkerhetskänslig " ++"information. På grund av detta är det inte nödvändigt att störa dig nästa " ++"gång för fortsatta åtgärder från dig.\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +-msgstr "" ++msgstr "Vill du aktivera automatisk sändning av kraschrapporter?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "" ++msgstr "Vill du aktivera automatisk sändning av anonyma kraschrapporter?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -75,10 +83,11 @@ msgstr "Ett problem har upptäckts" + msgid "A problem in the %s package has been detected" + msgstr "Ett problem i paketet %s har upptäckts" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s och diagnostikdata har skickats" + + #: ../src/applet/applet.c:589 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 +@@ -91,12 +100,21 @@ msgstr "Det går inte att köra ”%s”" + msgid "Can't close notification: %s" + msgstr "Kan inte stänga notifikation: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" ++"Du står i begrepp att tysta notifieringar om ett visst problem. Du kommer " ++"aldrig mer se en notifieringsbubbla om detta problem igen, dock kommer ABRT " ++"upptäcka det och du kommer kunna rapportera det från ABRT:s grafiska " ++"gränssnitt.\n" ++"\n" ++"Vill du fortsätta?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -105,11 +123,15 @@ msgstr "Varning" + #: ../src/applet/applet.c:834 + 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" ++msgstr "" ++"Panelprogram för notifieringsområdet för att notifiera användaren om saker " ++"som upptäckts av ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "Magnus Larsson \nGöran Uddeborg " ++msgstr "" ++"Magnus Larsson \n" ++"Göran Uddeborg " + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -132,6 +154,7 @@ msgid "Ignore forever" + msgstr "Ignorera alltid" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Öppna" +@@ -146,6 +169,7 @@ 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:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Rapport" +@@ -188,40 +212,55 @@ msgstr "Kan inte slå på ej blockerande läge för gio-kanal: %s" + 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" ++msgstr "" ++"Det gick inte att koppla till sessionshanteraren: '%s', notis kan komma att " ++"visas igen vid nästa inloggning" + + #: ../src/applet/applet.c:1635 + 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" ++msgstr "" ++"& [-v] [KAT]...\n" ++"\n" ++"Panelprogram som meddelar användare när nya problem upptäcks av ABRT\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Fråga före en katalog stjäls" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Skicka automatiskt uReport" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "Förkortad rapportering" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "Tyst förkortad rapportering" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" ++"Filen med minnesdumpen behövs för att skapa stackspår vilket är en åtgärd " ++"som kostar tid och utrymme. ABRT tillhandahåller en tjänst som genererar " ++"stackspåret från en minnesdump men du måste skicka minnesdumpen till denna " ++"tjänst. Med detta alternativ avaktiverat kommer ABRT skicka minnesdumpen " ++"utan att fråga." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" + "ABRT stores problem data in directories. Whenever ABRT needs writable " +@@ -229,31 +268,50 @@ msgid "" + "directory. With this option disabled ABRT will move the problem directory " + "without asking." + msgstr "" ++"ABRT lagrar problemdata i kataloger. När ABRT behöver en skrivbar katalog " ++"flyttas katalogen från systemplatsen till din hemkatalog. Med detta " ++"alternativ avaktiverat kommer ABRT flytta problemkatalogen utan att fråga." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" ++"uReport är en kort och helt anonym beskrivning av problemet. ABRT använder " ++"uReports för snabb global detektering av dubbletter. I " ++"standardkonfigurationen skickas uReport i början av rapportprocessen. Med " ++"detta alternativ aktiverat skickas uReport:er automatiskt omedelbart efter " ++"att problemet upptäcks." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" ++"Med detta alternativ aktiverat kommer rapporteringsprocessen som startas " ++"genom att klicka på knappen Rapport i problemnotifieringsbubblan att " ++"avbrytas efter att en uReport skickats. Du kan alltid använda " ++"standardbläddraren för problem för att avsluta rapporten." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" ++" Med detta alternativ aktiverat visar ABRT aldrig notifieringar om " ++"rapporterade problem. Det har endast någon verkan om förkortad rapportering " ++"är aktiverat." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "Fråga före minnesutskrifter skickas" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" +@@ -261,24 +319,31 @@ msgid "" + "access if possibly sensitive data are dected." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "Begär privat rapport för känslig information" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Notifiera om ofullständiga problem" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" ++"Ofullständiga problem upptäcks medan datorn stängs av eller användaren " ++"loggar ut. För att kunna skapa användbara problemrapporter kommer ABRT inte " ++"tillåta dig att skicka dessa problem." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +-msgstr "" ++msgstr "_Stäng" + + #: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" +@@ -306,7 +371,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c KONFFIL] -d KAT\n\nFråga paketdatabasen och spara paketnamn och komponentnamn" ++msgstr "" ++"& [-v] [-c KONFFIL] -d KAT\n" ++"\n" ++"Fråga paketdatabasen och spara paketnamn och komponentnamn" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -369,7 +437,9 @@ msgstr "Kan inte komma åt problemet för modifikation" + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Chownoperationen på katalogen misslyckades. Kolla systemloggarna för fler detaljer." ++msgstr "" ++"Chownoperationen på katalogen misslyckades. Kolla systemloggarna för fler " ++"detaljer." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -395,7 +465,9 @@ msgstr "Kan inte radera elementet '%s' från problemkatalogen '%s'" + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "Namnet ”%s” har förlorats, kontrollera om andra tjänster som äger namnet inte kör.\n" ++msgstr "" ++"Namnet ”%s” har förlorats, kontrollera om andra tjänster som äger namnet " ++"inte kör.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -409,11 +481,16 @@ msgstr "Detta program måste köra som root." + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "Probleminformationen är inte komplett. Detta händer vanligen när ett problem upptäcks medan datorn stängs ner eller en anvädare loggar ut. För att ge värefulla problemrapporter kommer ABRT inte att låta dig skicka in detta problem. Om du har tid och vill hjälpa utvecklarna med att lösa detta problem, kontakta dem direkt." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" ++"Probleminformationen är inte komplett. Detta händer vanligen när ett problem " ++"upptäcks medan datorn stängs ner eller en anvädare loggar ut. För att ge " ++"värefulla problemrapporter kommer ABRT inte att låta dig skicka in detta " ++"problem. Om du har tid och vill hjälpa utvecklarna med att lösa detta " ++"problem, kontakta dem direkt." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -450,7 +527,15 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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" ++msgstr "" ++"& [-vs] [-w ANT] [-c MiB] [SÄNDNINGSKATALOG]\n" ++"\n" ++"\n" ++"Bevakar SÄNDNINGSKATALOG och packar upp inkommande arkiv till DumpLocation\n" ++"angiven i abrt.conf\n" ++"\n" ++"Om SÄNDNINGSKATALOG inte anges används ett värde på alternativet\n" ++"WatchCrashdumpArchiveDir från abrt.conf" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -464,19 +549,76 @@ msgstr "Antal samtidiga arbetare. Standard är " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximal cachestorlek i MiB. Standard är " + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " ++msgstr "& [ " ++ ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:251 ++msgid "Invalid number of arguments" ++msgstr "Fel antal argument" ++ ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" ++msgstr "Okänt parametervärde: '%s'\n" ++ ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" + msgstr "" + ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -488,71 +630,94 @@ msgid "" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" + msgstr "" ++"Användning: %s [-vd] ABRT_SPOLKAT SKICKA_KAT FILNAMN\n" ++"\n" ++" -v - Utförlig\n" ++" -d - Ta bort skickat arkiv\n" ++" ABRT_SPOLKAT - Katalog där korrekt skickade arkiv packas upp\n" ++" SKICKA_KAT - Katalog där skickade arkiv lagras\n" ++" FILNAMN - Skickat arkivs filnamn\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Inte en katalog: ”{0}”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:111 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Hoppar över: ”{0}” (börjar med ett snedstreck)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:114 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Hoppar över: ”{0}” (börjar med en punkt)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:117 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Hoppar över: ”{0}” (innehåller ..)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:120 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Hoppar över: ”{0}” (innehåller blanktecken)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:123 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Hoppar över: ”{0}” (innehåller tabulator)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:128 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Kan inte byta katalog till ”{0}”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:139 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Okänd filtyp: ”{0}”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:144 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "Kan inte skapa en arbetskatalog i ”{0}”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:155 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "Kan inte flytta ”{0}” till ”{1}”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:160 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "Kan inte kopiera ”{0}” till ”{1}”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:164 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "Verifieringsfel på ”{0}”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:166 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "Packar upp ”{0}”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:170 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "Kan inte skapa katalogen ”{0}”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:174 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "Kan inte packa upp ”{0}”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-upload.in:198 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "”{0}” behandlad" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -594,13 +759,17 @@ msgstr "Det går inte att skapa temporärfilen '%s'" + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" +-msgstr "Det går inte skriva till '%s'. Problem '%s' kommer inte att tas bort från ignorerade problem '%s'" ++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:264 + #, 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" ++msgstr "" ++"Det går inte att döpa om '%s' till '%s'. Borttagning av problem '%s' " ++"misslyckades" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" +@@ -608,11 +777,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [flaggor] -d KAT\n\nAnalyserar C/C++-stackspår, genererar duplikatkontrollsumma, \nstackspårsbedömning och identifierar krashfunktioner i problemkatalogen\nKAT" ++msgstr "" ++"& [flaggor] -d KAT\n" ++"\n" ++"Analyserar C/C++-stackspår, genererar duplikatkontrollsumma, \n" ++"stackspårsbedömning och identifierar krashfunktioner i problemkatalogen\n" ++"KAT" + ++#. + #. * 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" +@@ -627,40 +803,54 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d KAT\n\nBeräknar och sparar UUID för minnesdumpar i problemkatalogen KAT" ++msgstr "" ++"& [-v] -d KAT\n" ++"\n" ++"Beräknar och sparar UUID för minnesdumpar i problemkatalogen KAT" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "Analyserar minnesdumpen ”%s”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "Saknat bygg-id: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "Användning: %s [-v] [-o UTFIL] -c MINNESFIL" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "MINNESFIL är inte angiven" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d KAT\n\nBeräknar och sparar UUID och DUPHASH för oops-problemfor oops problemkatalogen KAT" ++msgstr "" ++"& [-v] -d KAT\n" ++"\n" ++"Beräknar och sparar UUID och DUPHASH för oops-problemfor oops " ++"problemkatalogen KAT" + + #: ../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 KAT\n\nBeräknar och sparar UUID och DUPHASH för xorgproblemkatalogen KAT" ++msgstr "" ++"& [-v] -d KAT\n" ++"\n" ++"Beräknar och sparar UUID och DUPHASH för xorgproblemkatalogen KAT" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -672,7 +862,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d KAT\n\nBeräknar och sparar UUID och DUPHASH för python-kraschdumpar" ++msgstr "" ++"& [-v] -d KAT\n" ++"\n" ++"Beräknar och sparar UUID och DUPHASH för python-kraschdumpar" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -687,10 +880,10 @@ msgid "Extracting the oops text from core" + msgstr "Extraherar oops-texten från kärndumpen" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "Kan inte bearbeta {0}:\n" + "{1}" +-msgstr "Kan inte bearbeta {0}:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -700,18 +893,25 @@ msgstr "Kan inte extrahera oops-meddelandet: ”{0}”" + msgid "Oops text extracted successfully" + msgstr "Oops-texten extraherad" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" ++"Kärnloggen indikerar att hårdvarufel inträffat.\n" ++"Detta är troligen inte ett mjukvaruproblem.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [flaggor] -d KAT\n\nAnnalyserar minnesdumpar i problemkatalogen KAT, genererar och sparar stackspår" ++msgstr "" ++"& [flaggor] -d KAT\n" ++"\n" ++"Annalyserar minnesdumpar i problemkatalogen KAT, genererar och sparar " ++"stackspår" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -723,6 +923,7 @@ 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" +@@ -733,7 +934,10 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d KAT\n\nSkapar stackspår på kärndumpsnivå från minnesdump och tillhörande binär" ++msgstr "" ++"& [-v] [-r] -d KAT\n" ++"\n" ++"Skapar stackspår på kärndumpsnivå från minnesdump och tillhörande binär" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -757,11 +961,13 @@ msgstr "Fel: %s" + msgid "Exiting on user command" + msgstr "Avslutar på användarens kommando" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:88 + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -771,13 +977,34 @@ msgid "" + " -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" ++" --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" + msgstr "" ++"Användning: %s [-vy] [--ids=BYGG_ID_FIL]\n" ++" [--tmpdir=TMPKAT] [--cache=CACHEKAT[:FELSÖKNKAT1:FELSÖKNKAT2=…]] [--" ++"size_mb=STRL]\n" ++" [-e, --exact=SÖKVÄG[:SÖKVÄG]...]\n" ++"\n" ++"Installerar felsökningsinformation för alla bygg-id:n som finns uppräknade i\n" ++"BYGG_ID_FIL till CACHEKAT, och använder TMPKAT som ett tillfälligt\n" ++"förberedelseområde. Gamla filer i CACHEKAT raderas tills det är mindre än\n" ++"STRL.\n" ++"\n" ++" -v Var utförlig\n" ++" -y Icke interaktiv, anta svaret ”Ja” på alla frågor\n" ++" --ids Standardvärde: build_ids\n" ++" --tmpdir Standardvärde: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Standardvärde: /var/cache/abrt-di\n" ++" --size_mb Standardvärde: 4096\n" ++" -e,--exact Hämta endast angivna filer\n" ++" --repo Mönster att använda vid sökning efter förråd.\n" ++" Standardvärde: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -785,15 +1012,18 @@ msgstr "Kan inte öppna {0}: {1}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "Minnesdumpen refererar {0} felsökningsfiler, {1} av dem är inte installerade" ++msgstr "" ++"Minnesdumpen refererar {0} felsökningsfiler, {1} av dem är inte installerade" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} av debuginfo-filer är inte installerade" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Saknar efterfrågad fil: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -808,21 +1038,31 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Ok att ladda upp kärndumpen? (Den kan innehålla känslig data). Om du svarar 'Nej' kommer en stackspårning att skapas lokalt. (Det kan komma att ladda ner en stor mängd data)." ++msgstr "" ++"Ok att ladda upp kärndumpen? (Den kan innehålla känslig data). Om du svarar " ++"'Nej' kommer en stackspårning att skapas lokalt. (Det kan komma att ladda " ++"ner en stor mängd data)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "Vill du skapa en stackspårning lokalt? (Det kan komma att ladda hem en stor mängd data men rapporting kan inte fortsätta utan stackspårning)." ++msgstr "" ++"Vill du skapa en stackspårning lokalt? (Det kan komma att ladda hem en stor " ++"mängd data men rapporting kan inte fortsätta utan stackspårning)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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 STORLEK:KAT]… [-f STORLEK:KAT]… [-p KAT] [FIL]…\n\nRaderar problemkataloger (-d) eller filer (-f) i KAT tills de är mindre än\nSTORLEK. FILer bevaras (raderas aldrig)." ++msgstr "" ++"& [-v] [-d STORLEK:KAT]… [-f STORLEK:KAT]… [-p KAT] [FIL]…\n" ++"\n" ++"Raderar problemkataloger (-d) eller filer (-f) i KAT tills de är mindre än\n" ++"STORLEK. FILer bevaras (raderas aldrig)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -836,37 +1076,44 @@ msgstr "Radera filer inuti denna katalog" + msgid "Preserve this directory" + msgstr "Bevara denna katalog" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "Kan inte starta ”%s”, felmeddelandet var: ”%s”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "Inte ett tal i filen ”%s”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Användning: %s [-v]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "" ++msgstr "Kan inte få aktuell arbetskatalog eftersom den förmodligen raderats" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "Ett fel var redan rapporterat om detta problem:" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "En uReport är redan skickad, skickar den inte igen" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport misslyckades med slutkod %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -968,7 +1215,8 @@ msgstr "Åtkomst bortom filslut, ogiltig adress, ojusterad åtkomst, etc." + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "Det går inte att ta reda på signalnummer och utföra exploaterbarhetsanalys\n" ++msgstr "" ++"Det går inte att ta reda på signalnummer och utföra exploaterbarhetsanalys\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +@@ -991,30 +1239,41 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]… FIL PROG [ARG]\n\nBetrakta loggfilen FIL, kör PROG när den växer eller byts ut" ++msgstr "" ++"& [-vs] [-F STR]… FIL PROG [ARG]\n" ++"\n" ++"Betrakta loggfilen FIL, kör PROG när den växer eller byts ut" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" + msgstr "Kör inte PROG om det inte finns några STR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++"Ett kärnproblem inträffade på grund av trasigt BIOS. Tyvärr går sådana " ++"problem inte att rätta utav kärnutvecklare." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++"Ett kärnproblem har inträffat, men din hårdvara stödjs inte, därför kan inte " ++"kärnutvecklare fixa detta problem." + + #: ../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." ++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:153 + #, c-format +@@ -1026,7 +1285,10 @@ 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)" ++msgstr "" ++"& [-vusoxm] [-d KAT]/[-D] [FIL]\n" ++"\n" ++"Extrahera en oops från FIL (eller standard in)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1034,6 +1296,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "Skapa ny problemkatalog i KAT för varje oops som hittas" +@@ -1058,9 +1321,10 @@ msgstr "Begränsa skapandet av problemkataloger till 1 per sekund" + msgid "Print search string(s) to stdout and exit" + msgstr "Skriv söksträngar till standard ut och avsluta" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "Misslyckades att kompilera reguljäruttryck" + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +@@ -1076,7 +1340,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d KAT]/[-D] [FIL]\n\nExtrahera en Xorg-krasch från FIL (eller standard in)" ++msgstr "" ++"& [-vsoxm] [-d KAT]/[-D] [FIL]\n" ++"\n" ++"Extrahera en Xorg-krasch från FIL (eller standard in)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1090,10 +1357,13 @@ msgstr "Skapa problemkatalog i KAT för varje krasch som hittas" + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Spårservern kan inte användas för att kraschen är för stor. Försök göra spår lokalt." ++msgstr "" ++"Spårservern kan inte användas för att kraschen är för stor. Försök göra " ++"spår lokalt." + + #. 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,10 +1386,10 @@ msgstr "Misslyckades att skicka HTTP-huvud med längden %d: NSS-fel %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Oväntat HTTP-svar från servern: %d\n" + "%s" +-msgstr "Oväntat HTTP-svar från servern: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1135,7 +1405,9 @@ msgstr "Ogiltigt svar från servern: HTTP-meddelandekroppen saknas." + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "Spårservern kan inte berabeta paketet '%s.%s'.\nÄr det en del av de officiella förråden för '%s'?" ++msgstr "" ++"Spårservern kan inte berabeta paketet '%s.%s'.\n" ++"Är det en del av de officiella förråden för '%s'?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1160,7 +1432,9 @@ msgstr "'%s' måste vara en vanlig fil för att kunna använda fjärrspårserver + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Storleken på din krash är %lld byte, men spårservern godtar endast krascher mindre än eller lika med %lld byte." ++msgstr "" ++"Storleken på din krash är %lld byte, men spårservern godtar endast krascher " ++"mindre än eller lika med %lld byte." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1188,7 +1462,9 @@ msgstr "Förbereder ett arkiv att skicka" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Storleken på ditt arkiv är %lld byte, men spårservern godtar endast arkiv mindre än eller lika med %lld byte." ++msgstr "" ++"Storleken på ditt arkiv är %lld byte, men spårservern godtar endast arkiv " ++"mindre än eller lika med %lld byte." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1237,7 +1513,9 @@ msgstr "Din problemkatalog är trasig och kan inte bearbetas av spårservern." + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "Arkivet innehåller elaka filer (såsom symboliska länkar) och kan därför inte bearbetas." ++msgstr "" ++"Arkivet innehåller elaka filer (såsom symboliska länkar) och kan därför inte " ++"bearbetas." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1253,10 +1531,10 @@ msgstr "Spårningsjobb startat" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Uppgifts-id: %s\nUppgiftslösenord: %s\n" ++msgstr "Uppgifts-id: %s\n" ++"Uppgiftslösenord: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1264,10 +1542,10 @@ msgstr "Ogiltigt svar från servern: X-Task-Status saknas." + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Uppgiftsstatus: %s\n" + "%s\n" +-msgstr "Uppgiftsstatus: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1280,7 +1558,9 @@ msgstr "Misslyckades att skicka HTTP-huvud av längden %d: NSS-fel %d." + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Spårningen misslyckades. Försök igen senare och om problemet kvarstår rapportera gärna detta fel." ++msgstr "" ++"Spårningen misslyckades. Försök igen senare och om problemet kvarstår " ++"rapportera gärna detta fel." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1294,7 +1574,9 @@ msgstr "tillåt osäker förbindelse till spårservern" + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "kontrollera inte om spårservern kan berabeta det givna paketet före arkivet skickas" ++msgstr "" ++"kontrollera inte om spårservern kan berabeta det givna paketet före arkivet " ++"skickas" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1344,7 +1626,9 @@ msgstr "lösenord på din uppgift på servern" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client <åtgärd> [flaggor]\nÅtgärder: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client <åtgärd> [flaggor]\n" ++"Åtgärder: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1376,14 +1660,18 @@ msgstr "Lokal GNU-felsökare" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Hämta paket med felsökningsinformation och generera stackspår lokalt med GDB" ++msgstr "" ++"Hämta paket med felsökningsinformation och generera stackspår lokalt med GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Behöver hämta paket med felsökningsinformation, vilket kan ta en hel del tid, och använda diskutrymme. Men, till skillnad mot RetraceServer, skickar inte en kärndump till fjärrmaskiner." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Behöver hämta paket med felsökningsinformation, vilket kan ta en hel del " ++"tid, och använda diskutrymme. Men, till skillnad mot RetraceServer, skickar " ++"inte en kärndump till fjärrmaskiner." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1391,12 +1679,18 @@ msgstr "Skickar kärndump till fjärrspårningsserver för analys" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Skickar kärndump till en server, vilken genererar ett stackspår och returnerar det. Fördelar: inget behov av att hämta felsökningsinformation. Spårningsserverns databas över felsökningsinformation är mer komplett. Spårningsservern kan generera bättre stackspår. Nackdelar: kärndumpen du skickar innehåller all data från det kraschade programmet, inklusive eventuell personlig information." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Skickar kärndump till en server, vilken genererar ett stackspår och " ++"returnerar det. Fördelar: inget behov av att hämta felsökningsinformation. " ++"Spårningsserverns databas över felsökningsinformation är mer komplett. " ++"Spårningsservern kan generera bättre stackspår. Nackdelar: kärndumpen du " ++"skickar innehåller all data från det kraschade programmet, inklusive " ++"eventuell personlig information." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1421,10 +1715,13 @@ msgstr "Huruvida en osäker förbindelse skall användas eller ej" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Skriv ”insecure” för att tillåta en osäker förbindelse <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Skriv ”insecure” för att tillåta en osäker förbindelse <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1438,7 +1735,9 @@ msgstr "Spara relevanta rader från filen ~/.xsession-errors" + msgid "" + "Scans through ~/.xsession-errors file and saves those lines which contain " + "executable's name. The result is saved as 'xsession_errors' element." +-msgstr "Söker igenom filen ~/.xsession-errors och sparar de rader som innehåller progranamn. Resultatet sparas som elementet ”xsession_errors”." ++msgstr "" ++"Söker igenom filen ~/.xsession-errors och sparar de rader som innehåller " ++"progranamn. Resultatet sparas som elementet ”xsession_errors”." + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1596,7 +1895,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[UTGÅVA]] (-b ID1[,ID2,…] | PKT-NAMN) [PKT-NAMN]…\n\nSök efter uppdateringar på bodhi-servern" ++msgstr "" ++"& [-v] [-r[UTGÅVA]] (-b ID1[,ID2,…] | PKT-NAMN) [PKT-NAMN]…\n" ++"\n" ++"Sök efter uppdateringar på bodhi-servern" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1609,21 +1911,28 @@ msgstr "Inga uppdateringar av detta paket hittades" + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" +-msgstr "Den lokala versionen av paketet är nyare än de tillgängliga uppdateringarna" ++msgstr "" ++"Den lokala versionen av paketet är nyare än de tillgängliga uppdateringarna" + + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Det finns en uppdatering som kanske fixar till problem. Du kan installera den genom att köra: %s. Vill du fortsätta med buggrapporteringen?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Det finns en uppdatering som kanske fixar till problem. Du kan installera " ++"den genom att köra: %s. Vill du fortsätta med buggrapporteringen?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FIL...\n\nGranskar filer för splittrade oopsmeddelanden. Kan visa och/eller radera dem." ++msgstr "" ++"& [-v] [-od] FIL...\n" ++"\n" ++"Granskar filer för splittrade oopsmeddelanden. Kan visa och/eller radera dem." ++"" + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1642,9 +1951,10 @@ msgstr "”%s” identifierar mer an en problemkatalog" + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "Användning: abrt-cli [--version] KOMMANDO [KAT]…" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "Lista problem [i KAT]" + + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" +@@ -1662,9 +1972,10 @@ msgstr "Skriv ut information om KAT" + msgid "Print the count of the recent crashes" + msgstr "Visa antalet nyliga krascher" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:153 + msgid "Process multiple problems" +-msgstr "" ++msgstr "Bearbeta flera problem" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +@@ -1680,9 +1991,10 @@ msgstr "" + msgid "& list [options] [DIR]..." + msgstr "& list [flaggor] [KAT]…" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:188 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "Lista endast orapporterade problem" + + #. deprecate -d option with --pretty=full + #: ../src/cli/list.c:190 ../src/cli/list.c:243 +@@ -1697,12 +2009,18 @@ msgstr "Visa bara problem nyare än angivna tidsstämpel" + msgid "List only the problems older than specified timestamp" + msgstr "Visa bara problem äldre än angivna tidsstämpel" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" ++"Funktionen automatrapportering är avaktiverad. Överväg att aktivera den " ++"genom\n" ++"att köra ”abrt-auto-reporting enabled” som en användare med root-" ++"rättigheter\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1732,52 +2050,65 @@ msgstr "Visa bara problem nyare än angivna tidsstämpel" + #: ../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 har upptäckt '%u' problem. För mer information, kör: abrt-cli list%s\n\n" ++msgstr "" ++"ABRT har upptäckt '%u' problem. För mer information, kör: abrt-cli list%s\n" ++"\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/report.c:28 + msgid "& report [options] DIR..." +-msgstr "" ++msgstr "& rapport [flaggor] KAT…" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/report.c:38 + msgid "Remove PROBLEM_DIR after reporting" +-msgstr "" ++msgstr "Ta bort PROBLEMKAT efter att ha rapporterat" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/report.c:71 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "Tar bort ”%s”" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Åtgärder: remove(rm), info(i), skip(s):" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Åtgärder: remove(rm), report(e), info(i), skip(s):" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/process.c:77 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "Rapporterar ”%s”" + ++# translation auto-copied from project abrt, version master, document abrt + #. dummy must be free because the function ask allocate memory + #: ../src/cli/process.c:133 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "För nästa problem tryck RETUR:" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "" ++msgstr "Utan argumentet --since, itererar över alla upptäckta problem." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "Väljer endast problem upptäckta efter tidsstämpeln" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Skicka en kärndump till fjärrspårservern för analys eller analysera lokalt om fjärranalysen inte fungerar." ++msgstr "" ++"Skicka en kärndump till fjärrspårservern för analys eller analysera lokalt " ++"om fjärranalysen inte fungerar." + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1785,10 +2116,17 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Skickar kärndump till en server som skapar ett stackspår och skickar det tillbaka. Om en användare in vill ladda upp kärndumpen någonstans görs istället en lokal analys. Fördelar: inget behov av att hämta felsökningsinformation. Spårserverns databas över felsökningsinformation är mer komplett. Spårservern kan generera bättre stackspår. Nackdelar: kärndumpen du skickar innehåller all data från det kraschade programmet, inklusive eventuell personlig information." ++msgstr "" ++"Skickar kärndump till en server som skapar ett stackspår och skickar det " ++"tillbaka. Om en användare in vill ladda upp kärndumpen någonstans görs " ++"istället en lokal analys. Fördelar: inget behov av att hämta " ++"felsökningsinformation. Spårserverns databas över felsökningsinformation är " ++"mer komplett. Spårservern kan generera bättre stackspår. Nackdelar: " ++"kärndumpen du skickar innehåller all data från det kraschade programmet, " ++"inklusive eventuell personlig information." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1797,13 +2135,16 @@ msgstr "Analysera VM-kärna" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Installera kärnans felsökningspaket, generera kärnlogg och oops-meddelanden" ++msgstr "" ++"Installera kärnans felsökningspaket, generera kärnlogg och oops-meddelanden" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Behöver installera paket med felsökningsinformation för kärnan, vilket kan ta en hel del tid, och använda diskutrymme." ++msgstr "" ++"Behöver installera paket med felsökningsinformation för kärnan, vilket kan " ++"ta en hel del tid, och använda diskutrymme." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1817,7 +2158,9 @@ msgstr "Spara konfigurationen från programmets GConf-katalog" + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Kör gconftool-2 --recursive-list /apps/executable och sparar det som ”gconf_subtree”-element." ++msgstr "" ++"Kör gconftool-2 --recursive-list /apps/executable och sparar det som " ++"”gconf_subtree”-element." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1831,7 +2174,9 @@ msgstr "Spara /etc/vimrc och /etc/gvimrc" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "Kontrollerar om det finns vimrc- och gvimrc-filer i /etc och sparar dem som system_vimrc respektive system_gvimrc." ++msgstr "" ++"Kontrollerar om det finns vimrc- och gvimrc-filer i /etc och sparar dem som " ++"system_vimrc respektive system_gvimrc." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1843,9 +2188,11 @@ msgstr "Spara .vimrc och .gvimrc från din hemkatalog" + + #: ../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 "Kontrollerar om det finns .vimrc och .gvimrc i din hemkatalog och sparar dem som user_vimrc respektive user_gvimrc." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Kontrollerar om det finns .vimrc och .gvimrc i din hemkatalog och sparar dem " ++"som user_vimrc respektive user_gvimrc." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/ta.po b/po/ta.po +index 7ce6284..337ced8 100644 +--- a/po/ta.po ++++ b/po/ta.po +@@ -8,19 +8,22 @@ + # Jiří Moskovčák , 2011 + # shkumar , 2014 + # shkumar , 2012,2014 ++# Shantha kumar , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-17 11:25+0000\n" +-"Last-Translator: shkumar \n" +-"Language-Team: Tamil (http://www.transifex.com/projects/p/fedora-abrt/language/ta/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-08 03:58-0500\n" ++"Last-Translator: Shantha kumar \n" ++"Language-Team: Tamil (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ta/)\n" + "Language: ta\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -35,7 +38,10 @@ 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" +-msgstr "அனுப்பப்படும் அறிக்கையில் பாதுகாப்பு ரீதியாக முக்கியத் தகவல் எதுவும் இருக்காது. ஆகவே அடுத்த முறை உங்களுக்கு தொந்தரவு கொடுக்கவும் உங்களை ஏதேனும் செய்யச் சொல்லவும் அவசியம் இருக்காது. \n" ++msgstr "" ++"அனுப்பப்படும் அறிக்கையில் பாதுகாப்பு ரீதியாக முக்கியத் தகவல் எதுவும் " ++"இருக்காது. ஆகவே அடுத்த முறை உங்களுக்கு தொந்தரவு கொடுக்கவும் உங்களை ஏதேனும் " ++"செய்யச் சொல்லவும் அவசியம் இருக்காது. \n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +@@ -43,7 +49,8 @@ msgstr "செயலிழப்பு அறிக்கைகளை தான + + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "அநாமதேய செயலிழப்பு அறிக்கைகளை தானாக அறிக்கையிடும் வசதியை இயக்க வேண்டுமா?" ++msgstr "" ++"அநாமதேய செயலிழப்பு அறிக்கைகளை தானாக அறிக்கையிடும் வசதியை இயக்க வேண்டுமா?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -93,10 +100,18 @@ msgstr "அறிவிப்பை மூட முடியவில்லை: + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "ஒரு குறிப்பிட்ட சிக்கலுக்கு அறிவிப்புகள் வராதபடி தடுக்கப் போகிறீர்கள். இனி மீண்டும் இந்தச் சிக்கல் குறித்து அறிவிப்பு காண்பிக்கப்படாது, இருப்பினும் ABRT இதைக் கண்டறியும், ABRT இடைமுகத்திலிருந்து இந்தச் சிக்கலை நீங்கள் அறிக்கையிடவும் முடியும்.\n\nதொடர வேண்டுமா?" ++msgstr "" ++"ஒரு குறிப்பிட்ட சிக்கலுக்கு அறிவிப்புகள் வராதபடி தடுக்கப் போகிறீர்கள். இனி " ++"மீண்டும் இந்தச் சிக்கல் குறித்து அறிவிப்பு காண்பிக்கப்படாது, இருப்பினும் " ++"ABRT இதைக் கண்டறியும், ABRT இடைமுகத்திலிருந்து இந்தச் சிக்கலை நீங்கள் " ++"அறிக்கையிடவும் முடியும்.\n" ++"\n" ++"தொடர வேண்டுமா?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -105,7 +120,8 @@ msgstr "எச்சரிக்கை" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "ABRT கண்டுபிடித்த சிக்கல்களைப் பற்றி அறிவிக்கும் அறிவிப்புப் பகுதி பயன்பாடு" ++msgstr "" ++"ABRT கண்டுபிடித்த சிக்கல்களைப் பற்றி அறிவிக்கும் அறிவிப்புப் பகுதி பயன்பாடு" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -132,6 +148,7 @@ msgid "Ignore forever" + msgstr "எப்பொழுதும் புறக்கணி" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "திற" +@@ -146,6 +163,7 @@ msgstr "தெரிந்த ஒரு சிக்கல் ஏற்பட் + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "அறிக்கையிடு" +@@ -188,14 +206,19 @@ msgstr "gio சேனலுக்கு தடுக்காத பயன்ம + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "அமர்வு நிர்வாகிக்கான இணைப்பைத் திறக்கையில் தோல்வியடைந்தது: '%s', அடுத்த புகுபதிவில் அறிவிப்பு மீண்டும் காண்பிக்கப்படலாம்" ++msgstr "" ++"அமர்வு நிர்வாகிக்கான இணைப்பைத் திறக்கையில் தோல்வியடைந்தது: '%s', அடுத்த " ++"புகுபதிவில் அறிவிப்பு மீண்டும் காண்பிக்கப்படலாம்" + + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nABRT புதிய சிக்கல்களைக் கண்டறியும் போது அதைப் பற்றி அறிவிக்கும் பயன்பாடு\n" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"ABRT புதிய சிக்கல்களைக் கண்டறியும் போது அதைப் பற்றி அறிவிக்கும் பயன்பாடு\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -216,11 +239,15 @@ msgstr "அமைதியான சுருக்கமான அறிக் + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "அதிக நேரமும் இடமும் தேவைப்படுகின்ற, ஸ்டேக் ட்ரேஸை உருவாக்கும் செயலைச் செய்ய coredump கோப்பு அவசியமாகும். கோர்டம்ப்பிலிருந்து ஸ்டேக் ட்ரேஸை உருவாக்க ABRT ஒரு சேவையை வழங்குகிறது, ஆனால் நீங்கள் இந்தச் சேவைக்கு கோர்டம்ப்பைப் பதிவேற்ற வேண்டும். இந்த விருப்பம் முடக்கப்பட்டிருந்தால், ABRT கேட்காமலே கோர்டம்ப்பைப் பதிவேற்றும்." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"அதிக நேரமும் இடமும் தேவைப்படுகின்ற, ஸ்டேக் ட்ரேஸை உருவாக்கும் செயலைச் செய்ய " ++"coredump கோப்பு அவசியமாகும். கோர்டம்ப்பிலிருந்து ஸ்டேக் ட்ரேஸை உருவாக்க ABRT " ++"ஒரு சேவையை வழங்குகிறது, ஆனால் நீங்கள் இந்தச் சேவைக்கு கோர்டம்ப்பைப் பதிவேற்ற " ++"வேண்டும். இந்த விருப்பம் முடக்கப்பட்டிருந்தால், ABRT கேட்காமலே கோர்டம்ப்பைப் " ++"பதிவேற்றும்." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -228,28 +255,45 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT சிக்கல் தரவை கோப்பகங்களில் சேமிக்கிறது. ABRT க்கு எழுதக்கூடிய கோப்பகம் தேவைப்படும்போதெல்லாம். கோப்பகம் கணினிக்குரிய இருப்பிடத்திலிருந்து உங்கள் இல்லக் கோப்பகத்திற்கு நகர்த்தப்படுகிறது. இந்த விருப்பம் முடக்கப்பட்டால் ABRT கேட்காமலே சிக்கல் கோப்பகத்தை நகர்த்தும்." ++msgstr "" ++"ABRT சிக்கல் தரவை கோப்பகங்களில் சேமிக்கிறது. ABRT க்கு எழுதக்கூடிய கோப்பகம் " ++"தேவைப்படும்போதெல்லாம். கோப்பகம் கணினிக்குரிய இருப்பிடத்திலிருந்து உங்கள் " ++"இல்லக் கோப்பகத்திற்கு நகர்த்தப்படுகிறது. இந்த விருப்பம் முடக்கப்பட்டால் ABRT " ++"கேட்காமலே சிக்கல் கோப்பகத்தை நகர்த்தும்." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport என்பது ஒரு சிக்கல் குறித்த சிறிய மற்றும் முற்றிலும் பெயர் விவரமற்ற விளக்கமாகும். ABRT பயன்பாடு ஒட்டுமொத்த நகல்களை வேகமாகக் கண்டறிவதற்கு uReports ஐப் பயன்படுத்துகிறது. முன்னிருப்பான அமைவாக்கத்தில், அறிக்கையிடல் செயலின் துவக்கத்தில் uReport அனுப்பப்படுகிறது. இந்த விருப்பத்தைச் செயல்படுத்தினால் சிக்கல் கண்டறியப்பட்ட உடனே uReport கள் தானாக அனுப்பப்படும்." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport என்பது ஒரு சிக்கல் குறித்த சிறிய மற்றும் முற்றிலும் பெயர் விவரமற்ற " ++"விளக்கமாகும். ABRT பயன்பாடு ஒட்டுமொத்த நகல்களை வேகமாகக் கண்டறிவதற்கு " ++"uReports ஐப் பயன்படுத்துகிறது. முன்னிருப்பான அமைவாக்கத்தில், அறிக்கையிடல் " ++"செயலின் துவக்கத்தில் uReport அனுப்பப்படுகிறது. இந்த விருப்பத்தைச் " ++"செயல்படுத்தினால் சிக்கல் கண்டறியப்பட்ட உடனே uReport கள் தானாக அனுப்பப்படும்." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "இந்த விருப்பம் செயல்படுத்தப்பட்டால், சிக்கல் அறிவிப்புக் குமிழில் உள்ள அறிக்கையிடு பொத்தானைச் சொடுக்குவதன் மூலம் துவங்கும் அறிக்கையிடல் செயலானது, uReport அனுப்பப்பட்ட பிறகு குறுக்கிடப்படும். முழு அறிக்கையைத் தயார் செய்ய நீங்கள் உங்கள் முன்னிருப்பு சிக்கல் உலாவியைப் பயன்படுத்தலாம்." ++msgstr "" ++"இந்த விருப்பம் செயல்படுத்தப்பட்டால், சிக்கல் அறிவிப்புக் குமிழில் உள்ள " ++"அறிக்கையிடு பொத்தானைச் சொடுக்குவதன் மூலம் துவங்கும் அறிக்கையிடல் செயலானது, " ++"uReport அனுப்பப்பட்ட பிறகு குறுக்கிடப்படும். முழு அறிக்கையைத் தயார் செய்ய " ++"நீங்கள் உங்கள் முன்னிருப்பு சிக்கல் உலாவியைப் பயன்படுத்தலாம்." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "இந்த விருப்பத்தைச் செயல்படுத்தினால் ABRT பயன்பாடு, அறிக்கையிடப்பட்ட சிக்கல்களைப் பற்றி ஒரு போதும் அறிவிப்புகளைக் காட்டாது. சுருக்கமான அறிக்கையிடல் அம்சத்தைச் செயல்படுத்தியிருக்கும் போது மட்டுமே இவ்விருப்பம் செயல்படும்." ++msgstr "" ++"இந்த விருப்பத்தைச் செயல்படுத்தினால் ABRT பயன்பாடு, அறிக்கையிடப்பட்ட " ++"சிக்கல்களைப் பற்றி ஒரு போதும் அறிவிப்புகளைக் காட்டாது. சுருக்கமான " ++"அறிக்கையிடல் அம்சத்தைச் செயல்படுத்தியிருக்கும் போது மட்டுமே இவ்விருப்பம் " ++"செயல்படும்." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -259,7 +303,10 @@ msgstr "கோர்டம்ப்பைப் பதிவேற்றும + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr " இந்த விருப்பத்தைச் செயல்படுத்தினால், முக்கியமான தரவு இருப்பதாகக் கண்டறியப்பட்டால், ABRT பயன்பாடு எப்போதும் கட்டுப்படுத்தப்பட்ட அணுகலுடனான வழு டிக்கட்டை உருவாக்கும்." ++msgstr "" ++" இந்த விருப்பத்தைச் செயல்படுத்தினால், முக்கியமான தரவு இருப்பதாகக் " ++"கண்டறியப்பட்டால், ABRT பயன்பாடு எப்போதும் கட்டுப்படுத்தப்பட்ட அணுகலுடனான வழு " ++"டிக்கட்டை உருவாக்கும்." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -274,7 +321,11 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "கணினி இயக்க நிறுத்தம் செய்யப்படும் போது அல்லது பயனர் விடுபதிகை செய்யும் போது நிறைவடையாத சிக்கல்கள் கண்டறியப்படுகின்றன. மதிப்புள்ள சிக்கல் அறிக்கைகளை வழங்குவதற்காக ABRT பயன்பாடு இந்தச் சிக்கல்களைச் சமர்ப்பிக்க உங்களை அனுமதிக்காது." ++msgstr "" ++"கணினி இயக்க நிறுத்தம் செய்யப்படும் போது அல்லது பயனர் விடுபதிகை செய்யும் போது " ++"நிறைவடையாத சிக்கல்கள் கண்டறியப்படுகின்றன. மதிப்புள்ள சிக்கல் அறிக்கைகளை " ++"வழங்குவதற்காக ABRT பயன்பாடு இந்தச் சிக்கல்களைச் சமர்ப்பிக்க உங்களை " ++"அனுமதிக்காது." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -306,7 +357,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nதொகுப்பு தரவுத்தளத்தை வினவி தொகுப்பு மற்றும் கூறின் பெயரைச் சேமி" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"தொகுப்பு தரவுத்தளத்தை வினவி தொகுப்பு மற்றும் கூறின் பெயரைச் சேமி" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -369,7 +423,9 @@ msgstr "மாற்றம் செய்ய சிக்கலை அணுக + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "கோப்பகத்தை Chown செய்தல் தோல்வியடைந்தது. மேலும் விவரங்களுக்கு கணினி பதிவுகளைப் பார்க்கவும்." ++msgstr "" ++"கோப்பகத்தை Chown செய்தல் தோல்வியடைந்தது. மேலும் விவரங்களுக்கு கணினி " ++"பதிவுகளைப் பார்க்கவும்." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -395,7 +451,9 @@ msgstr "சிக்கல் கோப்பகம் '%s' இலிருந + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "'%s' என்ற பெயர் போய்விட்டது, இதே பெயரைக் கொண்ட மற்ற சேவைகள் எதுவும் இயங்காமல் உள்ளதா எனப் பார்க்கவும்.\n" ++msgstr "" ++"'%s' என்ற பெயர் போய்விட்டது, இதே பெயரைக் கொண்ட மற்ற சேவைகள் எதுவும் " ++"இயங்காமல் உள்ளதா எனப் பார்க்கவும்.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -409,11 +467,17 @@ msgstr "இந்த நிரலை மூலப் பயனராகவே + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 உங்களை அனுமதிக்காது. உங்களுக்கு நேரமிருந்து, இந்த சிக்கலைத் தீர்ப்பதில் உருவாக்குநர்களுக்கு உதவ முடியும் எனில், அவர்களை நேரடியாகத் தொடர்பு கொள்ளவும்." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 உங்களை அனுமதிக்காது. உங்களுக்கு " ++"நேரமிருந்து, இந்த சிக்கலைத் தீர்ப்பதில் உருவாக்குநர்களுக்கு உதவ முடியும் " ++"எனில், அவர்களை நேரடியாகத் தொடர்பு கொள்ளவும்." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -438,7 +502,8 @@ msgstr "நேரடியாக பயனரிடம் தொடர்பு + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "கட்டற்ற ஒர்க்கர்கள் இல்லை, முழு பஃபர். காப்பகம் '%s' ஐ புறக்கணிக்கிறது" ++msgstr "" ++"கட்டற்ற ஒர்க்கர்கள் இல்லை, முழு பஃபர். காப்பகம் '%s' ஐ புறக்கணிக்கிறது" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -450,7 +515,16 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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 இன் ஒரு விருப்பத்தைப் பயன்படுத்தும்" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"UPLOAD_DIRECTORY ஐ கவனித்து உள்வரும் காப்பகங்களை abrt.conf இல் " ++"குறிப்பிட்டுள்ள\n" ++"DumpLocation க்கு பிரித்தெடுக்கும்\n" ++"\n" ++"UPLOAD_DIRECTORY வழங்கப்படாவிட்டால் abrt.conf இல் இருந்து\n" ++"WatchCrashdumpArchiveDir இன் ஒரு விருப்பத்தைப் பயன்படுத்தும்" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -464,19 +538,74 @@ msgstr "ஒத்த சமய ஒர்க்கர்களின் எண் + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB இல் அதிகபட்ச தேக்கக அளவு. முன்னிருப்பு:" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "அங்கீகரிப்பை முடக்கும்" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Red Hat ஆதரவு பயனர் பெயர்" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++"Red Hat ஆதரவு கடவுச்சொல், கொடுக்கப்படாவிட்டால், அதைக் கேட்கும் இடைமுகம் " ++"காட்டப்படும்" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "uReport SSL சான்றிதழ் பாதைகள் அல்லது சான்றிதழ் வகை" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "--password க்கு --username ஐயும் வழங்க வேண்டும்" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "--username அல்லது --certificate இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "--username அல்லது --anonymous இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "--anonymous அல்லது --certificate இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "செல்லுபடியாகாத மதிப்புருக்களின் எண்ணிக்கை" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "தெரியாத விருப்ப மதிப்பு: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "கடவுச்சொல்:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "கடவுச்சொல் இல்லாமல் தொடர முடியாது\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "HTTP அங்கீகரித்த தானியக்க அறிக்கையிடல்" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "SSL கிளையன் அங்கீகரித்த தானியக்க அறிக்கையிடல்" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "பெயரிலா தானியக்க அறிக்கையிடல்" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -487,7 +616,15 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "பயன்பாடு: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - விவரமாக\n -d - பதிவேற்றிய காப்பகத்தை நீக்கு\n ABRT_SPOOL_DIR - பதிவேற்றப்பட்ட செல்லுபடியான காப்பகங்கள் பிரித்தெடுக்கப்படும் கோப்பகம்\n UPLOAD_DIR - பதிவேற்றப்பட்ட காப்பகங்கள் சேமிக்கப்படும் கோப்பகம்\n FILENAME - பதிவேற்றப்பட்ட காப்பகங்கக் கோப்புப் பெயர்\n" ++msgstr "" ++"பயன்பாடு: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - விவரமாக\n" ++" -d - பதிவேற்றிய காப்பகத்தை நீக்கு\n" ++" ABRT_SPOOL_DIR - பதிவேற்றப்பட்ட செல்லுபடியான காப்பகங்கள் " ++"பிரித்தெடுக்கப்படும் கோப்பகம்\n" ++" UPLOAD_DIR - பதிவேற்றப்பட்ட காப்பகங்கள் சேமிக்கப்படும் கோப்பகம்\n" ++" FILENAME - பதிவேற்றப்பட்ட காப்பகங்கக் கோப்புப் பெயர்\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -594,13 +731,17 @@ msgstr "தற்காலிக கோப்பு '%s' ஐ உருவாக + 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:264 + #, 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 "" +@@ -608,11 +749,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nC/C++ பின் தடமறிதலைப் பகுப்பாய்வு செய்யும், நகல் பிரதி ஹாஷ், பின் தடமறிதல் தரமிடல் ஆகியவற்றை உருவாக்கும்,\nமற்றும் சிக்கல் கோப்பகம் DIR இல் செயலிழப்பு சார்பைக் கண்டறியும்" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"C/C++ பின் தடமறிதலைப் பகுப்பாய்வு செய்யும், நகல் பிரதி ஹாஷ், பின் தடமறிதல் " ++"தரமிடல் ஆகியவற்றை உருவாக்கும்,\n" ++"மற்றும் சிக்கல் கோப்பகம் DIR இல் செயலிழப்பு சார்பைக் கண்டறியும்" + ++#. + #. * 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" +@@ -627,7 +775,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nசிக்கல் கோப்பகம் DIR இல் கோர்டம்ப்பின் UUID ஐ கணக்கிட்டு சேமிக்கும்" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"சிக்கல் கோப்பகம் DIR இல் கோர்டம்ப்பின் UUID ஐ கணக்கிட்டு சேமிக்கும்" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -653,14 +804,21 @@ 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" ++"\n" ++"oops சிக்கல் கோப்பகம் DIR க்கான UUID மற்றும் DUPHASH ஐக் கணக்கிட்டு " ++"சேமிக்கும்" + + #: ../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" ++"\n" ++"xorg சிக்கல் கோப்பகம் DIR க்கான UUID மற்றும் DUPHASH ஐ கணக்கிட்டு சேமிக்கும்" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -672,7 +830,11 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\npython செயலிழப்பு டம்ப்புகளின் UUID மற்றும் DUPHASH ஐக் கணக்கிட்டு சேமிக்கும்" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"python செயலிழப்பு டம்ப்புகளின் UUID மற்றும் DUPHASH ஐக் கணக்கிட்டு " ++"சேமிக்கும்" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -687,10 +849,10 @@ msgid "Extracting the oops text from core" + msgstr "கோரிலிருந்து oops உரையை பிரித்தெடுக்கிறது" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "{0} ஐ செயலாக்க முறியவில்லை:\n" + "{1}" +-msgstr "{0} ஐ செயலாக்க முறியவில்லை:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -704,14 +866,20 @@ msgstr "Oops உரை வெற்றிகரமாக பிரித்த + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "கெர்னல் பதிவு வன்பொருள் பிழைகள் கண்டறியப்பட்டதாகக் குறிக்கிறது.\nஅநேகமாக இது மென்பொருள் தொடர்பான பிரச்சனையாக இருக்காது.\n" ++msgstr "" ++"கெர்னல் பதிவு வன்பொருள் பிழைகள் கண்டறியப்பட்டதாகக் குறிக்கிறது.\n" ++"அநேகமாக இது மென்பொருள் தொடர்பான பிரச்சனையாக இருக்காது.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nசிக்கல் கோப்பகம் DIR இல் கோர்டம்ப்பை பகுப்பாய்வு செய்யும், பின் தடமறிதலைத் தொடங்கி சேமிக்கும்" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"சிக்கல் கோப்பகம் DIR இல் கோர்டம்ப்பை பகுப்பாய்வு செய்யும், பின் தடமறிதலைத் " ++"தொடங்கி சேமிக்கும்" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -723,6 +891,7 @@ 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" +@@ -733,7 +902,11 @@ 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" ++"\n" ++"கோர் டம்ப் மற்றும் உரிய பைனரியிலிருந்து கோர்டம் நிலையிலான பின் தடமறிதலை " ++"உருவாக்கும்" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -761,7 +934,8 @@ msgstr "பயனர் கட்டளையின் படி வெளிய + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -771,13 +945,35 @@ msgid "" + " -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" ++" --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" +-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" ++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_FILE இல் பட்டியலிடப்பட்டுள்ள அனைத்து பில்ட் ஐடிகளுக்கும் " ++"வழுநீக்கல் தகவல்களை\n" ++"CACHEDIR க்கு நிறுவும், அப்போது TMPDIR ஐ தற்காலிக நிகழ்ச்சிப் பகுதியாகப் " ++"பயன்படுத்தும்.\n" ++"CACHEDIR இல் உள்ள பழைய கோப்புகள் 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}" +@@ -785,7 +981,9 @@ 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} வழுநீக்கல் தகவல் கோப்புகளைக் குறிக்கிறது, அவற்றில் {1} கோப்புகள் நிறுவப்படவில்லை" ++msgstr "" ++"கோர்டம்ப் {0} வழுநீக்கல் தகவல் கோப்புகளைக் குறிக்கிறது, அவற்றில் {1} " ++"கோப்புகள் நிறுவப்படவில்லை" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -808,21 +1006,33 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "கோர் டம்ப்பைப் பதிவேற்ற சம்மதமா? (அதில் முக்கியத் தரவுகள் இருக்கக்கூடும்). 'இல்லை' என்பது உங்கள் பதிலாக இருந்தால், கணினியில் ஒரு ஸ்டேக் டிரேஸ் உருவாக்கப்படும். (அது மிகப் பெரிய அளவிலான தரவைப் பதிவிறக்கலாம்)." ++msgstr "" ++"கோர் டம்ப்பைப் பதிவேற்ற சம்மதமா? (அதில் முக்கியத் தரவுகள் இருக்கக்கூடும்). " ++"'இல்லை' என்பது உங்கள் பதிலாக இருந்தால், கணினியில் ஒரு ஸ்டேக் டிரேஸ் " ++"உருவாக்கப்படும். (அது மிகப் பெரிய அளவிலான தரவைப் பதிவிறக்கலாம்)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"கணினிக்குள்ளேயே ஒரு ஸ்டேக் தடமறிதலை உருவாக்க விரும்புகிறீர்களா? (இது பெரிய " ++"அளவிலான தரவை பதிவிறக்கம் செய்யக்கூடும் ஆனால், ஸ்டேக் தடமறிதல் இன்றி " ++"அறிக்கையிடலைத் தொடர முடியாது)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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\nDIR இல் உள்ள சிக்கல் கோப்பகங்கள் (-d) அல்லது கோப்புகள் (-f) அளவில் SIZE ஐ விட சிறியதாகும் வரை அவற்றை அழிக்கும்.\nFILE கள் பாதுகாக்கப்படும் (ஒருபோதும் அழிக்கப்படாது)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"DIR இல் உள்ள சிக்கல் கோப்பகங்கள் (-d) அல்லது கோப்புகள் (-f) அளவில் SIZE ஐ " ++"விட சிறியதாகும் வரை அவற்றை அழிக்கும்.\n" ++"FILE கள் பாதுகாக்கப்படும் (ஒருபோதும் அழிக்கப்படாது)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -866,7 +1076,8 @@ msgstr "uReport ஏற்கனவே அனுப்பப்பட்டது + #: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "reporter-ureport ஆனது %d என்ற வெளியேற்றக் குறியீட்டை வழங்கி தோல்வியடைந்தது" ++msgstr "" ++"reporter-ureport ஆனது %d என்ற வெளியேற்றக் குறியீட்டை வழங்கி தோல்வியடைந்தது" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +@@ -954,7 +1165,9 @@ 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 +@@ -964,11 +1177,15 @@ 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 "" ++"சமிக்ஞை எண்ணைப் பெற முடியவில்லை, மேலும் பயன்படுத்திக்கொள்ளும் தன்மைக்கான " ++"பகுப்பாய்வைச் செய்யவும்\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +@@ -991,7 +1208,11 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nFILE என்ற பதிவுக் கோப்பைக் கவனி, அது அதிகரிக்கும் போது அல்லது இடமாற்றப்படும் பட்சத்தில் PROG கட்டளையை இயக்கு" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"FILE என்ற பதிவுக் கோப்பைக் கவனி, அது அதிகரிக்கும் போது அல்லது இடமாற்றப்படும் " ++"பட்சத்தில் PROG கட்டளையை இயக்கு" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1001,20 +1222,27 @@ msgstr "STR கள் இல்லாவிட்டால் PROG கட்ட + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "பழுதடைந்த BIOS ஆல் ஒரு கெர்னல் சிக்கல் ஏற்பட்டது. துரதிருஷ்டவசமாக இத்தகைய சிக்கல்கள் கெர்னல் பராமரிப்பாளர்களால் தீர்க்கப்படுவதில்லை." ++msgstr "" ++"பழுதடைந்த BIOS ஆல் ஒரு கெர்னல் சிக்கல் ஏற்பட்டது. துரதிருஷ்டவசமாக இத்தகைய " ++"சிக்கல்கள் கெர்னல் பராமரிப்பாளர்களால் தீர்க்கப்படுவதில்லை." + + #: ../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: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). கெர்னல் பராமரிப்பு தொகுதிகளால் சிதைவடைந்தவை பற்றிய அறிக்கைகளை உருவாக்க முடியவில்லை." ++msgstr "" ++"ஒரு கெர்னல் சிக்கல் ஏற்பட்டது, ஆனால் உங்கள் கெர்னல் பாதிக்கப்படவில்லை " ++"(கொடிகள்:%s). கெர்னல் பராமரிப்பு தொகுதிகளால் சிதைவடைந்தவை பற்றிய அறிக்கைகளை " ++"உருவாக்க முடியவில்லை." + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1026,7 +1254,10 @@ 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" ++"\n" ++"FILE இலிருந்து (அல்லது வழக்கமான உள்ளீட்டிலிருந்து) oops ஐப் பிரித்தெடுக்கும்" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1034,13 +1265,18 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" +-msgstr "கண்டறியப்பட்ட ஒவ்வொரு oops க்கும் DIR இல் ஒரு புதிய சிக்கல் கோப்பகத்தை உருவாக்கு" ++msgstr "" ++"கண்டறியப்பட்ட ஒவ்வொரு oops க்கும் DIR இல் ஒரு புதிய சிக்கல் கோப்பகத்தை " ++"உருவாக்கு" + + #: ../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 இல் குறிப்பிடப்பட்டுள்ளது" ++msgstr "" ++"-d DumpLocation போன்றது DumpLocation ஆனது abrt.conf இல் " ++"குறிப்பிடப்பட்டுள்ளது" + + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +@@ -1064,7 +1300,9 @@ msgstr "சுருங்குறித் தொடரை கம்பைல + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +-msgstr "சிக்கலைப் புதுப்பிக்க முடியவில்லை: ஒன்றுக்கும் அதிகமான oops கண்டறியப்பட்டுள்ளது" ++msgstr "" ++"சிக்கலைப் புதுப்பிக்க முடியவில்லை: ஒன்றுக்கும் அதிகமான oops " ++"கண்டறியப்பட்டுள்ளது" + + #: ../src/plugins/abrt-dump-oops.c:421 + #, c-format +@@ -1076,7 +1314,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nFILE இல் (அல்லது தரநிலை உள்ளீட்டில்) இருந்து Xorg ஐப் பிரித்தெடு" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"FILE இல் (அல்லது தரநிலை உள்ளீட்டில்) இருந்து Xorg ஐப் பிரித்தெடு" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1084,16 +1325,21 @@ 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 "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "ரீட்ரேஸ் சேவையகத்தைப் பயன்படுத்த முடியவில்லை, ஏனெனில் செயலிழப்பு மிகப் பெரியது. கணினிக்குள்ளான ரீட்ரேஸிங்கை முயற்சிக்கவும்." ++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,10 +1362,10 @@ msgstr "%d நீளமுள்ள HTTP தலைப்பை அனுப் + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "சேவையகத்திலிருந்து எதிர்பாராத HTTP பதில்: %d\n" + "%s" +-msgstr "சேவையகத்திலிருந்து எதிர்பாராத HTTP பதில்: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1128,14 +1374,18 @@ msgstr "சேவையகத்திலிருந்து எதிர் + #: ../src/plugins/abrt-retrace-client.c:982 + #: ../src/plugins/abrt-retrace-client.c:1052 + msgid "Invalid response from server: missing HTTP message body." +-msgstr "சேவையகத்திலிருந்து செல்லுபடியாகாத பதில்: HTTP செய்தி பிரதான பகுதி விடுபட்டுள்ளது." ++msgstr "" ++"சேவையகத்திலிருந்து செல்லுபடியாகாத பதில்: HTTP செய்தி பிரதான பகுதி " ++"விடுபட்டுள்ளது." + + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "பின் தடமறி சேவையகத்தால் '%s.%s' தொகுப்பை செயலாக்க முடியவில்லை.\nஅது அதிகாரப்பூர்வ '%s' தொகுப்பதிவகங்களின் அங்கம் தானா?" ++msgstr "" ++"பின் தடமறி சேவையகத்தால் '%s.%s' தொகுப்பை செயலாக்க முடியவில்லை.\n" ++"அது அதிகாரப்பூர்வ '%s' தொகுப்பதிவகங்களின் அங்கம் தானா?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1153,14 +1403,18 @@ msgstr "சேவையகம் உங்கள் கோரிக்கைய + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "ரிடிரேஸ் சேவையகத்தைப் பயன்படுத்த வேண்டுமானால் '%s' ஆனது வழக்கமான கோப்பாக இருக்க வேண்டும்." ++msgstr "" ++"ரிடிரேஸ் சேவையகத்தைப் பயன்படுத்த வேண்டுமானால் '%s' ஆனது வழக்கமான கோப்பாக " ++"இருக்க வேண்டும்." + + #: ../src/plugins/abrt-retrace-client.c:514 + #, c-format + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "உங்கள் செயலிழப்பின் அளவு %lld பைட்டுகள், ஆனால் ரீட்ரேஸ் சேவையகமானது %lld பைட்டுகளுக்கு சமமான அல்லது அதை விட சிறிய செயலிழப்புகளை மட்டும் ஏற்கும்." ++msgstr "" ++"உங்கள் செயலிழப்பின் அளவு %lld பைட்டுகள், ஆனால் ரீட்ரேஸ் சேவையகமானது %lld " ++"பைட்டுகளுக்கு சமமான அல்லது அதை விட சிறிய செயலிழப்புகளை மட்டும் ஏற்கும்." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1188,7 +1442,9 @@ msgstr "பதிவேற்ற ஒரு ஆர்ச்சிவை தயா + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "உங்கள் ஆர்சிவ்வின் அளவு %lld பைட்டுகள், ஆனால் ரீட்ரேஸ் சேவையகமானது %lld பைட்டுகளுக்கு சமமான அலல்து சிறிய ஆர்ச்சிவ்களை மட்டுமே ஏற்கும்." ++msgstr "" ++"உங்கள் ஆர்சிவ்வின் அளவு %lld பைட்டுகள், ஆனால் ரீட்ரேஸ் சேவையகமானது %lld " ++"பைட்டுகளுக்கு சமமான அலல்து சிறிய ஆர்ச்சிவ்களை மட்டுமே ஏற்கும்." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1231,13 +1487,17 @@ msgstr "பதிவேற்றம் வெற்றியடைந்தத + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "உங்கள் சிக்கல் அடைவு சிதைந்துள்ளது இல்லை இவை ரீட்ரேஸ் சேவையகத்தால் செயற்படுத்த முடியாது." ++msgstr "" ++"உங்கள் சிக்கல் அடைவு சிதைந்துள்ளது இல்லை இவை ரீட்ரேஸ் சேவையகத்தால் " ++"செயற்படுத்த முடியாது." + + #: ../src/plugins/abrt-retrace-client.c:759 + 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." +@@ -1253,10 +1513,10 @@ msgstr "மறுதடமறிதல் பணி துவக்கப்ப + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "பணி குறியீடு: %s\nபணி கடவுச்சொல்: %s\n" ++msgstr "பணி குறியீடு: %s\n" ++"பணி கடவுச்சொல்: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1264,10 +1524,10 @@ msgstr "சேவையகத்திலிருந்து தவறான + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "பணி நிலை: %s\n" + "%s\n" +-msgstr "பணி நிலை: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1280,7 +1540,9 @@ msgstr "%d நீளமுள்ள HTTP தலைப்பை அனுப் + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "மறுதடமறிதல் தோல்வியுற்றது. மீண்டும் முயற்சிக்கவும் சிக்கல் தொடர்ந்தால் இந்த சிக்கலை அறிக்கையிடவும்." ++msgstr "" ++"மறுதடமறிதல் தோல்வியுற்றது. மீண்டும் முயற்சிக்கவும் சிக்கல் தொடர்ந்தால் இந்த " ++"சிக்கலை அறிக்கையிடவும்." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1294,7 +1556,9 @@ msgstr "மறுதடமறிதல் சேவையகத்திற் + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "காப்பகத்தைப் பதிவேற்றும் முன்பு, பின்தடமறிதல் சேவையகத்தால் கொடுக்கப்பட்ட தொகுப்பைச் செயலாக்க முடியுமா என்று சோதிக்க வேண்டாம்" ++msgstr "" ++"காப்பகத்தைப் பதிவேற்றும் முன்பு, பின்தடமறிதல் சேவையகத்தால் கொடுக்கப்பட்ட " ++"தொகுப்பைச் செயலாக்க முடியுமா என்று சோதிக்க வேண்டாம்" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1326,7 +1590,9 @@ msgstr "போலிங் செயல்பாடுகளுக்காக + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "(வழுநீக்கம்) dump dir in இலிருந்து உருவாக்கப்பட்ட தற்காலிக காப்பகத்தை அழிக்க வேண்டாம்" ++msgstr "" ++"(வழுநீக்கம்) dump dir in இலிருந்து உருவாக்கப்பட்ட தற்காலிக காப்பகத்தை அழிக்க " ++"வேண்டாம்" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1344,7 +1610,9 @@ msgstr "சேவையகத்தில் உங்கள் பணியி + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [விருப்பங்கள்]\nசெயல்கள்: create/status/backtrace/log/batch/exploitable" ++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 +@@ -1376,14 +1644,19 @@ msgstr "உள்ளமை GNU பிழைதிருத்தி" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "பிழைத்திருத்த தகவல் தொகுப்புகளை பதிவிறக்கி GDB ஐ பயன்படுத்தி உள்ளமையாக பேக்ட்ரேஸை துவக்கவும்" ++msgstr "" ++"பிழைத்திருத்த தகவல் தொகுப்புகளை பதிவிறக்கி GDB ஐ பயன்படுத்தி உள்ளமையாக " ++"பேக்ட்ரேஸை துவக்கவும்" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "பிழைதிருத்ததகவல் தொகுப்புகளை பதிவிறக்க வேண்டியுள்ளது, அதற்கு கணிசமான நேரம் ஆகும், மேலும் வட்டிடமும் செலவாகும். எப்படியிருப்பினும், RetraceServer ஐ விரும்பாவிடில், coredump ஐ தொலை கணினிகளுக்கு அனுப்பாது." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"பிழைதிருத்ததகவல் தொகுப்புகளை பதிவிறக்க வேண்டியுள்ளது, அதற்கு கணிசமான நேரம் " ++"ஆகும், மேலும் வட்டிடமும் செலவாகும். எப்படியிருப்பினும், RetraceServer ஐ " ++"விரும்பாவிடில், coredump ஐ தொலை கணினிகளுக்கு அனுப்பாது." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1391,12 +1664,19 @@ msgstr "சோதனைக்காக தொலை மறுதடமறித + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "ஒரு சேவையகத்திற்கு coredump ஐ பதிவேற்றும், இது பின்தடமறிதலை உருவாக்கி வழங்குகிறது. நன்மைகள்: பிழைதிருத்த தகவல் பதிவிறக்கங்கள் தேவை இல்லை. மறுதடமறிதல் சேவையகத்தின் பிழைத்திருத்தத் தகவல் தரவுத்தளம் அதிக முழுமையாக உள்ளது. மறுதடமறிதல்சேவையகமானது மேலும் சிறப்பான பின் தடமறிதல்களை உருவாக்கலாம். குறைபாடுகள்: நீங்கள் பதிவேற்றும்கோர்டம்பில், உங்கள் தனிப்பட்ட தரவு ஏதேனும் இருப்பின் அவை உட்பட செயலிழந்த நிரலிலிருந்து கிடைக்கும் எல்லா தரவும் இருக்கும்." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"ஒரு சேவையகத்திற்கு coredump ஐ பதிவேற்றும், இது பின்தடமறிதலை உருவாக்கி " ++"வழங்குகிறது. நன்மைகள்: பிழைதிருத்த தகவல் பதிவிறக்கங்கள் தேவை இல்லை. " ++"மறுதடமறிதல் சேவையகத்தின் பிழைத்திருத்தத் தகவல் தரவுத்தளம் அதிக முழுமையாக " ++"உள்ளது. மறுதடமறிதல்சேவையகமானது மேலும் சிறப்பான பின் தடமறிதல்களை உருவாக்கலாம்." ++" குறைபாடுகள்: நீங்கள் பதிவேற்றும்கோர்டம்பில், உங்கள் தனிப்பட்ட தரவு ஏதேனும் " ++"இருப்பின் அவை உட்பட செயலிழந்த நிரலிலிருந்து கிடைக்கும் எல்லா தரவும் " ++"இருக்கும்." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1421,10 +1701,13 @@ msgstr "பாதுகாப்பாற்ற இணைப்பை பயன + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "பாதுகாப்பற்ற இணைப்பை அனுமதிக்க \"insecure\" என எழுதவும் <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(எச்சரிக்கை)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"பாதுகாப்பற்ற இணைப்பை அனுமதிக்க \"insecure\" என எழுதவும் <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(எச்சரிக்கை)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1438,7 +1721,10 @@ msgstr "~/.xsession-errors கோப்பிலிருந்து தொட + 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." +@@ -1471,7 +1757,8 @@ msgstr "நம்பகமில்லாத வழங்குநரால் + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "சான்றிதழ் பொருள் பெயர் '%s' ஆனது இலக்கு புரவல பெயர் '%s' க்கு பொருந்தவில்லை." ++msgstr "" ++"சான்றிதழ் பொருள் பெயர் '%s' ஆனது இலக்கு புரவல பெயர் '%s' க்கு பொருந்தவில்லை." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1596,7 +1883,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nபோதி சேவையகத்தில் புதுப்பிப்புகள் உள்ளதா எனத் தேடு" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"போதி சேவையகத்தில் புதுப்பிப்புகள் உள்ளதா எனத் தேடு" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1609,21 +1899,28 @@ msgstr "இந்தத் தொகுப்புக்கு புதுப + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" +-msgstr "கிடைக்கக்கூடிய புதுப்பிப்புகளைக் காட்டிலும், தற்போதுள்ள பதிப்பு புதியது" ++msgstr "" ++"கிடைக்கக்கூடிய புதுப்பிப்புகளைக் காட்டிலும், தற்போதுள்ள பதிப்பு புதியது" + + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "உங்கள் சிக்கலைத் தீர்க்க சாத்தியமுள்ள ஒரு புதுப்பிப்பு உள்ளது. இதை இயக்கி அதை நீங்கள் நிறுவலாம்: %s. வழுவைப் புகாரளிக்கும் செயலைத் தொடர வேண்டுமா?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"உங்கள் சிக்கலைத் தீர்க்க சாத்தியமுள்ள ஒரு புதுப்பிப்பு உள்ளது. இதை இயக்கி " ++"அதை நீங்கள் நிறுவலாம்: %s. வழுவைப் புகாரளிக்கும் செயலைத் தொடர வேண்டுமா?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\nsplit oops செய்தி உள்ளதா என கோப்புகளை வருடிப் பார்க்கும். அவற்றை அச்சிட மற்றும்/அல்லது அழிக்க முடியும்." ++msgstr "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"split oops செய்தி உள்ளதா என கோப்புகளை வருடிப் பார்க்கும். அவற்றை அச்சிட " ++"மற்றும்/அல்லது அழிக்க முடியும்." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1674,7 +1971,9 @@ msgstr "'abrt-cli COMMAND --help' க்கான மேலும் தகவ + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +-msgstr "%sRed Hat வாடிக்கையாளர் வலைவாசலில் ஒரு கோரிக்கையை உருவாக்க 'abrt-cli report %s' எனும் கட்டளையை இயக்கவும்\n" ++msgstr "" ++"%sRed Hat வாடிக்கையாளர் வலைவாசலில் ஒரு கோரிக்கையை உருவாக்க 'abrt-cli report " ++"%s' எனும் கட்டளையை இயக்கவும்\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1700,9 +1999,12 @@ msgstr "குறிப்பிட்ட நேரமுத்திரைக + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "Autoreporting அம்சம் முடக்கப்பட்டுள்ளது. ரூட் அனுமதி உள்ள பயனராக \n'abrt-auto-reporting enabled' கட்டளையை இயக்கி அதை செயல்படுத்தவும்\n" ++msgstr "" ++"Autoreporting அம்சம் முடக்கப்பட்டுள்ளது. ரூட் அனுமதி உள்ள பயனராக \n" ++"'abrt-auto-reporting enabled' கட்டளையை இயக்கி அதை செயல்படுத்தவும்\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1732,7 +2034,9 @@ 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/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1767,17 +2071,23 @@ msgstr "அடுத்த சிக்கலுக்கு ENTER ஐ அழு + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "--since மதிப்புரு இல்லாவிட்டால், கண்டறியப்பட்ட அனைத்து சிக்கல்களிலும் மீண்டும் மீண்டும் செயல்படுத்தப்படும்." ++msgstr "" ++"--since மதிப்புரு இல்லாவிட்டால், கண்டறியப்பட்ட அனைத்து சிக்கல்களிலும் " ++"மீண்டும் மீண்டும் செயல்படுத்தப்படும்." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +-msgstr "நேரமுத்திரைக்குப் பிறகு கண்டறியப்பட்ட சிக்கல்களை மட்டும் தேர்ந்தெடுக்கவும்" ++msgstr "" ++"நேரமுத்திரைக்குப் பிறகு கண்டறியப்பட்ட சிக்கல்களை மட்டும் தேர்ந்தெடுக்கவும்" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "கோர் டம்ப்பை பகுப்பாய்வுக்காக தொலைநிலை ரிடிரேஸ் சேவையகத்திற்கு அனுப்பவும் அல்லது தொலைநிலை பகுப்பாய்வு தோல்வியடைந்தால் கணினிக்குள்ளான பகுப்பாய்வைச் செய்யவும்" ++msgstr "" ++"கோர் டம்ப்பை பகுப்பாய்வுக்காக தொலைநிலை ரிடிரேஸ் சேவையகத்திற்கு அனுப்பவும் " ++"அல்லது தொலைநிலை பகுப்பாய்வு தோல்வியடைந்தால் கணினிக்குள்ளான பகுப்பாய்வைச் " ++"செய்யவும்" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1785,10 +2095,19 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "கோர் டம்ப்பை ஒரு சேவையகத்திற்குப் பதிவேற்றும், அது பின்தடமறிதலை உருவாக்கி திருப்பி வழங்கும். பயனர் தனது கோர் டம்ப்பை எங்கும் பதிவேற்ற விரும்பாவிட்டால், அப்போது கணினிக்குள்ளான பகுப்பாய்வு மேற்கொள்ளப்படும். தொலைநிலை பகுப்பாய்வு தோல்வியடைந்தால் கணினிக்குள்ளான பகுப்பாய்வு நடத்தப்படும். நன்மைகள்: வழுநீக்கல் தகவல் பதிவிறக்கங்களுக்கு அவசியம் இல்லை. வழுநீக்கல் தகவல்களின் ரிடிரேஸ் சேவையகத்தின் தரவுத்தளம் முழுமையாக இருக்கும். ரிடிரேஸ் சேவையகம் ஆகச்சிறந்த பின்தடமறிதலை உருவாக்கக்கூடும். குறைகள்: கோர் டம்ப்பில் உங்களது தனிப்பட்ட தரவு ஏதேனும் இருப்பின் அதையும் உட்பட செயலிழந்த நிரலிலிருந்து பெறப்பட்ட அனைத்து தரவும் இருக்கும்." ++msgstr "" ++"கோர் டம்ப்பை ஒரு சேவையகத்திற்குப் பதிவேற்றும், அது பின்தடமறிதலை உருவாக்கி " ++"திருப்பி வழங்கும். பயனர் தனது கோர் டம்ப்பை எங்கும் பதிவேற்ற " ++"விரும்பாவிட்டால், அப்போது கணினிக்குள்ளான பகுப்பாய்வு மேற்கொள்ளப்படும். " ++"தொலைநிலை பகுப்பாய்வு தோல்வியடைந்தால் கணினிக்குள்ளான பகுப்பாய்வு நடத்தப்படும்." ++" நன்மைகள்: வழுநீக்கல் தகவல் பதிவிறக்கங்களுக்கு அவசியம் இல்லை. வழுநீக்கல் " ++"தகவல்களின் ரிடிரேஸ் சேவையகத்தின் தரவுத்தளம் முழுமையாக இருக்கும். ரிடிரேஸ் " ++"சேவையகம் ஆகச்சிறந்த பின்தடமறிதலை உருவாக்கக்கூடும். குறைகள்: கோர் டம்ப்பில் " ++"உங்களது தனிப்பட்ட தரவு ஏதேனும் இருப்பின் அதையும் உட்பட செயலிழந்த " ++"நிரலிலிருந்து பெறப்பட்ட அனைத்து தரவும் இருக்கும்." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1797,13 +2116,17 @@ msgstr "VM கோரை ஆராயவும்" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "கெர்னல் பிழைத்திருத்ததகவல் தொகுப்புகளை நிறுவவும், கெர்னல் பதிவு மற்றும் ஊப்ஸ் செய்தியை உருவாக்கவும்" ++msgstr "" ++"கெர்னல் பிழைத்திருத்ததகவல் தொகுப்புகளை நிறுவவும், கெர்னல் பதிவு மற்றும் " ++"ஊப்ஸ் செய்தியை உருவாக்கவும்" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "கெர்னல் பிழைத்திருத்ததகவல் தொகுப்புகளை நிறுவ வேன்டியுள்ளது, இதற்கு கணிசமான நேரமாகும், மேலும் வட்டிடமும் செலவாகும்." ++msgstr "" ++"கெர்னல் பிழைத்திருத்ததகவல் தொகுப்புகளை நிறுவ வேன்டியுள்ளது, இதற்கு கணிசமான " ++"நேரமாகும், மேலும் வட்டிடமும் செலவாகும்." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1817,7 +2140,9 @@ msgstr "பயன்பாட்டின் GConf கோப்பகத்த + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "gconftool-2 --recursive-list /apps/executable இயக்கி இதை 'gconf_subtree' கூறாக சேமிக்கிறது." ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable இயக்கி இதை 'gconf_subtree' " ++"கூறாக சேமிக்கிறது." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1831,7 +2156,9 @@ msgstr "/etc/vimrc and /etc/gvimrc சேமிக்கவும்" + msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." +-msgstr "vimrc மற்றும் gvimrc கோப்புகளை இதில் /இன்னும் பல போன்றவற்றில் இருந்தால் அவற்றை system_vimrc மற்றும் system_gvimrc, முறையே சேமிக்கின்றது." ++msgstr "" ++"vimrc மற்றும் gvimrc கோப்புகளை இதில் /இன்னும் பல போன்றவற்றில் இருந்தால் " ++"அவற்றை system_vimrc மற்றும் system_gvimrc, முறையே சேமிக்கின்றது." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1843,9 +2170,11 @@ 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 "உங்கள் முகப்பு கோப்பகத்தில் .vimrc மற்றும் .gvimrc உள்ளதா என்று பார்த்து, இருந்தால் அவற்றை முறையே user_vimrc மற்றும் user_gvimrc என சேமிக்கின்றது." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"உங்கள் முகப்பு கோப்பகத்தில் .vimrc மற்றும் .gvimrc உள்ளதா என்று பார்த்து, " ++"இருந்தால் அவற்றை முறையே user_vimrc மற்றும் user_gvimrc என சேமிக்கின்றது." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/te.po b/po/te.po +index 7607b9f..f7fcf8a 100644 +--- a/po/te.po ++++ b/po/te.po +@@ -8,19 +8,22 @@ + # Sudheesh Singanamalla , 2013 + # Sudheesh Singanamalla , 2013 + # ప్రవీణ్ ఇళ్ళ , 2011 ++# Krishnababu Krothapalli , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-17 07:24+0000\n" +-"Last-Translator: Krishnababu Krothapalli \n" +-"Language-Team: Telugu (http://www.transifex.com/projects/p/fedora-abrt/language/te/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2015-01-06 06:38-0500\n" ++"Last-Translator: Krishnababu Krothapalli \n" ++"Language-Team: Telugu (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/te/)\n" + "Language: te\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -35,7 +38,9 @@ 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" +-msgstr "పంపించబోయే నివేదిక ఎటువంటి రక్షణ దత్తాంశమును కలిగివుండదు. మీ ద్వారా ఇంకా ఏమన్నా కావలసివున్నా తరువాతి సారి మీకు ఇసుగు పుట్టించకుండా సరిపోతుంది.\n" ++msgstr "" ++"పంపించబోయే నివేదిక ఎటువంటి రక్షణ దత్తాంశమును కలిగివుండదు. మీ ద్వారా ఇంకా " ++"ఏమన్నా కావలసివున్నా తరువాతి సారి మీకు ఇసుగు పుట్టించకుండా సరిపోతుంది.\n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +@@ -43,7 +48,9 @@ msgstr "క్రాష్ నివేదికలను స్వయంచా + + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "క్రాష్ నివేదికలను పేరులేకుండా స్వయంచాకలంగా నివేదించుటను చేతనం చేయాలని అనుకొంటున్నారా?" ++msgstr "" ++"క్రాష్ నివేదికలను పేరులేకుండా స్వయంచాకలంగా నివేదించుటను చేతనం చేయాలని " ++"అనుకొంటున్నారా?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -93,10 +100,17 @@ msgstr "ప్రకటనను మూయలేదు: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "మీరు ఫలానా సమస్యకు చెందిన ప్రకటనలను రాకుండా చేయబోతున్నారు. మీరు ఇకపై ఈ సమస్యకు సంబందించి ప్రకటనను చూడబోరు, ఏమైనప్పటికీ, ABRT దానిని గుర్తించగలదు మరియు మీరు దానిని ABRT GUI నుండి నివేదించగల్గుతారు.\n\nమీరు కొనసాగాలని అనుకుంటున్నారా?" ++msgstr "" ++"మీరు ఫలానా సమస్యకు చెందిన ప్రకటనలను రాకుండా చేయబోతున్నారు. మీరు ఇకపై ఈ " ++"సమస్యకు సంబందించి ప్రకటనను చూడబోరు, ఏమైనప్పటికీ, ABRT దానిని గుర్తించగలదు " ++"మరియు మీరు దానిని ABRT GUI నుండి నివేదించగల్గుతారు.\n" ++"\n" ++"మీరు కొనసాగాలని అనుకుంటున్నారా?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -105,7 +119,9 @@ msgstr "హెచ్చరిక" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "ABRT చేత గుర్తించబడిన సమస్యల గురించి వినియోగదారికి తెలుపుటకు నోటిఫికేషన్ ప్రాంతపు ఆప్లెట్" ++msgstr "" ++"ABRT చేత గుర్తించబడిన సమస్యల గురించి వినియోగదారికి తెలుపుటకు నోటిఫికేషన్ " ++"ప్రాంతపు ఆప్లెట్" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -132,6 +148,7 @@ msgid "Ignore forever" + msgstr "ఎప్పటికీ విస్మరించు" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "తెరుచు" +@@ -146,6 +163,7 @@ msgstr "తెలిసిన సమస్య యెదురైనది" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "నివేదించు" +@@ -188,14 +206,19 @@ msgstr "gio చానల్ కొరకు నాన్‌బ్లాకిం + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "సెషన్ నిర్వాహికకు అనుసంధానం తెరుచుటకు విఫలమైంది: '%s', తరువాతి లాగిన్ పైన ప్రకటన తిరిగికనిపించవచ్చు" ++msgstr "" ++"సెషన్ నిర్వాహికకు అనుసంధానం తెరుచుటకు విఫలమైంది: '%s', తరువాతి లాగిన్ పైన " ++"ప్రకటన తిరిగికనిపించవచ్చు" + + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nABRT చేత కొత్త సమస్యలు గుర్తించబడినప్పుడు వినియోగదారికి తెలుపు ఆప్లెట్\n" ++msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"ABRT చేత కొత్త సమస్యలు గుర్తించబడినప్పుడు వినియోగదారికి తెలుపు ఆప్లెట్\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -216,11 +239,14 @@ msgstr "సైలెంట్ షార్టెన్డ్ రిపోర్ + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "స్టాక్ ట్రేస్ పుట్టించుటకు కోర్‌డంప్ ఫైలు తప్పనిసరి ఇది సమయం మరియు జాగా ఖర్చుచేసే కార్యక్రమం. స్టాక్ ట్రేస్ నుండి కోర్‌డంప్‌ను పుట్టించే సేవను ABRT అందిస్తుంది అయితే మీరు కోర్‌డంప్‌ను దాని సేవకు ఎక్కించాలి. ఈ ఐచ్చికం ఆచేతించినచో ABRT కోర్‌డంప్‌ను అడగకుండానే అప్‌లోడ్ చేయును." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"స్టాక్ ట్రేస్ పుట్టించుటకు కోర్‌డంప్ ఫైలు తప్పనిసరి ఇది సమయం మరియు జాగా " ++"ఖర్చుచేసే కార్యక్రమం. స్టాక్ ట్రేస్ నుండి కోర్‌డంప్‌ను పుట్టించే సేవను ABRT " ++"అందిస్తుంది అయితే మీరు కోర్‌డంప్‌ను దాని సేవకు ఎక్కించాలి. ఈ ఐచ్చికం " ++"ఆచేతించినచో ABRT కోర్‌డంప్‌ను అడగకుండానే అప్‌లోడ్ చేయును." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -228,28 +254,42 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT సమస్యాత్మక డేటాను సంచయాలనందు నిల్వవుంచును. ABRT కు వ్రాయదగ్గ సంచయం అవసరమైనప్పుడు, ఆ సంచయం వ్యవస్థ స్థానమునుండి మీ నివాస సంచయంకు కదల్చబడును. ఈ ఐచ్చికం అచేతించినచో ABRT సమస్యాత్మక సంచయాన్ని అడగకుండానే కదుల్చును." ++msgstr "" ++"ABRT సమస్యాత్మక డేటాను సంచయాలనందు నిల్వవుంచును. ABRT కు వ్రాయదగ్గ సంచయం " ++"అవసరమైనప్పుడు, ఆ సంచయం వ్యవస్థ స్థానమునుండి మీ నివాస సంచయంకు కదల్చబడును. ఈ " ++"ఐచ్చికం అచేతించినచో ABRT సమస్యాత్మక సంచయాన్ని అడగకుండానే కదుల్చును." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport అనగా సమస్యయొక్క సంక్షిప్త మరియు పూర్తి ఎనానిమస్ వివరణ. ABRT అనునది uReport ను ఫాస్ట్ గ్లోబల్ డూప్లికేట్ డిటెక్షన్ కొరకు ఉపయోగించును. అప్రమేయ ఆకృతీకరణనందు uReport అనునది నివేదీకరణ కార్యక్రమం ప్రారంభంలోనే పంపును. ఈ ఐచ్చికం చేతనించితే uReportలు అనునవి, సమస్య గుర్తించిన తక్షణమే స్వయంచాలకంగా పంపబడును." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport అనగా సమస్యయొక్క సంక్షిప్త మరియు పూర్తి ఎనానిమస్ వివరణ. ABRT అనునది " ++"uReport ను ఫాస్ట్ గ్లోబల్ డూప్లికేట్ డిటెక్షన్ కొరకు ఉపయోగించును. అప్రమేయ " ++"ఆకృతీకరణనందు uReport అనునది నివేదీకరణ కార్యక్రమం ప్రారంభంలోనే పంపును. ఈ " ++"ఐచ్చికం చేతనించితే uReportలు అనునవి, సమస్య గుర్తించిన తక్షణమే స్వయంచాలకంగా " ++"పంపబడును." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "ఈ ఐచ్చికం చేతనించివుంటే గనుక, సమస్యను ప్రకటించిన బుడగనందలి నివేదించు బటన్ నొక్కి ప్రారంభించబడిన నివేదీకరణ కార్యక్రమం అనునది uReport పంపిన తరువాత అడ్డగించబడును. పూర్తి నివేదన చేయుటకు మీరు అప్రమేయ సమస్యా విహారిణిని ఉపయోగించవచ్చు." ++msgstr "" ++"ఈ ఐచ్చికం చేతనించివుంటే గనుక, సమస్యను ప్రకటించిన బుడగనందలి నివేదించు బటన్ " ++"నొక్కి ప్రారంభించబడిన నివేదీకరణ కార్యక్రమం అనునది uReport పంపిన తరువాత " ++"అడ్డగించబడును. పూర్తి నివేదన చేయుటకు మీరు అప్రమేయ సమస్యా విహారిణిని " ++"ఉపయోగించవచ్చు." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "ఈ ఐచ్చికం చేతనించకపోతే, నివేదించిన సమస్యల గురించన ప్రకటనలను ABRT ఎప్పటికీ చూపదు. షార్టెన్డ్ నివేదీకరణ చేతనమైతేనే దీని ప్రభావంవుంటుంది." ++msgstr "" ++"ఈ ఐచ్చికం చేతనించకపోతే, నివేదించిన సమస్యల గురించన ప్రకటనలను ABRT ఎప్పటికీ " ++"చూపదు. షార్టెన్డ్ నివేదీకరణ చేతనమైతేనే దీని ప్రభావంవుంటుంది." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -259,7 +299,9 @@ msgstr "కోర్‌డంప్‌ను అప్‌లోడ్ చేయ + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "ఈ ఐచ్చికం చేతనించివున్నప్పుడు, సెన్సిటివ్ అవ్వగల డేటా ఏదైనా గుర్తించబడితే ABRT ఎప్పుడూ బగ్ టికెట్‌ను పరిమిత ఏక్సెస్‌తో సృష్టించును." ++msgstr "" ++"ఈ ఐచ్చికం చేతనించివున్నప్పుడు, సెన్సిటివ్ అవ్వగల డేటా ఏదైనా గుర్తించబడితే " ++"ABRT ఎప్పుడూ బగ్ టికెట్‌ను పరిమిత ఏక్సెస్‌తో సృష్టించును." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -274,7 +316,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "కంప్యూటర్ మూసివేయ బడుతున్నప్పుడు లేదా వాడుకరి లాగ్ అవుట్ అవుతున్నప్పుడు అసంపూర్ణ సమస్యలను గుర్తించబడెను. సమస్య యొక్క విలువైన నివేదికలను అందించుటకు, ABRT మిమ్ములను ఈ సమస్యలను దాఖలుచేయడానికి అనుమతించదు." ++msgstr "" ++"కంప్యూటర్ మూసివేయ బడుతున్నప్పుడు లేదా వాడుకరి లాగ్ అవుట్ అవుతున్నప్పుడు " ++"అసంపూర్ణ సమస్యలను గుర్తించబడెను. సమస్య యొక్క విలువైన నివేదికలను అందించుటకు, " ++"ABRT మిమ్ములను ఈ సమస్యలను దాఖలుచేయడానికి అనుమతించదు." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -306,7 +351,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\nప్యాకేజీ డాటాబేస్ క్వరీచేసి ప్యాకేజీ మరియు మూలకం పేరును దాయి" ++msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"ప్యాకేజీ డాటాబేస్ క్వరీచేసి ప్యాకేజీ మరియు మూలకం పేరును దాయి" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -369,7 +417,9 @@ msgstr "సవరణ కొరకు సమస్యను యాక్సెస + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "సంచయం chown చేయుట విఫలమైంది. మరిన్ని వివరాల కొరకు వ్యవస్థ లాగ్‌లను పరిశీలించండి." ++msgstr "" ++"సంచయం chown చేయుట విఫలమైంది. మరిన్ని వివరాల కొరకు వ్యవస్థ లాగ్‌లను " ++"పరిశీలించండి." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -409,11 +459,16 @@ msgstr "ఈ ప్రోగ్రామ్ root గా నడువవలెన + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 యీ సమస్యను నివేదించుటకు మిమ్ములను అనుమతించదు. ఈ సమస్యను పరిష్కరించుటలో అభివృద్దికారులకు సహాయపడుటకు మీకు తగిన సమయం వుంటే, వారిని నేరుగా సంప్రదించండి." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 యీ సమస్యను నివేదించుటకు మిమ్ములను " ++"అనుమతించదు. ఈ సమస్యను పరిష్కరించుటలో అభివృద్దికారులకు సహాయపడుటకు మీకు తగిన " ++"సమయం వుంటే, వారిని నేరుగా సంప్రదించండి." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -450,7 +505,16 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n\n\nUPLOAD_DIRECTORY పర్యవేక్షిస్తోంది మరియు లోనికివచ్చు ఆర్కైవ్లు డంప్‌స్థానమునకు అన్‌పాక్ చేయబడెను.\nabrt.conf నందు తెలుపబడెను\n\nUPLOAD_DIRECTORY ఇవ్వకపోతే, abrt.conf నుండి\nWatchCrashdumpArchiveDir ఐచ్చికం యొక్క విలువను ఉపయోగించును" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"UPLOAD_DIRECTORY పర్యవేక్షిస్తోంది మరియు లోనికివచ్చు ఆర్కైవ్లు " ++"డంప్‌స్థానమునకు అన్‌పాక్ చేయబడెను.\n" ++"abrt.conf నందు తెలుపబడెను\n" ++"\n" ++"UPLOAD_DIRECTORY ఇవ్వకపోతే, abrt.conf నుండి\n" ++"WatchCrashdumpArchiveDir ఐచ్చికం యొక్క విలువను ఉపయోగించును" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -464,19 +528,72 @@ msgstr "ఏకకాలంలో పనిచేయు వారి సంఖ్ + msgid "Maximal cache size in MiB. Default is " + msgstr "గరిష్ట క్యాచీ పరిమాణం MiB నందు. అప్రమేయం" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "ధృవీకరణను ఆఫ్ చేయును" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Red Hat తోడ్పాటు వాడుకరి పేరు" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "Red Hat తోడ్పాటు సంకేతపదం, ఇవ్వకపోతే, దానికొరకు ప్రామ్ట్ జారీ అగును" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "uReport SSL ధృవీకరణపత్రం పాత్స్ లేదా ధృవీకరణపత్రం రకం" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "మీరు --username మరియు --password తెలపాలి" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "మీరు --username లేదా --certificate ఉపయోగించవచ్చు" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "మీరు --username లేదా --anonymous ఉపయోగించవచ్చు" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "మీరు --anonymous లేదా --certificate ఉపయోగించవచ్చు" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "చెల్లని ఆర్గుమెంట్ల సంఖ్య" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "తెలియని ఐచ్చికం విలువ: '%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "సంకేతపదం:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "సంకేతపదం లేకుండా కొనసాగించలేము\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "HTTP ధృవీకృత స్వయంచాలన నివేదీకరణ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "SSL క్లైంట్ ధృవీకృత స్వయంచాలన నివేదీకరణ" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "పేరులేకుండా స్వయంచాలన నివేదీకరణ" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -487,7 +604,14 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "వాడుక: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n UPLOAD_DIR - Directory where uploaded archives are stored\n FILENAME - Uploaded archive file name\n" ++msgstr "" ++"వాడుక: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" ++" UPLOAD_DIR - Directory where uploaded archives are stored\n" ++" FILENAME - Uploaded archive file name\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -594,7 +718,9 @@ msgstr "'%s' టెంపరరీ ఫైలును సృష్టించ + 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:264 +@@ -608,11 +734,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\nసమస్యాత్మక డైరెక్టరీ DIR నందు C/C++ బ్యాక్‌ట్రేస్ విశ్లేషించును, నకిలీ హాష్ జనియింపచేయును,\nబ్యాక్‌ట్రేస్ రేటింగ్ చేయును మరియు క్రాష్ ఫంక్షన్ గుర్తించును" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"సమస్యాత్మక డైరెక్టరీ DIR నందు C/C++ బ్యాక్‌ట్రేస్ విశ్లేషించును, నకిలీ హాష్ " ++"జనియింపచేయును,\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" +@@ -627,7 +760,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\nసమస్యాత్మక డైరెక్టరీ DIR నందు కోర్‌డంప్ యొక్క UUID ను గణించి దాచును" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"సమస్యాత్మక డైరెక్టరీ DIR నందు కోర్‌డంప్ యొక్క UUID ను గణించి దాచును" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -653,14 +789,20 @@ 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" ++"\n" ++"oops సమస్య డైరెక్టరీ DIRకు UUID మరియు DUPHASH గణించి దాచును" + + #: ../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" ++"\n" ++"xorg సమస్య డైరెక్టరీ DIRకు UUID మరియు DUPHASH గణించి దాచును" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format +@@ -672,7 +814,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\nపైథాన్ క్రాష్ డంప్స్ కొరకు UUID మరియు DUPHASH గణించి దాచును" ++msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"పైథాన్ క్రాష్ డంప్స్ కొరకు UUID మరియు DUPHASH గణించి దాచును" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -687,10 +832,10 @@ msgid "Extracting the oops text from core" + msgstr "కోర్ నుండి oops పాఠం బహిర్గతపరుస్తోంది" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "{0} ప్రోసెస్ చేయలేదు:\n" + "{1}" +-msgstr "{0} ప్రోసెస్ చేయలేదు:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -704,14 +849,20 @@ msgstr "Oops పాఠం విజయవంతంగా బహిర్గత + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "హార్డువేర్ దోషాలు గుర్తించబడెనని కెర్నల్ లాగ్ సూచిస్తోంది.\nఇది సాఫ్టువేర్ సమస్యకాదు.\n" ++msgstr "" ++"హార్డువేర్ దోషాలు గుర్తించబడెనని కెర్నల్ లాగ్ సూచిస్తోంది.\n" ++"ఇది సాఫ్టువేర్ సమస్యకాదు.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\nసమస్య డైరెక్టరీ DIR నందు కోర్‌డంప్ విశ్లేషిస్తోంది, బ్యాక్‌ట్రేస్ జనియింపచేసి మరియు దాయును" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"సమస్య డైరెక్టరీ DIR నందు కోర్‌డంప్ విశ్లేషిస్తోంది, బ్యాక్‌ట్రేస్ " ++"జనియింపచేసి మరియు దాయును" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -723,6 +874,7 @@ 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" +@@ -733,7 +885,10 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\nకోర్ డంప్ మరియు సంభందిత బైనరీ నుండి coredump-level బ్యాక్‌ట్రేస్ సృష్టించును" ++msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"కోర్ డంప్ మరియు సంభందిత బైనరీ నుండి coredump-level బ్యాక్‌ట్రేస్ సృష్టించును" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -761,7 +916,8 @@ msgstr "వాడుకరి ఆదేశంపై నిష్క్రమి + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -771,13 +927,35 @@ msgid "" + " -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" ++" --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" +-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" ++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_FILE నందు జాబితా చేసివున్న అన్ని బుల్డ్-ఐడిల కొరకు " ++"డీబగ్‌సమాచారాలను\n" ++"CACHEDIR కు సంస్థాపించును, దీనికొరకు TMPDIR ను తాత్కాలిక స్టేజింగ్ ప్రాంతంగా " ++"ఉపయోగించును.\n" ++"SIZE కన్నా తక్కువ అయ్యేంతవరకు 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}" +@@ -785,7 +963,9 @@ 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} డీబగ్‌యిన్ఫో ఫైళ్ళను పరిశీలించుతోంది, వాటిలో {1} సంస్థాపించబడలేదు" ++msgstr "" ++"కోర్‌డంప్ {0} డీబగ్‌యిన్ఫో ఫైళ్ళను పరిశీలించుతోంది, వాటిలో {1} " ++"సంస్థాపించబడలేదు" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -808,21 +988,33 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "కోర్ డంప్ అప్‌లోడ్ చేయుటకు సరేనా? (ఇది సున్నితమైన డాటా కలిగివుండును). మీ సమాధానం 'వద్దు' అయితే గనుక, స్టాక్ ట్రేస్ స్థానికంగా జనియింపబడును. (అది పెద్ద మొత్తంలో దత్తాంశమును డౌనులోడు చేయవచ్చు)." ++msgstr "" ++"కోర్ డంప్ అప్‌లోడ్ చేయుటకు సరేనా? (ఇది సున్నితమైన డాటా కలిగివుండును). మీ " ++"సమాధానం 'వద్దు' అయితే గనుక, స్టాక్ ట్రేస్ స్థానికంగా జనియింపబడును. (అది " ++"పెద్ద మొత్తంలో దత్తాంశమును డౌనులోడు చేయవచ్చు)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"మీరు స్టాక్ ట్రేస్ స్థానికంగా జనియింపచేయాలని అనుకొనుచున్నారా? (అది పెద్ద " ++"మొత్తంలో దత్తాంశం డౌనులోడు చేయవచ్చు అయితే స్టాక్ ట్రేస్ లేకుండా ఫిర్యాదు " ++"కొనసాగించుట కుదరదు)." + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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) లేదా ఫైళ్ళ (-f) ను DIRs నందు అవి SIZE కన్నా తక్కువ వున్నంత వరకు తొలగించును.\nFILEs నిలిపివుంచబడును (యెప్పుడు తొలగించబడవు)." ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"సమస్యాత్మక డైరెక్టరీలను (-d) లేదా ఫైళ్ళ (-f) ను DIRs నందు అవి SIZE కన్నా " ++"తక్కువ వున్నంత వరకు తొలగించును.\n" ++"FILEs నిలిపివుంచబడును (యెప్పుడు తొలగించబడవు)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -964,7 +1156,9 @@ 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" +@@ -991,7 +1185,10 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\nలాగ్ ఫైలు చూడు, అది పెరిగినప్పుడు పునఃస్థాపించ బడినప్పుడు PROG నడుపు" ++msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"లాగ్ ఫైలు చూడు, అది పెరిగినప్పుడు పునఃస్థాపించ బడినప్పుడు PROG నడుపు" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -1001,20 +1198,26 @@ msgstr "STRలు కనబడకపోతే PROG నడుపవద్దు" + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "పాడైన BIOS కారణంగా కెర్నల్ సమస్య తలెత్తెను. దురదృష్టవశాత్తు, అటువంటి సమస్యలు కెర్నల్ నిర్వాహకుల చే పరిష్కరించబడవు." ++msgstr "" ++"పాడైన BIOS కారణంగా కెర్నల్ సమస్య తలెత్తెను. దురదృష్టవశాత్తు, అటువంటి సమస్యలు " ++"కెర్నల్ నిర్వాహకుల చే పరిష్కరించబడవు." + + #: ../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: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). కల్మషమైన నివేదికలను కెర్నల్ నిర్వాహకులు విశ్లేషించలేక పోయినారు." ++msgstr "" ++"కెర్నల్ సమస్య యెదురైంది, అయితే మీ కెర్నల్ కల్మషమైంది (flags:%s). కల్మషమైన " ++"నివేదికలను కెర్నల్ నిర్వాహకులు విశ్లేషించలేక పోయినారు." + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1026,7 +1229,10 @@ 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" ++"\n" ++"FILE (లేదా ప్రామాణిక ఇన్పుట్) నుండి oops వెలికితీయి" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +@@ -1034,6 +1240,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "కనుగొనబడిన ప్రతి oopsకు కొత్త సమస్య డైరెక్టరీను DIR నందు సృష్టించుము" +@@ -1076,7 +1283,10 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\nXorg క్రాష్ ఫైలు నుండి (లేదా ప్రామాణిక యిన్పుట్) నుండి వెలికితీయి" ++msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Xorg క్రాష్ ఫైలు నుండి (లేదా ప్రామాణిక యిన్పుట్) నుండి వెలికితీయి" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1090,10 +1300,13 @@ msgstr "కనుగొనిన ప్రతి క్రాష్‌నకు + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "తిరిగిట్రేస్ చేసిన సర్వర్ వుపయోగించలేము, యెంచేతంటే క్రాష్ చేలా పెద్దది. స్థానిక రీట్రేస్ ప్రయత్నించు." ++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,10 +1329,10 @@ msgstr "%d పొడవైన HTTP హెడర్ పంపుటలో వి + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "సర్వర్ నుండి అనుకోని HTTP ప్రతిస్పందన: %d\n" + "%s" +-msgstr "సర్వర్ నుండి అనుకోని HTTP ప్రతిస్పందన: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1135,7 +1348,9 @@ msgstr "సర్వర్‌నుండి చెల్లని ప్రత + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "సేవిక రీట్రేస్ ప్యాకేజీ ''%s.%s' ను ప్రోసెస్ చేయలేదు.\nఇది అదికారిక %s రిపోజిటరీలలో భాగమేనా?" ++msgstr "" ++"సేవిక రీట్రేస్ ప్యాకేజీ ''%s.%s' ను ప్రోసెస్ చేయలేదు.\n" ++"ఇది అదికారిక %s రిపోజిటరీలలో భాగమేనా?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1160,7 +1375,9 @@ msgstr "రీట్రేస్ సేవికను వుపయోగిం + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "మీ క్రాష్ యొక్క పరిమాణం %lld బైట్లు, అయితే ట్రేస్ సర్వర్ అనునది %lld బైట్లకు తక్కువైన లేదా సమానమైన క్రాష్ మాత్రమే ఆమోదించును." ++msgstr "" ++"మీ క్రాష్ యొక్క పరిమాణం %lld బైట్లు, అయితే ట్రేస్ సర్వర్ అనునది %lld బైట్లకు " ++"తక్కువైన లేదా సమానమైన క్రాష్ మాత్రమే ఆమోదించును." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +@@ -1188,7 +1405,9 @@ msgstr "అప్‌లోడ్ చేయుటకు వొక ఆర్కై + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "మీ ఆర్కైవ్ యొక్క పరిమాణం %lld బైట్లు, అయితే ట్రేస్ సర్వర్ %lld బైట్లకు సమానమైన లేదా తక్కువైన ఆర్కైవ్‌లను మాత్రమే ఆమోదించును." ++msgstr "" ++"మీ ఆర్కైవ్ యొక్క పరిమాణం %lld బైట్లు, అయితే ట్రేస్ సర్వర్ %lld బైట్లకు " ++"సమానమైన లేదా తక్కువైన ఆర్కైవ్‌లను మాత్రమే ఆమోదించును." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1231,13 +1450,17 @@ msgstr "అప్‌లోడ్ విజయవంతమైంది" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "మీ సమస్యాత్మక డైరెక్టరీ పాడైంది మరియు రీట్రేస్ సర్వర్ చే ప్రోసెస్ చేయబడలేదు." ++msgstr "" ++"మీ సమస్యాత్మక డైరెక్టరీ పాడైంది మరియు రీట్రేస్ సర్వర్ చే ప్రోసెస్ చేయబడలేదు." ++"" + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "ఆర్కైవ్ అనునది చెడ్డ ఫైళ్ళను కలిగివుంది (సిమ్‌లింక్స్ వంటివి) కనుక ప్రోసెస్ చేయబడలేదు." ++msgstr "" ++"ఆర్కైవ్ అనునది చెడ్డ ఫైళ్ళను కలిగివుంది (సిమ్‌లింక్స్ వంటివి) కనుక ప్రోసెస్ " ++"చేయబడలేదు." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1253,10 +1476,10 @@ msgstr "రిట్రేస్ జాబ్ ప్రారంభమైంద + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "టాస్క్ ఐడి: %s\nటాస్క్ సంకేతపదం: %s\n" ++msgstr "టాస్క్ ఐడి: %s\n" ++"టాస్క్ సంకేతపదం: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1264,10 +1487,10 @@ msgstr "సర్వర్‌నుండి చెల్లని ప్రత + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "టాస్క్ స్థితి: %s\n" + "%s\n" +-msgstr "టాస్క్ స్థితి: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1280,7 +1503,9 @@ msgstr "%d పొడవైన HTTP హెడర్ పంపుటకు వి + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "రిట్రేస్ విఫలమైంది. తరువాత ప్రయత్నించుము వోకవేళ యీ సమస్య యింకావుంటే యీ సమస్యను నివేదించుము." ++msgstr "" ++"రిట్రేస్ విఫలమైంది. తరువాత ప్రయత్నించుము వోకవేళ యీ సమస్య యింకావుంటే యీ " ++"సమస్యను నివేదించుము." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1294,7 +1519,9 @@ msgstr "సర్వర్‌ను రీట్రేస్ చేయుటక + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "ఆర్కైవ్‌ను అప్‌లోడ్ చేయుటకు ముందుగా యిచ్చిన ప్యాకేజీను రీట్రేస్ సర్వర్ ప్రోసెస్ చేయగలదో లేదో పరిశీలించవద్దు" ++msgstr "" ++"ఆర్కైవ్‌ను అప్‌లోడ్ చేయుటకు ముందుగా యిచ్చిన ప్యాకేజీను రీట్రేస్ సర్వర్ " ++"ప్రోసెస్ చేయగలదో లేదో పరిశీలించవద్దు" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1326,7 +1553,8 @@ msgstr "పోలింగ్ ఆపరేషన్ల కొరకు ఆలస + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "(డీబగ్) దీనినందు డంప్ dir నుండి సృష్టించిన తాత్కాలిక ఆర్కైవ్‌ను తొలగించవద్దు" ++msgstr "" ++"(డీబగ్) దీనినందు డంప్ dir నుండి సృష్టించిన తాత్కాలిక ఆర్కైవ్‌ను తొలగించవద్దు" + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1344,7 +1572,9 @@ msgstr "సర్వర్ పైన మీ టాస్క్ సంకేత + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client [options]\nచర్యలు: create/status/backtrace/log/batch/exploitable" ++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 +@@ -1376,14 +1606,19 @@ msgstr "స్థానిక GNU డీబగ్గర్" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "డీబగ్‌యిన్ఫో ప్యాకేజీలను డౌన్‌లోడ్ చేసి మరియు GDB వుపయోగించి స్థానికంగా బ్యాక్‌ట్రేస్ సృష్టించు" ++msgstr "" ++"డీబగ్‌యిన్ఫో ప్యాకేజీలను డౌన్‌లోడ్ చేసి మరియు GDB వుపయోగించి స్థానికంగా " ++"బ్యాక్‌ట్రేస్ సృష్టించు" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "డీబగ్‌యిన్ఫో ప్యాకేజీలను డౌన్‌లోడ్ చేయవలసివుంటుంది, దీనికి తగిన సమయం పడుతుంది, మరియు డిస్కు జాగాను తీసుకొనును. రీట్రేస్‌సర్వర్ వలె కాక, కోర్‌డంప్ ను రిమోట్ సర్వర్లకు పంపదు." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"డీబగ్‌యిన్ఫో ప్యాకేజీలను డౌన్‌లోడ్ చేయవలసివుంటుంది, దీనికి తగిన సమయం " ++"పడుతుంది, మరియు డిస్కు జాగాను తీసుకొనును. రీట్రేస్‌సర్వర్ వలె కాక, కోర్‌డంప్ " ++"ను రిమోట్ సర్వర్లకు పంపదు." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1391,12 +1626,18 @@ msgstr "విశ్లేషణ కొరకు కోర్ డంప్‌న + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "కోర్‌డంప్‌ను సర్వర్‌కు అప్‌లోడ్ చేయును, యిది బ్యాక్‌ట్రేస్‌ను సృష్టించి మరియు దానిని తిప్పియిచ్చును. లాభాలు: డీబగ్‌యిన్ఫో డౌన్‌లోడ్ చేయవలసిన అవసరం లేదు. రీట్రేస్ సర్వర్ యొక్క డీబగ్‌యిన్ఫోల డాటాబేస్ పూర్తిగా వుండును. రీట్రేస్ సర్వర్ మంచి బ్యాక్‌ట్రేస్‌లను జనియింపచేయగలదు. నష్టాలు: మీరు అప్‌లోడ్ చేసిన కోర్‌డంప్ క్రాష్‌డ్ ప్రోగ్రామ్‌నుండి మొత్తం డాటాను కలిగివుంటుంది, మీ వ్యక్తిగత డాటా యేదైనా వుంటే దానితో సహా." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"కోర్‌డంప్‌ను సర్వర్‌కు అప్‌లోడ్ చేయును, యిది బ్యాక్‌ట్రేస్‌ను సృష్టించి " ++"మరియు దానిని తిప్పియిచ్చును. లాభాలు: డీబగ్‌యిన్ఫో డౌన్‌లోడ్ చేయవలసిన అవసరం " ++"లేదు. రీట్రేస్ సర్వర్ యొక్క డీబగ్‌యిన్ఫోల డాటాబేస్ పూర్తిగా వుండును. " ++"రీట్రేస్ సర్వర్ మంచి బ్యాక్‌ట్రేస్‌లను జనియింపచేయగలదు. నష్టాలు: మీరు " ++"అప్‌లోడ్ చేసిన కోర్‌డంప్ క్రాష్‌డ్ ప్రోగ్రామ్‌నుండి మొత్తం డాటాను " ++"కలిగివుంటుంది, మీ వ్యక్తిగత డాటా యేదైనా వుంటే దానితో సహా." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1421,10 +1662,13 @@ msgstr "సురక్షితం కాని అనుసంధానంన + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "సురక్షితం కాని అనుసంధానం అనుమతించుటకు \"insecure\" వ్రాయి <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"సురక్షితం కాని అనుసంధానం అనుమతించుటకు \"insecure\" వ్రాయి <a href=\"https:" ++"//fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1438,7 +1682,9 @@ msgstr "~/.xsession-errors ఫైలునుండి సంభందిత ల + 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." +@@ -1471,7 +1717,9 @@ msgstr "ధృవీకరణపత్రం అనునది నమ్మద + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "ధృవీకరణపత్రం సబ్జక్ట్ పేరు '%s' అనునది టార్గెట్ హోస్టు పేరు '%s' తో సరిపోలుటలేదు." ++msgstr "" ++"ధృవీకరణపత్రం సబ్జక్ట్ పేరు '%s' అనునది టార్గెట్ హోస్టు పేరు '%s' తో " ++"సరిపోలుటలేదు." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1596,7 +1844,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\nబోదీ సేవికపై నవీకరణల కొరకు వెతుకుము" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"బోదీ సేవికపై నవీకరణల కొరకు వెతుకుము" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1614,16 +1865,22 @@ msgstr "అందుబాటులోని నవీకరణల కన్న + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "ఒక నవీకరణ వుంది అది మీ సమస్యను పరిష్కరించవచ్చు. మీదు దానిని యిది నడుపుట ద్వారా సంస్థాపించవచ్చు: %s. మీరు బగ్ ఫిర్యాదు కొనసాగించాలని అనుకొనుచున్నారా?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"ఒక నవీకరణ వుంది అది మీ సమస్యను పరిష్కరించవచ్చు. మీదు దానిని యిది నడుపుట " ++"ద్వారా సంస్థాపించవచ్చు: %s. మీరు బగ్ ఫిర్యాదు కొనసాగించాలని అనుకొనుచున్నారా?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] FILE...\n\noops సందేశం విడగొట్టుటకు ఫైళ్ళను స్కాన్ చేయును. వాటిని ముద్రించలేదు మరియు/లేదా తొలగించలేదు." ++msgstr "" ++"& [-v] [-od] FILE...\n" ++"\n" ++"oops సందేశం విడగొట్టుటకు ఫైళ్ళను స్కాన్ చేయును. వాటిని ముద్రించలేదు మరియు/" ++"లేదా తొలగించలేదు." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1674,7 +1931,9 @@ msgstr "అదనపు సమాచారం కొరకు 'abrt-cli COMMAND + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +-msgstr "Red Hat వినియోగదారి పోర్టల్ నందు ఒక కేస్ గురించి తెలపడానికి %s 'abrt-cli report %s' నడుపవలెను\n" ++msgstr "" ++"Red Hat వినియోగదారి పోర్టల్ నందు ఒక కేస్ గురించి తెలపడానికి %s 'abrt-cli " ++"report %s' నడుపవలెను\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1700,9 +1959,12 @@ msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్న + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "స్వయంచాలక నివేదీకరణ విశేషణం అచేతనం చేయబడెను. root అనుమతులగల వాడుకరితో\n'abrt-auto-reporting enabled' జారీచేసి దానిని చేతనం చేయుము.\n" ++msgstr "" ++"స్వయంచాలక నివేదీకరణ విశేషణం అచేతనం చేయబడెను. root అనుమతులగల వాడుకరితో\n" ++"'abrt-auto-reporting enabled' జారీచేసి దానిని చేతనం చేయుము.\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1732,7 +1994,9 @@ 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/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1767,7 +2031,8 @@ msgstr "తరువాతి సమస్య కొరకు ENTER వత్త + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "--since ఎగ్రిమెంట్ లేకుండా, మొత్తం గుర్తించిన సమస్యలనందు ఆవృతంచెందును." ++msgstr "" ++"--since ఎగ్రిమెంట్ లేకుండా, మొత్తం గుర్తించిన సమస్యలనందు ఆవృతంచెందును." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +@@ -1777,7 +2042,9 @@ msgstr "టైమ్‌స్టాంప్ తరువాత గుర్త + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "కోర్ డంప్‌ను దూరస్థ రీట్రేస్ సేవికకు పంపి విశ్లేషణ జరుపుము లేదా దూరస్థ విశ్లేషణ విఫలమైతే స్థానిక విశ్లేషమ జరపండి" ++msgstr "" ++"కోర్ డంప్‌ను దూరస్థ రీట్రేస్ సేవికకు పంపి విశ్లేషణ జరుపుము లేదా దూరస్థ " ++"విశ్లేషణ విఫలమైతే స్థానిక విశ్లేషమ జరపండి" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1785,10 +2052,17 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "కోర్‌డంప్‌ను సేవికకు యెక్కించును, అది బ్యాక్‌ట్రేస్ పుట్టించి దానిని తిప్పియిచ్చును. ఒకవేళ వాడుకరి వారి కోర్‌డంప్ యెక్కించుటకు యిష్టపడకపోతే ఆ ఘటన స్థానిక విశ్లేషణ జరుపును. దూరస్థ విశ్లేషణ విఫలమైతే స్థానిక విశ్లేషణ నడుచును. లాభాలు: డీబగ్‌సమాచారం డౌన్‌లోడ్లు అవసరంలేదు. డీబగ్‌సమాచారపు సేవిక డాటాబేస్ రీట్రేస్ పూర్తిగా చేయును. రీట్రేస్ సేవిక వుత్తమ బ్యాక్‌ట్రేసెస్ పుట్టించవచ్చు. నష్టాలు: మీరు యెక్కించిన కోర్‌డంప్ క్రాష్డ్ ప్రోగ్రామ్ నందలి మొత్తం దత్తాంశం కలిగివుంటుంది, మీ వ్యక్తిగత దత్తాంశంతో సహా, యేదైనా వుంటే." ++msgstr "" ++"కోర్‌డంప్‌ను సేవికకు యెక్కించును, అది బ్యాక్‌ట్రేస్ పుట్టించి దానిని " ++"తిప్పియిచ్చును. ఒకవేళ వాడుకరి వారి కోర్‌డంప్ యెక్కించుటకు యిష్టపడకపోతే ఆ ఘటన " ++"స్థానిక విశ్లేషణ జరుపును. దూరస్థ విశ్లేషణ విఫలమైతే స్థానిక విశ్లేషణ నడుచును. " ++"లాభాలు: డీబగ్‌సమాచారం డౌన్‌లోడ్లు అవసరంలేదు. డీబగ్‌సమాచారపు సేవిక డాటాబేస్ " ++"రీట్రేస్ పూర్తిగా చేయును. రీట్రేస్ సేవిక వుత్తమ బ్యాక్‌ట్రేసెస్ " ++"పుట్టించవచ్చు. నష్టాలు: మీరు యెక్కించిన కోర్‌డంప్ క్రాష్డ్ ప్రోగ్రామ్ నందలి " ++"మొత్తం దత్తాంశం కలిగివుంటుంది, మీ వ్యక్తిగత దత్తాంశంతో సహా, యేదైనా వుంటే." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1797,13 +2071,17 @@ msgstr "VM కోర్ విశ్లేషించు" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "కెర్నల్ డీబగ్‌యిన్ఫో ప్యాకేజీలను సంస్థాపించు, కెర్నల్ లాగ్ మరియు oops సందేశంను సృష్టించు" ++msgstr "" ++"కెర్నల్ డీబగ్‌యిన్ఫో ప్యాకేజీలను సంస్థాపించు, కెర్నల్ లాగ్ మరియు oops " ++"సందేశంను సృష్టించు" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "కెర్నల్ డీబగ్‌యిన్ఫో ప్యాకేజీలను సంస్థాపించవలసివుంది, యిది కొంత సమయం తీసుకొనవచ్చును, మరియు డిస్కు జాగాను కూడా తీసుకొనును." ++msgstr "" ++"కెర్నల్ డీబగ్‌యిన్ఫో ప్యాకేజీలను సంస్థాపించవలసివుంది, యిది కొంత సమయం " ++"తీసుకొనవచ్చును, మరియు డిస్కు జాగాను కూడా తీసుకొనును." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1817,7 +2095,9 @@ msgstr "ఆకృతీకరణను అనువర్తనం యొక్ + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "gconftool-2 --recursive-list /apps/executable నడుపును మరియు దానిని 'gconf_subtree' మూలకం వలె దాయును." ++msgstr "" ++"gconftool-2 --recursive-list /apps/executable నడుపును మరియు దానిని " ++"'gconf_subtree' మూలకం వలె దాయును." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1831,7 +2111,9 @@ 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 "అక్కడ vimrc మరియు gvimrc ఫైళ్ళు /etc నందు వున్నాయేమో పరిశీలించును మరియు వాటిని system_vimrc మరియు system_gvimrc వలె దాయును." ++msgstr "" ++"అక్కడ vimrc మరియు gvimrc ఫైళ్ళు /etc నందు వున్నాయేమో పరిశీలించును మరియు " ++"వాటిని system_vimrc మరియు system_gvimrc వలె దాయును." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1843,9 +2125,11 @@ msgstr "మీ హోమ్ డైరెక్టరీనుండి .vimrc + + #: ../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 "మీ హోమ్ డైరెక్టరీనందు .vimrc మరియు .gvimrc వున్నాయేమో పరిశీలించును మరియు వాటిని user_vimrc మరియు user_gvimrc గా దాయును." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"మీ హోమ్ డైరెక్టరీనందు .vimrc మరియు .gvimrc వున్నాయేమో పరిశీలించును మరియు " ++"వాటిని user_vimrc మరియు user_gvimrc గా దాయును." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/tg.po b/po/tg.po +index 617fb01..149db94 100644 +--- a/po/tg.po ++++ b/po/tg.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Tajik (http://www.transifex.com/projects/p/fedora-abrt/language/tg/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Tajik (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/tg/)\n" + "Language: tg\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Гузориш" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/th.po b/po/th.po +index 2409f30..f971c2b 100644 +--- a/po/th.po ++++ b/po/th.po +@@ -5,218 +5,277 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Thai (http://www.transifex.com/projects/p/fedora-abrt/language/th/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Thai (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/th/)\n" + "Language: th\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +-msgstr "" ++msgstr "เครื่องมือรายงานปัญหาอัตโนมัติ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "ABRT notification applet" +-msgstr "" ++msgstr "Applet การแจ้งเตือน ABRT" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" + msgstr "" ++"รายงานซึ่งจะถูกส่งไม่มีข้อมูลที่สำคัญในการรักษาความปลอดภัย ดังนั้น " ++"จึงไม่จำเป็นต้องรบกวนคุณในครั้งต่อไป และไม่ต้องดำเนินการใด ๆ\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +-msgstr "" ++msgstr "คุณต้องการเปิดใช้การรายงานปัญหาที่รายงานแล้วโดยอัตโนมัติหรือไม่?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "" ++"คุณต้องการเปิดใช้การรายงานปัญหาที่รายงานจากผู้ไม่มีชื่อแล้วโดยอัตโนมัติหรือไม่?" + ++# translation auto-copied from project abrt, version master, document abrt + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" ++msgstr "ไม่สามารถเชื่อมต่อไปยัง NetworkManager เหนือ DBus: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" ++msgstr "ไม่สามารถตรวจสอบสถานะเครือข่ายผ่าน NetworkManager: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:342 + #, c-format + msgid "Can't take ownership of '%s'" +-msgstr "" ++msgstr "ไม่สามารถเป็นเจ้าของ '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:350 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "" ++msgstr "ไม่สามารถเปิดไดเรกทอรีสำหรับการเขียน '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:417 + msgid "A problem has been detected" +-msgstr "" ++msgstr "พบปัญหา" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" +-msgstr "" ++msgstr "พบปัญหาในแพกเกจ %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s และข้อมูลการวินิจฉัยถูกส่งแล้ว" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:589 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" +-msgstr "" ++msgstr "ไม่สามารถดำเนินการคำสั่ง '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" +-msgstr "" ++msgstr "ไม่สามารถปิดการแจ้งเตือน: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +-msgstr "" ++msgstr "คำเตือน" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" ++"Applet พื้นที่การแจ้งเตือนที่เตือนผู้ใช้งานต่าง ๆ เรื่องปัญหาที่ ABRT พบ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "" ++msgstr "translator-credits" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:858 + msgid "_Quit" +-msgstr "" ++msgstr "_ออก" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:860 + msgid "Hide" +-msgstr "" ++msgstr "ซ่อน" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:862 + msgid "_About" +-msgstr "" ++msgstr "_เกี่ยวกับ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:930 + msgid "Problem detected" +-msgstr "" ++msgstr "พบปัญหาโปรแกรม" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:980 + msgid "Ignore forever" +-msgstr "" ++msgstr "ละเว้นตลอด" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" +-msgstr "" ++msgstr "เปิด" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" +-msgstr "" ++msgstr "ปัญหาถูกรายงานไปแล้ว" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" +-msgstr "" ++msgstr "มีปัญหาที่รู้จักเกิดขึ้น" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" +-msgstr "" ++msgstr "รายงาน" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" +-msgstr "" ++msgstr "มีปัญหาเกิดขึ้น" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" +-msgstr "" ++msgstr "ปัญหาถูกรายงานแล้ว" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" +-msgstr "" ++msgstr "มีปัญหาใหม่เกิดขึ้น" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" +-msgstr "" ++msgstr "ไม่สามารถแสดงการแจ้งเตือน: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #. TODO: Terminate child's process? + #: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" +-msgstr "" ++msgstr "ไม่สามารถอ่านจาก gio channel: '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" +-msgstr "" ++msgstr "ไม่สามารถตั้งการเข้ารหัสบน gio channel: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" ++msgstr "ไม่สามารถเปิด nonblocking mode ให้ gio channel: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" ++"การเปิดการเชื่อมต่อไปยังตัวจัดการวาระล้มเหลว: '%s' " ++"การแจ้งเตือนจะปรากฏขึ้นอีกครั้งหลังจากที่คุณเข้าระบบครั้งต่อไป" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Applet ซึ่งเตือนผู้ใช้เมื่อพบปัญหาใหม่ถูกตรวจพบโดย ABRT\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "ถามก่อนขโมยข้อมูลในไดเรกทอรี" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "ส่ง uReport อัตโนมัติ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "การรายงานที่สั้น" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "การรายงานที่สั้นแบบเงียบๆ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" ++"แฟ้ม coredump เป็นสิ่งที่จำเป็นสำหรับการสร้าง stack trace " ++"ซึ่งเป็นเวลาและการดำเนินการการใช้พื้นที่ ABRT จะใหบริการโดยการสร้าง stack " ++"trace จาก coredump แต่คุณต้องอัปโหลด coredump บนบริการนี้ก่อน " ++"ด้วยทางเลือกนี้ การปิดใช้งาน ABRT จะอัปโหลด coredump โดยไม่ถามก่อน" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" + "ABRT stores problem data in directories. Whenever ABRT needs writable " +@@ -224,31 +283,48 @@ msgid "" + "directory. With this option disabled ABRT will move the problem directory " + "without asking." + msgstr "" ++"ABRT เก็บข้อมูลของปัญหาไว้ในไดเรกทอรี เมื่อใดก็ตามที่ ABRT " ++"ต้องใช้ไดเรกทอรีที่เขียนได้ " ++"ไดเรกทอรีจะถูกย้ายที่ตั้งจากระบบไปยังไดเรกทอรีหลักของคุณ ด้วยทางเลือกนี้ " ++"การปิดใช้งาน ABRT จะย้ายไดเรกทอรีปัญหาโดยไม่ถามก่อน" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" ++"uReport เป็นรายละเอียดปัญหาที่สั้นและไม่บอกชื่อ ซึ่ง ABRT ใช้ uReport " ++"สำหรับการตรวจปัญหาจากทั่วโลกที่เร็วขึ้น ในค่ากำหนดเริ่มต้น uReport " ++"จะถูกส่งเมื่อตอนต้นของการประมวลผลการรายงาน ด้วยทางเลือกนี้ uReport " ++"จะถูกส่งทันทีโดยอัตโนมัติหลังพบปัญหา" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" ++"ด้วยทางเลือกนี้ การประมวลผลการรายงาน หากเปิดใช้แล้ว จะเริ่มต้นโดยการคลิกปุ่ม " ++"รายงาน ในฟองการแจ้งเตือนปัญหาจะถูกขัดจังหวะหลังจากที่ uReport ถูกส่งแล้ว " ++"คุณสามารถใช้ตัวเรียกดูปัญหาค่าเริ่มต้นเพื่อทำรายงานสมบูรณ์ได้เสมอ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" ++"ด้วยทางเลือกนี้ ABRT ที่เปิดใช้งานแล้วจะไม่แจ้งเตือนปัญหาที่รายงานแล้ว " ++"มีผลก็ต่อเมื่อการรายงานสั้นถูกเปิดใช้งาน" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "ถามก่อนอัปโหลด coredump" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" +@@ -256,53 +332,69 @@ msgid "" + "access if possibly sensitive data are dected." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "ขอตั๋วส่วนตัวสำหรับข้อมูลสำคัญ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "เตือนปัญหาที่ยังไม่สมบูรณ์" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" ++"ปัญหาที่ไม่สมบูรณ์จะถูกพบขณะปิดเครื่องหรือออกจากระบบ " ++"ในการจัดทำรายงานปัญหาที่มีค่า ABRT จะไม่อนุญาตให้คุณส่งรายงานปัญหาเหล่านี้" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +-msgstr "" ++msgstr "_ปิด" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" +-msgstr "" ++msgstr "_ค่าเริ่มต้น" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "" ++msgstr "การกำหนดการรายงานปัญหา" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +-msgstr "" ++msgstr "เกี่ยวกับ System Config ABRT" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "" ++msgstr "เกี่ยวกับ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:106 + msgid "Quit" +-msgstr "" ++msgstr "ออก" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:382 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" ++"& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"สอบถามฐานข้อมูลแพกเกจ แล้วบันทึกแพกเกจรวมทั้งชื่อคอมโพเนนต์ด้วย" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 +@@ -312,129 +404,162 @@ msgstr "" + #: ../src/plugins/abrt-action-generate-backtrace.c:55 + #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 + msgid "Problem directory" +-msgstr "" ++msgstr "ไดเรกทอรีปัญหา" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:395 + msgid "Configuration file" +-msgstr "" ++msgstr "แฟ้มค่ากำหนด" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" +-msgstr "" ++msgstr "& [options]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:797 + msgid "Use NUM as client uid" +-msgstr "" ++msgstr "ใช้ NUM เป็น client uid" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++msgstr "บันทึกไปที่ปูมระบบ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" +-msgstr "" ++msgstr "เพิ่มชื่อโปรแกรมที่ต้องการบันทึก" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:123 + msgid "Unknown error" +-msgstr "" ++msgstr "ข้อผิดพลาดที่ไม่รู้จัก" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:188 + #, c-format + msgid "'%s' is not a valid problem directory" +-msgstr "" ++msgstr "'%s' ไม่ใช่ไดเรกทอรีปัญหาที่ถูกต้อง" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:223 + #, c-format + msgid "'%s' element can't be modified" +-msgstr "" ++msgstr "element '%s' แก้ไม่ได้" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 + #: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" +-msgstr "" ++msgstr "ไม่มีตัวตน" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:256 + msgid "Can't access the problem for modification" +-msgstr "" ++msgstr "ไม่สามารถเข้าถึงปัญหาเพื่อแก้ไข" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" ++"การ Chowning directory ล้มเหลว กรุณาตรวจสอบปูมระบบสำหรับข้อมูลเพิ่มเติม" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:559 + #, c-format + msgid "'%s' is not a valid element name" +-msgstr "" ++msgstr "'%s' ไม่ใช่ชื่อ element ที่ถูกต้อง" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:580 + #, c-format + msgid "Can't get size of '%s'" +-msgstr "" ++msgstr "ไม่สามารถรับขนาด '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:595 + msgid "No problem space left" +-msgstr "" ++msgstr "ไม่มีพื้นที่ว่างเหลือสำหรับปัญหา" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:627 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" ++msgstr "ไม่สามารถลบ element '%s' จากไดเรกทอรีปัญหา '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:763 ../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 "" ++"ชื่อ '%s' หายไปแล้ว กรุณาตรวจสอบ หากบริการอื่นที่เป็นเจ้าของชื่อไม่ทำงาน\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" +-msgstr "" ++msgstr "ออกหลังจากไม่ใช้งาน NUM วินาที" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." +-msgstr "" ++msgstr "โปรแกรมนี้ต้องเรียกใช้ในฐานะผู้ดูแลระบบ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 "" +- ++"detected while computer is shutting down or user is logging out. In order to " ++"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 จะไม่อนุญาตให้คุณส่งรายงานปัญหาเหล่านี้ " ++"หากคุณมีเวลา และอยากช่วยนักพัฒนาในความพยายามของพวกเขาที่จะเรียงลำดับปัญหานี้ " ++"ให้ติดต่อพวกเขาโดยตรง" ++ ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +-msgstr "" ++msgstr "อย่าทำงานแบบภูติ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:498 + msgid "Log to syslog even with -d" +-msgstr "" ++msgstr "บันทึกไปที่ปูมระบบแม้แต่ -d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:388 + msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" ++msgstr "& [-v -i] -e|--event EVENT DIR..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:396 + msgid "Run EVENT on DIR" +-msgstr "" ++msgstr "เรียกใช้ EVENT บน DIR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:397 + msgid "Communicate directly to the user" +-msgstr "" ++msgstr "สื่อสารกับผู้ใช้โดยตรง" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "" ++msgstr "ไม่มีใครว่างแล้วละ กำลังละเว้นแฟ้มเก็บถาวร '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +@@ -446,30 +571,97 @@ msgid "" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"เฝ้าดู UPLOAD_DIRECTORY และแกะแฟ้มเก็บถาวรลงใน DumpLocation\n" ++"ที่ระบุไว้ใน abrt.conf\n" ++"\n" ++"หาก UPLOAD_DIRECTORY ไม่ได้ถูกให้ไว้ ให้ใช้ค่าของตัวเลือก " ++"WatchCrashdumpArchiveDir จาก abrt.conf" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +-msgstr "" ++msgstr "Daemize" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "" ++msgstr "จำนวนคนงานที่ทำงานพร้อมกัน ค่าเริ่มต้นคือ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "" ++msgstr "จำนวนสูงสุดของจำนวนเมกะไบต์ของแคช ค่าเริ่มต้นคือ" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " ++msgstr "& [ " ++ ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 +-msgid "Invalid number of arguments" ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:251 ++msgid "Invalid number of arguments" ++msgstr "จำนวนอาร์กิวเมนต์ไม่ถูกต้อง" ++ ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" ++msgstr "ไม่รู้ค่าของตัวเลือก: '%s'\n" ++ ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" + msgstr "" + + #: ../src/daemon/abrt-handle-upload.in:69 +@@ -549,54 +741,66 @@ msgstr "" + msgid "'{0}' processed successfully" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" +-msgstr "" ++msgstr "กำลังสร้าง backtrace" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:42 + #, c-format + msgid "Can't connect to system DBus: %s" +-msgstr "" ++msgstr "ไม่สามารถเชื่อมต่อไปยัง DBus ระบบ: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" +-msgstr "" ++msgstr "ไม่สามารถทำการ chown '%s': '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" +-msgstr "" ++msgstr "การลบไดเรกทอรีปัญหาล้มเหลว: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" ++msgstr "ไม่สามารถรับข้อมูลปัญหาจาก abrt-dbus: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" ++msgstr "ไม่สามารถรับรายการปัญหาจาก abrt-dbus: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +-msgstr "" ++msgstr "ไม่สามารถสร้างแฟ้มชั่วคราว '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" ++"ไม่สามารถ เขียน ให้ '%s' ปัญหา '%s' จะไม่ถูกลบออกจากรายการปัญหาที่ถูกละทิ้ง " ++"'%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" ++msgstr "ไม่สามารถเปลี่ยนชื่อ '%s' จาก '%s' และลบปัญหา '%s' ล้มเหลว" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" + "& [options] -d DIR\n" +@@ -604,25 +808,37 @@ msgid "" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" + msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"วิเคราะห์ C/C++ backtrace, สร้างแฮชซ้ำ, backtrace rating,\n" ++"และระบุการทำงานผิดพลาดในไดเรกทอรีปัญหา DIR" + ++# translation auto-copied from project abrt, version master, document abrt ++#. + #. * 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 "" ++msgstr "การวิเคราะห์ Backtrace ล้มเหลวสำหรับ %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" +-msgstr "" ++msgstr "ไม่พบ Crash thread" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-c.c:67 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"คำนวณและบันทึกค่า UUID ของ coredump ในไดเรกทอรีปัญหา DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -643,120 +859,160 @@ msgstr "" + msgid "COREFILE is not specified" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"คำนวณและบันทึกค่า UUID และ DUPHASH สำหรับ oops problem directory DIR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" ++"\n" ++"คำนวณและบันทึกค่า UUID และ DUPHASH สำหรับ xorg problem directory DIR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" ++msgstr "โมดูล '%s' ถูกโหลดแล้ว - ไม่ต้องรายงานปัญหานี้" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"คำนวณและบันทึกค่า UUID และ DUPHASH ของ python crash dumps" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" ++msgstr "วิธีใช้งาน: {0} [-v[v]] [--core=VMCORE]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" +-msgstr "" ++msgstr "ไม่มีแฟ้ม {0}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" +-msgstr "" ++msgstr "กำลังแยกข้อความ oops จาก core" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "ไม่สามารถประมวลผล {0}:\n" + "{1}" +-msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +-msgstr "" ++msgstr "ไม่สามารถแยกข้อความ oops: '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" +-msgstr "" ++msgstr "แยกข้อความ Oops สำเร็จ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "" ++msgstr "ปูมของเคอร์เนลบ่งชี้ว่าพบปัญหาฮาร์ดแวร์\n" ++"นี่อาจจะไม่ใช่ปัญหาซอฟต์แวร์\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" + msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"วิเคราะห์ coredump ในไดเรกทอรีปัญหา DIR, สร้างและบันทึก backtrace" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +-msgstr "" ++msgstr "ไดเรกทอรี debuginfo เพิ่มเติม" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "" ++msgstr "ฆ่า gdb หากถูกเรียกมากกว่า NUM วินาที" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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 "" ++msgstr "Backtrace ได้สร้างและบันทึกแล้ว เป็นจำนวน %u ไบต์" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" + msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"สร้าง coredump-level backtrace จาก core dump และ corresponding binary" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +-msgstr "" ++msgstr "อย่า hash ลายนิ้วมือ" + ++# translation auto-copied from project abrt, version master, document abrt + #. Let user know what's going on + #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 + msgid "Generating core_backtrace" +-msgstr "" ++msgstr "กำลังสร้าง core_backtrace" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" +-msgstr "" ++msgstr "ข้อผิดพลาด: GDB ไม่ตอบข้อมูลใด" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" +-msgstr "" ++msgstr "ข้อผิดพลาด: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" +-msgstr "" ++msgstr "การเลิกทำตามคำสั่งของผู้ใช้งาน" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:88 + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,70 +1022,112 @@ msgid "" + " -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" ++" --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" + msgstr "" ++"วิธีใช้งาน: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"ติดตั้ง debuginfos สำหรับ build-ids ทั้งหมดที่อยู่ในรายการ BUILD_IDS_FILE\n" ++"ไปยัง CACHEDIR โดยใช้ TMPDIR เป็น temporary staging area.\n" ++"แฟ้มเก่าใน CACHEDIR จะถูกลบจนกว่ามันจะมีขนาดเล็กกว่า 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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +-msgstr "" ++msgstr "ไม่สามารถเปิด {0}: {1}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "" ++"Coredump references {0} debuginfo files, {1} ของพวกมันไม่ได้ถูกติดตั้ง" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} ของแฟ้ม debuginfo ไม่ได้ถูกติดตั้ง" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "แฟ้มที่ขอไว้หายไป: {0}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +-msgstr "" ++msgstr "แฟ้ม debuginfo หายไป: {0}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:231 + msgid "All debuginfo files are available" +-msgstr "" ++msgstr "แฟ้ม debuginfo ทั้งหมดมีให้ใช้งาน" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" ++"ตกลงจะอัปโหลด core dump หรือไม่? (อาจมีข้อมูลสำคัญ) หากคุณตอบ 'ไม่' stack " ++"trace จะถูกสร้างอยู่ในเครื่อง (อาจจะต้องดาวน์โหลดข้อมูลขนาดใหญ่หลวง)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"คุณต้องการสร้าง stack trace บนเครื่องหรือไม่? " ++"(อาจดาวน์โหลดข้อมูลขนาดใหญ่หลวง แต่จะรายงานไม่ได้ หากไม่มี stack trace)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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) หรือแฟ้ม (-f) ใน DIRs จนกว่าจะมีขนาดเล็กกว่า SIZE.\n" ++"FILEs จะถูกสงวนไว้ (ไม่ลบ)." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +-msgstr "" ++msgstr "ลบไดเรกทอรีปัญหาที่ว่าง" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:237 + msgid "Delete files inside this directory" +-msgstr "" ++msgstr "ลบแฟ้มที่อยู่ในไดเรกทอรีนี้" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" +-msgstr "" ++msgstr "สงวนไดเรกททอรีนี้" + + #: ../src/plugins/abrt-action-ureport:59 + #, c-format +@@ -863,77 +1161,93 @@ msgstr "" + msgid "reporter-ureport failed with exit code %d" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +-msgstr "" ++msgstr "สัญญาณที่ถูกส่งจากโค้ดของ userspace" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" +-msgstr "" ++msgstr "สัญญาณที่ถูกส่งจาก timer/IO/async event" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" ++msgstr "สัญญาณที่มี siginfo.si_code = SI_USER" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" +-msgstr "" ++msgstr "สัญญาณท่ี่มาจากการเขียนไปยัง closed pipe" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" +-msgstr "" ++msgstr "สัญญาณที่ส่งจากแป้นพิมพ์" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" +-msgstr "" ++msgstr "สัญญาณควบคุมงานที่ถูกส่งโดยเคอร์เนล" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" +-msgstr "" ++msgstr "สัญญาณที่ถูกส่งจากการปรับขนาดหน้าต่าง" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "" ++msgstr "สัญญาณที่ถูกส่งจาก alarm(N) expiration" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" +-msgstr "" ++msgstr "สัญญาณที่มาจากการเขียนไปยัง broken pipe" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" +-msgstr "" ++msgstr "สัญญาณ ABRT (ได้เรียกคำสั่ง abort() หรือยัง?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" +-msgstr "" ++msgstr "สัญญาณ XCPU (เวลาจำกัดของ over CPU)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:620 + msgid "XFSZ signal (over file size limit)" +-msgstr "" ++msgstr "สัญญาณ XFSZ (ขนาดจำกัดของ over file)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:624 + msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" ++msgstr "สัญญาณ TRAP (อาจเป็นปัญหาใน debugger/tracer ได้)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" +-msgstr "" ++msgstr "ใช้ศูนย์เป็นตัวหาร" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" +-msgstr "" ++msgstr "การกระทำผิดกฎหมาย (ได้ข้ามไป random address หรือเปล่า?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +@@ -943,18 +1257,20 @@ msgstr "" + msgid "Stack overflow" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" +@@ -973,113 +1289,148 @@ msgstr "" + msgid "Exploitable rating (0-9 scale): " + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" + msgstr "" ++"& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"ให้ดู FILE เรียก PROG เมื่อมันงอกขึ้นมา หรือถูกแทนที่" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +-msgstr "" ++msgstr "อย่าเรียก PROG หากไม่พบ STRs" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++"เกิดปัญหากับเคอร์เนลเพราะ BIOS เสียหาย น่าเสียดายจัง " ++"ปัญหาบางประการไม่สามารถซ่อมได้โดยผู้เชี่ยวชาญด้านเคอร์เนล" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++"เกิดปัญหากับเคอร์เนล แต่ฮาร์ดแวร์ของคุณไม่ถูกรองรับ ดังนั้น " ++"ผู้เชี่ยวชาญด้านเคอร์เนลจะแก้ปัญหานี้ไม่ได้" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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) ดังนั้น " ++"ผู้เชี่ยวชาญด้านเคอร์เนลจะวิเคราะห์การรายงานส่วนที่เสียหายไม่ได้" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." +-msgstr "" ++msgstr "โมดูลที่เสีย: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 จาก FILE (หรือการป้อนมาตรฐาน)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +-msgstr "" ++msgstr "Print พบ oopses บนการป้อนมาตรฐาน" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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:278 + msgid "Create new problem directory in DIR for every oops found" +-msgstr "" ++msgstr "สร้างไดเรกทอรีปัญหาใหม่ใน DIR สำหรับทุก oops ที่พบ" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++msgstr "เหมือนกับ -d DumpLocation DumpLocation ถูกระบุใน abrt.conf" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" +-msgstr "" ++msgstr "บันทึกข้อมูลที่แยกแล้วใน PROBLEM" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" +-msgstr "" ++msgstr "ทำให้อ่านโลกของไดเรกทอรีปัญหาได้" + + #: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" +-msgstr "" ++msgstr "Print ค้นหา string(s) เพื่อ stdout แล้ว exit" + + #: ../src/plugins/abrt-dump-oops.c:311 + msgid "Failed to compile regex" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +-msgstr "" ++msgstr "ไม่สามารถปรับปรุงปัญหาได้: พบ oops มากกว่าหนึ่ง" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" +-msgstr "" ++msgstr "หลับเป็นเวลา %d วินาที" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:237 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" ++"& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"แยก Xorg crash จาก FILE (หรือการป้อนมาตรฐาน)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +-msgstr "" ++msgstr "Print พบ crash data บนการป้อนมาตรฐาน" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:246 + msgid "Create problem directory in DIR for every crash found" +-msgstr "" ++msgstr "สร้างไดเรกทอรีปัญหาใน DIR สำหรับทุก crash ที่พบ" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" +@@ -1087,21 +1438,24 @@ msgid "" + "retracing." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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 "ไม่สามารถสร้างแฟ้มชั่วคราวเข้าไป" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 + #: ../src/plugins/abrt-retrace-client.c:666 + #: ../src/plugins/abrt-retrace-client.c:832 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" ++msgstr "การส่ง HTTP header ในความยาว %d ล้มเหลว: NSS error %d" + + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 +@@ -1111,8 +1465,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1601,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1611,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1727,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1737,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1767,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1960,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +2046,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +2132,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +2190,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/tl.po b/po/tl.po +index bf32bee..32311b4 100644 +--- a/po/tl.po ++++ b/po/tl.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Tagalog (http://www.transifex.com/projects/p/fedora-abrt/language/tl/)\n" ++"Language-Team: Tagalog (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/tl/)\n" ++"Language: tl\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: tl\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/tr.po b/po/tr.po +index 4c2a093..49bb34f 100644 +--- a/po/tr.po ++++ b/po/tr.po +@@ -5,25 +5,29 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Turkish (http://www.transifex.com/projects/p/fedora-abrt/language/tr/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Turkish (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/tr/)\n" + "Language: tr\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" ++"X-Generator: Zanata 3.5.1\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +-msgstr "" ++msgstr "Otomatik Hata Bildirim Aracı" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "ABRT notification applet" +-msgstr "" ++msgstr "ABRT bildirim uygulaması" + + #: ../src/applet/applet.c:130 + msgid "" +@@ -61,9 +65,10 @@ msgstr "" + msgid "Can't open directory for writing '%s'" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:417 + msgid "A problem has been detected" +-msgstr "" ++msgstr "Bir sorun tespit edildi" + + #: ../src/applet/applet.c:419 + #, c-format +@@ -75,61 +80,75 @@ msgstr "" + msgid "%s and the diagnostic data has been submitted" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:589 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" +-msgstr "" ++msgstr "'%s' çalıştırılamıyor" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" +-msgstr "" ++msgstr "Bildirim kapatılamadı: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +-msgstr "" ++msgstr "Uyarı" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:834 + 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ığı" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "" ++msgstr "Hasan Alp İNAN , Onur BAYSAN" + + #: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:860 + msgid "Hide" +-msgstr "" ++msgstr "Gizle" + + #: ../src/applet/applet.c:862 + msgid "_About" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:930 + msgid "Problem detected" +-msgstr "" ++msgstr "Problem tespit edildi" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:980 + msgid "Ignore forever" +-msgstr "" ++msgstr "Tamamen yoksay" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" +-msgstr "" ++msgstr "Aç" + + #: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" +@@ -139,15 +158,18 @@ msgstr "" + msgid "A Known Problem has Occurred" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" +-msgstr "" ++msgstr "Rapor" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" +-msgstr "" ++msgstr "Bir problem meydana geldi" + + #: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" +@@ -211,10 +233,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +249,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -288,13 +309,15 @@ msgstr "" + msgid "About System Config ABRT" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "" ++msgstr "Hakkında" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:106 + msgid "Quit" +-msgstr "" ++msgstr "Çıkış" + + #: ../src/daemon/abrt-action-save-package-data.c:382 + msgid "" +@@ -303,6 +326,7 @@ msgid "" + "Query package database and save package and component name" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 +@@ -312,34 +336,39 @@ msgstr "" + #: ../src/plugins/abrt-action-generate-backtrace.c:55 + #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 + msgid "Problem directory" +-msgstr "" ++msgstr "Dİzin problemi" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:395 + msgid "Configuration file" +-msgstr "" ++msgstr "Yapılandırma dosyası" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" +-msgstr "" ++msgstr "& [seçenekler]" + + #: ../src/daemon/abrt-server.c:797 + msgid "Use NUM as client uid" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++msgstr "Sistem günlüğüne kaydet" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" +-msgstr "" ++msgstr "Program adlarını günlüğe ekle" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:123 + msgid "Unknown error" +-msgstr "" ++msgstr "Bilinmeyen hata" + + #: ../src/dbus/abrt-dbus.c:188 + #, c-format +@@ -404,19 +433,21 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +-msgstr "" ++msgstr "Daemonize etme" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:498 + msgid "Log to syslog even with -d" +-msgstr "" ++msgstr "Syslogları -d parametresi ile kullanın" + + #: ../src/daemon/abrt-handle-event.c:388 + msgid "& [-v -i] -e|--event EVENT DIR..." +@@ -459,19 +490,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -549,10 +633,11 @@ msgstr "" + msgid "'{0}' processed successfully" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" +-msgstr "" ++msgstr "Geri izleme üretiliyor" + + #: ../src/lib/problem_api_dbus.c:42 + #, c-format +@@ -605,13 +690,16 @@ msgid "" + "and identifies crash function in problem directory DIR" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt ++#. + #. * 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 "" ++msgstr "%s için geri izleme ayrıştırması başarısız oldu" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" +@@ -673,17 +761,17 @@ msgstr "" + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" +-msgstr "" ++msgstr "{0} dosyası mevcut değil" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -708,20 +796,24 @@ msgid "" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +-msgstr "" ++msgstr "Ek hata ayıklama bilgisi dizinleri" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "" ++msgstr "gdb NUM saniyeden fazla süredir çalışıyorsa sonlandır" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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 "" ++msgstr "Geri izleme oluşturuldu ve kaydedildi, %u bayt" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" +@@ -743,20 +835,23 @@ msgstr "" + msgid "Error: GDB did not return any data" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" +-msgstr "" ++msgstr "Hata: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" +-msgstr "" ++msgstr "Kullanıcı komutuyla çıkılıyor" + + #: ../src/plugins/abrt-action-install-debuginfo.in:88 + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +861,8 @@ msgid "" + " -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" ++" --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" +@@ -774,9 +870,10 @@ msgid "" + " Default: *debug*\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +-msgstr "" ++msgstr "{0}: {1} açılmıyor" + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +@@ -815,7 +912,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -827,9 +925,10 @@ msgstr "" + msgid "Delete files inside this directory" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" +-msgstr "" ++msgstr "Bu dizini koru" + + #: ../src/plugins/abrt-action-ureport:59 + #, c-format +@@ -1023,12 +1122,14 @@ msgid "" + "Extract oops from FILE (or standard input)" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +-msgstr "" ++msgstr "Standart çıktı üzerinde bulunan oops ları yazdır" + + #. 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,20 +1190,23 @@ 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 "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 + #: ../src/plugins/abrt-retrace-client.c:666 + #: ../src/plugins/abrt-retrace-client.c:832 + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d" +-msgstr "" ++msgstr "%d uzunluğundaki HTTP başlığının gönderimi başarısız: NSS hata %d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 + #: ../src/plugins/abrt-retrace-client.c:765 +@@ -1111,11 +1215,13 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Sunucudan beklenmeyen HTTP cevabı: %d\n" ++"\n" + "%s" +-msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 + #: ../src/plugins/abrt-retrace-client.c:841 +@@ -1123,7 +1229,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:982 + #: ../src/plugins/abrt-retrace-client.c:1052 + msgid "Invalid response from server: missing HTTP message body." +-msgstr "" ++msgstr "Sunucudan geçersiz cevap: kayıp HTTP mesaj gövdesi " + + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format +@@ -1132,17 +1238,20 @@ msgid "" + "Is it a part of official '%s' repositories?" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +-msgstr "" ++msgstr "Sunucu ayarları sorgulanıyor." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." +-msgstr "" ++msgstr "Sunucu tamamen dolu. Daha sonra tekrar deneyin." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." +-msgstr "" ++msgstr "Sunucu isteğinizi reddetti." + + #: ../src/plugins/abrt-retrace-client.c:484 + #: ../src/plugins/abrt-retrace-client.c:500 +@@ -1157,26 +1266,30 @@ msgid "" + "crashes smaller or equal to %lld bytes." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +-msgstr "" ++msgstr "Sunucu sıkıştırılmış-xz tarball'ları desteklemiyor." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:571 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." +-msgstr "" ++msgstr "'%s' sürümü geri izleme sunucusu tarafından desteklenmiyor. " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:575 + msgid "The server is not able to handle your request." +-msgstr "" ++msgstr "Sunucu, talebinizi değerlendiremiyor." + + #: ../src/plugins/abrt-retrace-client.c:594 + msgid "Unknown package sent to Retrace server." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:603 + msgid "Preparing an archive to upload" +-msgstr "" ++msgstr "Karşıya yüklemek için bir arşiv hazırlanıyor" + + #: ../src/plugins/abrt-retrace-client.c:616 + #, c-format +@@ -1190,9 +1303,10 @@ msgstr "" + msgid "You are going to upload %d megabytes. Continue?" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:638 + msgid "Cancelled by user" +-msgstr "" ++msgstr "Kullanıcı tarafından iptal edildi" + + #: ../src/plugins/abrt-retrace-client.c:673 + #, c-format +@@ -1204,23 +1318,27 @@ msgstr "" + msgid "Uploading %lld bytes\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:699 + #, c-format + msgid "Uploading %d%%\n" +-msgstr "" ++msgstr "Yükleniyor '%d%%\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:711 + msgid "Failed to read from a pipe" +-msgstr "" ++msgstr "Borudan okuma başarısız oldu" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:724 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" ++msgstr "Veri gönderme başarısız: NSS hatası %d (%s): %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:735 + msgid "Upload successful" +-msgstr "" ++msgstr "Yükleme başarılı" + + #: ../src/plugins/abrt-retrace-client.c:757 + msgid "" +@@ -1228,48 +1346,59 @@ msgid "" + "server." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:759 + 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." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" ++msgstr "Sunucudan geçersiz cevap: X-Task-Id kayıp" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:778 + msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" ++msgstr "Sunucudan geçersiz cevap: X-Task-Password kayıp" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:785 + msgid "Retrace job started" +-msgstr "" ++msgstr "Geri izleme işi başladı." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "" ++msgstr "Görev Id: %d\n" ++"\n" ++"Görev Şifresi: %s\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" ++msgstr "Sunucudan geçersiz cevap: X-Task-Status kayıp" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Görev Durumu: %s\n" ++"\n" + "%s\n" +-msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++msgstr "%d uzunluğunda HTTP başlığı gönderimi başarısız: NSS hatası %d." + + #: ../src/plugins/abrt-retrace-client.c:1160 + msgid "" +@@ -1277,13 +1406,15 @@ msgid "" + "issue please." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +-msgstr "" ++msgstr "dökümden sys dökümüne" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1209 + msgid "allow insecure connection to retrace server" +-msgstr "" ++msgstr "Güvensiz geri izleme sunucu bağlantısına izin ver." + + #: ../src/plugins/abrt-retrace-client.c:1211 + msgid "" +@@ -1291,49 +1422,58 @@ msgid "" + "uploading the archive" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +-msgstr "" ++msgstr "Geri" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1216 + msgid "retrace server port" +-msgstr "" ++msgstr "Geri izleme sunucu portu" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1218 + msgid "(debug) show received HTTP headers" +-msgstr "" ++msgstr "(hata ayıklama) alınan HTTP başlıklarını göster" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1219 + msgid "For create and batch operations" +-msgstr "" ++msgstr "Yaratma ve toplu işlemler için" + + #: ../src/plugins/abrt-retrace-client.c:1221 + msgid "read data from ABRT problem directory" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1223 + msgid "read data from coredump" +-msgstr "" ++msgstr "coredump tan veri oku" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1225 + msgid "Delay for polling operations" +-msgstr "" ++msgstr "Sıradaki işlemleri erteleme" + + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +-msgstr "" ++msgstr "Durum, geri izleme ve günlük işlemleri için" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1231 + msgid "id of your task on server" +-msgstr "" ++msgstr "sunucudaki görevin id si" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1233 + msgid "password of your task on server" +-msgstr "" ++msgstr "sunucudaki görevin şifresi" + + #: ../src/plugins/abrt-retrace-client.c:1237 + msgid "" +@@ -1346,94 +1486,113 @@ msgstr "" + msgid "Either problem directory or coredump is needed." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1294 + #: ../src/plugins/abrt-retrace-client.c:1302 + #: ../src/plugins/abrt-retrace-client.c:1310 + #: ../src/plugins/abrt-retrace-client.c:1318 + msgid "Task id is needed." +-msgstr "" ++msgstr "Görev ID si gerekli" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++msgstr "Görev şifresi gerekli." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1324 + #, c-format + msgid "Unknown operation: %s." +-msgstr "" ++msgstr "Bilinmeyen işlem: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" +-msgstr "" ++msgstr "Yerel GNU Hata Ayıklayıcısı" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +-msgstr "" ++msgstr "Çekirdek dökümünü uzak geri besleme sunucusuna analiz için gönder" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 + msgid "Retrace server URL" +-msgstr "" ++msgstr "Tekrar izlenecek sunucu URL" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 + #: ../src/plugins/analyze_CCpp.xml.in.h:4 + msgid "Address of the retrace server" +-msgstr "" ++msgstr "Tekrar izlenecek sunucunun adresi" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 + #: ../src/plugins/analyze_CCpp.xml.in.h:5 + msgid "Insecure" +-msgstr "" ++msgstr "Güvensiz" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 + #: ../src/plugins/analyze_CCpp.xml.in.h:6 + msgid "Whether or not to use insecure connection" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"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>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "" ++msgstr "~/.xsession-errors dosyasındaki ilgili satırları kaydet" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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." ++"" + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +@@ -1453,34 +1612,39 @@ msgstr "" + msgid "An error occurred while connecting to '%s'" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:97 + #, c-format + msgid "Issuer certificate is invalid: '%s'." +-msgstr "" ++msgstr "Sağlayıcı sertifikası geçersiz: '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." +-msgstr "" ++msgstr "Sertifika güvenilmeyen biri tarafından imzalandı: '%s'" + + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +-msgstr "" ++msgstr "Uzak sertifikanın süresi dolmuş." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" ++msgstr "Sertifika sağlayıcı tanımlanamadı: '%s'." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" ++msgstr "Kötü sertifika alındı. Konu '%s', sertifikayı sağlayan '%s'" + + #: ../src/plugins/https-utils.c:149 + #, c-format +@@ -1498,13 +1662,15 @@ msgstr "" + msgid "Can't resolve host name '%s'." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." +-msgstr "" ++msgstr "Soketin bloklama modu ayarı başarısız" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:213 + msgid "Failed to wrap TCP socket by SSL." +-msgstr "" ++msgstr "TCP soketinin SSL tarafından sarmalanması başarısız" + + #: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." +@@ -1522,57 +1688,66 @@ msgstr "" + msgid "Failed to set URL to SSL socket." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" +-msgstr "" ++msgstr "'%s' 'e bağlanamadı" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +-msgstr "" ++msgstr "Sertifika ekleme başarısız oldu." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." +-msgstr "" ++msgstr "Geri resetleme ayarı başarısız oldu." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." +-msgstr "" ++msgstr "Resetleme başarısız oldu" + + #: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." +-msgstr "" ++msgstr "SSL soketinin kapatılması başarısız." + + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." +-msgstr "" ++msgstr "Alınan veri başarısız: NSS hatası %d." + + #: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." +-msgstr "" ++msgstr "NSS ilklendirme başarısız" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." +-msgstr "" ++msgstr "Güvenlik modülünün ilklendirilmesi başarısız" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." +-msgstr "" ++msgstr "NSS in kapatılması başarısız" + + #: ../src/plugins/bodhi.c:375 + msgid "List of bug ids" +@@ -1609,8 +1784,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1679,10 +1854,11 @@ msgstr "" + msgid "List only not-reported problems" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full + #: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" +-msgstr "" ++msgstr "Detaylı raporu göster" + + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +@@ -1695,7 +1871,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,19 +1957,21 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +-msgstr "" ++msgstr "VM çekirdeğini çözümle" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "" ++msgstr "kernel debuginfo paketlerini kur , kernel günlüğü ve oops mesajı üret" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" +@@ -1800,47 +1979,61 @@ msgid "" + "time, and take up disk space." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +-msgstr "" ++msgstr "GConf yapılandırması toplanıyor" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" +-msgstr "" ++msgstr "Uygulamanın GConf dizinindeki yapılandırmayı kaydet" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" +-msgstr "" ++msgstr "/etc/vimrc ve /etc/gvimrc kaydet" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +-msgstr "" ++msgstr "vim yapılandırma dosyalarını topla" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" +-msgstr "" ++msgstr "Ana dizinden .vimrc ve .gvimrc kaydet" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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." ++"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." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/uk.po b/po/uk.po +index 3c88dcc..9a03c18 100644 +--- a/po/uk.po ++++ b/po/uk.po +@@ -7,17 +7,20 @@ + # Yuri Chornoivan , 2014 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 14:09+0000\n" +-"Last-Translator: Yuri Chornoivan \n" +-"Language-Team: Ukrainian (http://www.transifex.com/projects/p/fedora-abrt/language/uk/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 09:09-0500\n" ++"Last-Translator: Yuri Chornoivan \n" ++"Language-Team: Ukrainian (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/uk/)\n" + "Language: uk\n" +-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " ++"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -32,7 +35,10 @@ 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" +-msgstr "У звіті, який буде надіслано, не міститься жодних конфіденційних даних. Тому немає потреби у тому, щоб турбувати вас надалі, також надалі не потрібно буде виконувати ніяких додаткових дій.\n" ++msgstr "" ++"У звіті, який буде надіслано, не міститься жодних конфіденційних даних. Тому " ++"немає потреби у тому, щоб турбувати вас надалі, також надалі не потрібно " ++"буде виконувати ніяких додаткових дій.\n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +@@ -46,7 +52,8 @@ msgstr "Хочете увімкнути автоматичне надсилан + #: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "Не вдалося встановити з’єднання з NetworkManager за допомогою DBus: %s" ++msgstr "" ++"Не вдалося встановити з’єднання з NetworkManager за допомогою DBus: %s" + + #: ../src/applet/applet.c:267 + #, c-format +@@ -90,10 +97,17 @@ msgstr "Не вдалося закрити сповіщення: %s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "Ви маєте намір вимкнути сповіщення щодо певної проблеми. Ви більше не побачите панелі сповіщення щодо цієї проблеми. Втім, ABRT виявлятиме її і зможе створити звіт за допомогою свого графічного інтерфейсу.\n\nПродовжити виконання цієї дії?" ++msgstr "" ++"Ви маєте намір вимкнути сповіщення щодо певної проблеми. Ви більше не " ++"побачите панелі сповіщення щодо цієї проблеми. Втім, ABRT виявлятиме її і " ++"зможе створити звіт за допомогою свого графічного інтерфейсу.\n" ++"\n" ++"Продовжити виконання цієї дії?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -102,11 +116,15 @@ msgstr "Попередження" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "Аплет у області сповіщень для попередження користувача про виявлені ABRT проблеми" ++msgstr "" ++"Аплет у області сповіщень для попередження користувача про виявлені ABRT " ++"проблеми" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "Максим Дзюманенко \nЮрій Чорноіван " ++msgstr "" ++"Максим Дзюманенко \n" ++"Юрій Чорноіван " + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -129,6 +147,7 @@ msgid "Ignore forever" + msgstr "Завжди ігнорувати" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "Відкрити" +@@ -143,6 +162,7 @@ msgstr "Виникла відома проблема" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "Повідомити" +@@ -185,14 +205,19 @@ msgstr "Не вдалося увімкнути режим без блокува + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" +-msgstr "Не вдалося встановити з’єднання з засобом керування сеансом: «%s», сповіщення може бути повторно показано під час наступного входу до системи" ++msgstr "" ++"Не вдалося встановити з’єднання з засобом керування сеансом: «%s», " ++"сповіщення може бути повторно показано під час наступного входу до системи" + + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [КАТАЛОГ]...\n\nАплет для сповіщення користувача про виявлені ABRT проблеми\n" ++msgstr "" ++"& [-v] [КАТАЛОГ]...\n" ++"\n" ++"Аплет для сповіщення користувача про виявлені ABRT проблеми\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -213,11 +238,15 @@ msgstr "Скорочене звітування без підтвердженн + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "Файл дампу ядра (coredump) потрібен для створення даних трасування стека, тривалої і ресурсомісткої дії. У ABRT передбачено службу створення трасування стека на основі дампу ядра, але для роботи з нею слід вивантажити дамп ядра на сервер служби. Якщо не буде позначено цей пункт, ABRT вивантажуватиме дамп ядра без додаткових підтверджень." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"Файл дампу ядра (coredump) потрібен для створення даних трасування стека, " ++"тривалої і ресурсомісткої дії. У ABRT передбачено службу створення " ++"трасування стека на основі дампу ядра, але для роботи з нею слід вивантажити " ++"дамп ядра на сервер служби. Якщо не буде позначено цей пункт, ABRT " ++"вивантажуватиме дамп ядра без додаткових підтверджень." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -225,28 +254,42 @@ msgid "" + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT зберігає дані проблем у каталогах. Якщо ABRT потрібен придатний до запису даних каталог, каталог з загальносистемної теки буде пересунуто до домашньої теки вашого користувача. Якщо не буде позначено цей пункт, ABRT пересуватиме каталог проблеми без підтвердження з вашого боку." ++msgstr "" ++"ABRT зберігає дані проблем у каталогах. Якщо ABRT потрібен придатний до " ++"запису даних каталог, каталог з загальносистемної теки буде пересунуто до " ++"домашньої теки вашого користувача. Якщо не буде позначено цей пункт, ABRT " ++"пересуватиме каталог проблеми без підтвердження з вашого боку." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport — короткий і повністю анонімний опис проблеми. ABRT використовує uReports для пришвидшення пошуку дублікатів. За типових налаштувань uReport надсилається на початку процедури звітування. Якщо буде позначено цей пункт, звіти uReports надсилатимуться автоматично негайно після виявлення проблеми." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport — короткий і повністю анонімний опис проблеми. ABRT використовує " ++"uReports для пришвидшення пошуку дублікатів. За типових налаштувань uReport " ++"надсилається на початку процедури звітування. Якщо буде позначено цей пункт, " ++"звіти uReports надсилатимуться автоматично негайно після виявлення проблеми." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." +-msgstr "Якщо буде позначено цей пункт, процедуру звітування, розпочату натисканням кнопки «Звітувати» у повідомленні-вигульку, буде перервано негайно після надсилання звіту uReport. Звичайно ж, після цього ви зможете скористатися типовим засобом навігації списком проблем для створення повного звіту." ++msgstr "" ++"Якщо буде позначено цей пункт, процедуру звітування, розпочату натисканням " ++"кнопки «Звітувати» у повідомленні-вигульку, буде перервано негайно після " ++"надсилання звіту uReport. Звичайно ж, після цього ви зможете скористатися " ++"типовим засобом навігації списком проблем для створення повного звіту." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." +-msgstr "Якщо буде позначено цей пункт, ABRT ніколи не показуватиме сповіщень щодо звітованих проблем. Працюватиме, лише якщо увімкнено скорочене звітування." ++msgstr "" ++"Якщо буде позначено цей пункт, ABRT ніколи не показуватиме сповіщень щодо " ++"звітованих проблем. Працюватиме, лише якщо увімкнено скорочене звітування." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -256,7 +299,10 @@ msgstr "Питати перед вивантаженням дампу ядра" + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." +-msgstr "Якщо буде позначено цей пункт, ABRT завжди створюватиме повідомлення про вади з обмеженим доступом, якщо існуватиме можливість потрапляння до звіту конфіденційних даних." ++msgstr "" ++"Якщо буде позначено цей пункт, ABRT завжди створюватиме повідомлення про " ++"вади з обмеженим доступом, якщо існуватиме можливість потрапляння до звіту " ++"конфіденційних даних." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +@@ -271,7 +317,10 @@ msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." +-msgstr "Неповнота даних щодо проблеми є наслідком вимикання комп’ютера або або виходу користувача з системи. З метою забезпечення змістовності звітів щодо вад ABRT не дозволить вам надіслати повідомлення щодо таких проблем." ++msgstr "" ++"Неповнота даних щодо проблеми є наслідком вимикання комп’ютера або або " ++"виходу користувача з системи. З метою забезпечення змістовності звітів щодо " ++"вад ABRT не дозволить вам надіслати повідомлення щодо таких проблем." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -303,7 +352,10 @@ msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c ФАЙЛ_НАЛАШТУВАНЬ] -d КАТАЛОГ\n\nОтримати дані з бази даних пакунків і зберегти назву пакунка і компонента" ++msgstr "" ++"& [-v] [-c ФАЙЛ_НАЛАШТУВАНЬ] -d КАТАЛОГ\n" ++"\n" ++"Отримати дані з бази даних пакунків і зберегти назву пакунка і компонента" + + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +@@ -366,7 +418,9 @@ msgstr "Не вдалося отримати доступ до проблеми + + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." +-msgstr "Спроба змінити власника каталогу зазнала невдачі. Докладніші дані можна знайти у журналах системи." ++msgstr "" ++"Спроба змінити власника каталогу зазнала невдачі. Докладніші дані можна " ++"знайти у журналах системи." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format +@@ -392,7 +446,9 @@ msgstr "Не вдалося вилучити елемент «%s» з катал + msgid "" + "The name '%s' has been lost, please check if other service owning the name " + "is not running.\n" +-msgstr "Назву «%s» було втрачено, будь ласка, перевірте, чи не запущено іншу службу з цією назвою.\n" ++msgstr "" ++"Назву «%s» було втрачено, будь ласка, перевірте, чи не запущено іншу службу " ++"з цією назвою.\n" + + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 +@@ -406,11 +462,17 @@ msgstr "Цю програму слід запускати від імені ад + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 не дозволить вам надіслати повідомлення щодо цієї проблеми. Якщо у вас є вільний час, і ви хочете допомогти розробникам усунути цю проблему, будь ласка, зверніться до них безпосередньо." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 не дозволить " ++"вам надіслати повідомлення щодо цієї проблеми. Якщо у вас є вільний час, і " ++"ви хочете допомогти розробникам усунути цю проблему, будь ласка, зверніться " ++"до них безпосередньо." + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -447,7 +509,15 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "& [-vs] [-w ЧИСЛО] [-c МіБ] [КАТАЛОГ_ВИВАНТАЖЕННЯ]\n\n\nСпостерігати за каталогом КАТАЛОГ_ВИВАНТАЖЕННЯ розпаковувати вхідні архіви до каталогу DumpLocation, вказаного у abrt.conf\n\nЯкщо не вказано каталогу КАТАЛОГ_ВИВАНТАЖЕННЯ, буде використано значення\nWatchCrashdumpArchiveDir option from abrt.conf" ++msgstr "" ++"& [-vs] [-w ЧИСЛО] [-c МіБ] [КАТАЛОГ_ВИВАНТАЖЕННЯ]\n" ++"\n" ++"\n" ++"Спостерігати за каталогом КАТАЛОГ_ВИВАНТАЖЕННЯ розпаковувати вхідні архіви " ++"до каталогу DumpLocation, вказаного у abrt.conf\n" ++"\n" ++"Якщо не вказано каталогу КАТАЛОГ_ВИВАНТАЖЕННЯ, буде використано значення\n" ++"WatchCrashdumpArchiveDir option from abrt.conf" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +@@ -461,19 +531,73 @@ msgstr "Кількість паралельних потоків обробки. + msgid "Maximal cache size in MiB. Default is " + msgstr "Максимальний розмір кешу у МіБ. Типовим є" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "Некоректна кількість параметрів" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Невідоме значення параметра: «%s»\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++#, fuzzy ++msgid "SSL Client Authenticated auto reporting" ++msgstr "Скорочене звітування без підтвердження" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -484,7 +608,15 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "Користування: %s [-vd] КАТАЛОГ_БУФЕРА_ABRT КАТАЛОГ_ВИВАНТАЖЕННЯ НАЗВА_ФАЙЛА\n\n -v - докладно\n -d - вилучити вивантажений архів\n КАТАЛОГ_БУФЕРА_ABRT - каталог, до якого розпаковано коректні вивантажені архіви\n КАТАЛОГ_ВИВАНТАЖЕННЯ - каталог, у якому зберігаються вивантажені архіви\n НАЗВА_ФАЙЛА - назва файла вивантаженого архіву\n" ++msgstr "" ++"Користування: %s [-vd] КАТАЛОГ_БУФЕРА_ABRT КАТАЛОГ_ВИВАНТАЖЕННЯ НАЗВА_ФАЙЛА\n" ++"\n" ++" -v - докладно\n" ++" -d - вилучити вивантажений архів\n" ++" КАТАЛОГ_БУФЕРА_ABRT - каталог, до якого розпаковано коректні вивантажені " ++"архіви\n" ++" КАТАЛОГ_ВИВАНТАЖЕННЯ - каталог, у якому зберігаються вивантажені архіви\n" ++" НАЗВА_ФАЙЛА - назва файла вивантаженого архіву\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -591,13 +723,17 @@ msgstr "Не вдалося створити тимчасовий файл «%s + 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:264 + #, 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 "" +@@ -605,11 +741,18 @@ msgid "" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [параметри] -d КАТАЛОГ\n\nПроаналізувати зворотне трасування C/C++, створити хеш дублювання, оцінки \nзворотного трасування та визначити функцію, під час виконання якої сталося \nаварійне завершення, у каталозі даних проблем КАТАЛОГ" ++msgstr "" ++"& [параметри] -d КАТАЛОГ\n" ++"\n" ++"Проаналізувати зворотне трасування C/C++, створити хеш дублювання, оцінки \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" +@@ -624,7 +767,10 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d КАТАЛОГ\n\nОбчислює і зберігає UUID дампу ядра у каталозі даних проблеми КАТАЛОГ" ++msgstr "" ++"& [-v] -d КАТАЛОГ\n" ++"\n" ++"Обчислює і зберігає UUID дампу ядра у каталозі даних проблеми КАТАЛОГ" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -650,26 +796,37 @@ msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d КАТАЛОГ\n\nОбчислює і зберігає UUID та DUPHASH для каталогу аварійних даних ядра КАТАЛОГ" ++msgstr "" ++"& [-v] -d КАТАЛОГ\n" ++"\n" ++"Обчислює і зберігає UUID та DUPHASH для каталогу аварійних даних ядра " ++"КАТАЛОГ" + + #: ../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 КАТАЛОГ\n\nОбчислює і зберігає UUID та DUPHASH для каталогу проблеми у xorg КАТАЛОГ" ++msgstr "" ++"& [-v] -d КАТАЛОГ\n" ++"\n" ++"Обчислює і зберігає UUID та DUPHASH для каталогу проблеми у xorg КАТАЛОГ" + + #: ../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 "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d КАТАЛОГ\n\nОбчислює і зберігає UUID та DUPHASH аварійних дампів Python" ++msgstr "" ++"& [-v] -d КАТАЛОГ\n" ++"\n" ++"Обчислює і зберігає UUID та DUPHASH аварійних дампів Python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -684,10 +841,10 @@ msgid "Extracting the oops text from core" + msgstr "Видобуваємо текст опису помилки з ядра" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "Не вдалося обробити {0}:\n" + "{1}" +-msgstr "Не вдалося обробити {0}:\n{1}" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +@@ -701,14 +858,21 @@ msgstr "Текст повідомлення щодо помилки успішн + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "З журналу ядра можна зрозуміти, що було виявлено помилки, пов’язані з обладнанням.\nЙмовірно, цю проблему не пов’язано з програмним забезпеченням.\n" ++msgstr "" ++"З журналу ядра можна зрозуміти, що було виявлено помилки, пов’язані з " ++"обладнанням.\n" ++"Ймовірно, цю проблему не пов’язано з програмним забезпеченням.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [параметри] -d КАТАЛОГ\n\nАналізує дамп ядра у каталозі КАТАЛОГ, створює і зберігає дані зворотного трасування" ++msgstr "" ++"& [параметри] -d КАТАЛОГ\n" ++"\n" ++"Аналізує дамп ядра у каталозі КАТАЛОГ, створює і зберігає дані зворотного " ++"трасування" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -720,6 +884,7 @@ 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" +@@ -730,7 +895,11 @@ msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d КАТАЛОГ\n\nСтворює дані зворотного трасування на рівні дампу ядра на основі даних дампу та відповідного виконуваного файла" ++msgstr "" ++"& [-v] [-r] -d КАТАЛОГ\n" ++"\n" ++"Створює дані зворотного трасування на рівні дампу ядра на основі даних дампу " ++"та відповідного виконуваного файла" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +@@ -758,7 +927,8 @@ msgstr "Завершення роботи за бажанням користув + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -768,13 +938,35 @@ msgid "" + " -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" ++" --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" +-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" ++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}" +@@ -782,7 +974,9 @@ 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} файлів діагностичних даних, {1} з яких не встановлено." ++msgstr "" ++"Дамп ядра посилається на {0} файлів діагностичних даних, {1} з яких не " ++"встановлено." + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -805,21 +999,34 @@ msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." +-msgstr "Вивантажити дамп ядра? У дампі можуть міститися конфіденційні дані. Якщо ви забороните надсилання, трасування стека буде виконано локально (це може призвести до значного навантаження не мережу і використання значного об’єму пам’яті на диску.)" ++msgstr "" ++"Вивантажити дамп ядра? У дампі можуть міститися конфіденційні дані. Якщо ви " ++"забороните надсилання, трасування стека буде виконано локально (це може " ++"призвести до значного навантаження не мережу і використання значного об’єму " ++"пам’яті на диску.)" + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"Бажаєте створити дані трасування стека локально? (Це може призвести до " ++"значного навантаження на мережу та використання диска, але звіт не можна " ++"створити без трасування стека.)" + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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 РОЗМІР:КАТАЛОГ]... [-f РОЗМІР:КАТАЛОГ]... [-p КАТАЛОГ] [ФАЙЛ]\n\nВилучити каталоги даних проблеми (-d) або файли (-f) у КАТАЛОГах, якщо їхні розміри більші за РОЗМІР.\nфайли, вказані за допомогою аргументу ФАЙЛ, вилучено не буде." ++msgstr "" ++"& [-v] [-d РОЗМІР:КАТАЛОГ]... [-f РОЗМІР:КАТАЛОГ]... [-p КАТАЛОГ] [ФАЙЛ]\n" ++"\n" ++"Вилучити каталоги даних проблеми (-d) або файли (-f) у КАТАЛОГах, якщо їхні " ++"розміри більші за РОЗМІР.\n" ++"файли, вказані за допомогою аргументу ФАЙЛ, вилучено не буде." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -850,7 +1057,9 @@ msgstr "Користування: %s [-v]" + + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" +-msgstr "Не вдалося отримати дані щодо поточного робочого каталогу, оскільки його, ймовірно, вилучено" ++msgstr "" ++"Не вдалося отримати дані щодо поточного робочого каталогу, оскільки його, " ++"ймовірно, вилучено" + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +@@ -961,7 +1170,9 @@ 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" +@@ -988,7 +1199,11 @@ msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F РЯДОК]... ФАЙЛ ПРОГРАМА [ПАРАМЕТРИ]\n\nСпостерігати за файлом журналу ФАЙЛ, запустити програму ПРОГРАМА,\nколи до нього додаються дані або виконується його заміна" ++msgstr "" ++"& [-vs] [-F РЯДОК]... ФАЙЛ ПРОГРАМА [ПАРАМЕТРИ]\n" ++"\n" ++"Спостерігати за файлом журналу ФАЙЛ, запустити програму ПРОГРАМА,\n" ++"коли до нього додаються дані або виконується його заміна" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +@@ -998,20 +1213,27 @@ msgstr "Не запускати програму ПРОГРАМА, якщо не + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." +-msgstr "Проблеми з ядром виникли через помилки у BIOS. На жаль, супровідники ядра системи не зможуть усунути такі проблеми." ++msgstr "" ++"Проблеми з ядром виникли через помилки у BIOS. На жаль, супровідники ядра " ++"системи не зможуть усунути такі проблеми." + + #: ../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: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). Супровідники коду ядра не зможуть проаналізувати звіти щодо ядра з небажаними модулями." ++msgstr "" ++"Сталася проблема з ядром, яке було завантажено з небажаними модулями " ++"(прапорці:%s). Супровідники коду ядра не зможуть проаналізувати звіти щодо " ++"ядра з небажаними модулями." + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format +@@ -1023,17 +1245,25 @@ msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" +-msgstr "& [-vusoxm] [-d КАТАЛОГ]/[-D] [ФАЙЛ]\n\nВидобути дані аварії (oops) з файла ФАЙЛ (або стандартного джерела вхідних даних)" ++msgstr "" ++"& [-vusoxm] [-d КАТАЛОГ]/[-D] [ФАЙЛ]\n" ++"\n" ++"Видобути дані аварії (oops) з файла ФАЙЛ (або стандартного джерела вхідних " ++"даних)" + + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" +-msgstr "Вивести знайдені повідомлення про аварії (oops) до стандартного виводу" ++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:278 + msgid "Create new problem directory in DIR for every oops found" +-msgstr "Створювати новий каталог проблеми для кожного знайденого повідомлення про аварію (oops)" ++msgstr "" ++"Створювати новий каталог проблеми для кожного знайденого повідомлення про " ++"аварію (oops)" + + #: ../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" +@@ -1061,7 +1291,9 @@ msgstr "Не вдалося скомпілювати формальний вир + + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" +-msgstr "Не вдалося оновити дані проблеми, оскільки знайдено декілька повідомлень про помилки." ++msgstr "" ++"Не вдалося оновити дані проблеми, оскільки знайдено декілька повідомлень про " ++"помилки." + + #: ../src/plugins/abrt-dump-oops.c:421 + #, c-format +@@ -1073,7 +1305,11 @@ msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d КАТАЛОГ]/[-D] [ФАЙЛ]\n\nВидобути дані аварії Xorg з файла ФАЙЛ (або стандартного джерела вхідних даних)" ++msgstr "" ++"& [-vsoxm] [-d КАТАЛОГ]/[-D] [ФАЙЛ]\n" ++"\n" ++"Видобути дані аварії Xorg з файла ФАЙЛ (або стандартного джерела вхідних " ++"даних)" + + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" +@@ -1081,16 +1317,21 @@ msgstr "Вивести знайдені дані щодо аварії до ст + + #: ../src/plugins/abrt-dump-xorg.c:246 + msgid "Create problem directory in DIR for every crash found" +-msgstr "Створювати каталог проблеми для кожного знайденого повідомлення про аварійне завершення роботи" ++msgstr "" ++"Створювати каталог проблеми для кожного знайденого повідомлення про аварійне " ++"завершення роботи" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." +-msgstr "Використання сервера повторного трасування неможливе через значний обсяг даних. Спробуйте локальне повторне трасування." ++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 +@@ -1113,10 +1354,10 @@ msgstr "Не вдалося надіслати заголовок HTTP довж + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "Неочікувана відповідь HTTP від сервера: %d\n" + "%s" +-msgstr "Неочікувана відповідь HTTP від сервера: %d\n%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1132,7 +1373,9 @@ msgstr "Некоректна відповідь від сервера: нема + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "Сервер повторного трасування не здатен обробити пакунок «%s.%s».\nЧи є пакунок частиною офіційного сховища пакунків «%s»?" ++msgstr "" ++"Сервер повторного трасування не здатен обробити пакунок «%s.%s».\n" ++"Чи є пакунок частиною офіційного сховища пакунків «%s»?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1140,7 +1383,9 @@ msgstr "Визначення параметрів сервера" + + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." +-msgstr "Зараз сервер повторного трасування повністю зайнято виконанням завдань. Будь ласка, повторіть спробу пізніше." ++msgstr "" ++"Зараз сервер повторного трасування повністю зайнято виконанням завдань. Будь " ++"ласка, повторіть спробу пізніше." + + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." +@@ -1150,23 +1395,30 @@ msgstr "Ваш запит відхилено сервером." + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." +-msgstr "«%s» має бути звичайним файлом, щоб ним міг скористатися сервер повторного трасування." ++msgstr "" ++"«%s» має бути звичайним файлом, щоб ним міг скористатися сервер повторного " ++"трасування." + + #: ../src/plugins/abrt-retrace-client.c:514 + #, c-format + msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." +-msgstr "Розмір даних щодо вашого аварійного завершення дорівнює %lld байтів, сервер повторного трасування здатен обробити лише дані аварійних завершень, об’єм яких не перевищує %lld байтів." ++msgstr "" ++"Розмір даних щодо вашого аварійного завершення дорівнює %lld байтів, сервер " ++"повторного трасування здатен обробити лише дані аварійних завершень, об’єм " ++"яких не перевищує %lld байтів." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +-msgstr "На сервері не передбачено підтримки архівів, створених за допомогою xz." ++msgstr "" ++"На сервері не передбачено підтримки архівів, створених за допомогою xz." + + #: ../src/plugins/abrt-retrace-client.c:571 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." +-msgstr "На сервері повторного трасування не передбачено підтримки випуску «%s»." ++msgstr "" ++"На сервері повторного трасування не передбачено підтримки випуску «%s»." + + #: ../src/plugins/abrt-retrace-client.c:575 + msgid "The server is not able to handle your request." +@@ -1185,7 +1437,9 @@ msgstr "Приготування архіву до вивантаження" + msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." +-msgstr "Розмір даних щодо архіву ваших даних дорівнює %lld байтів, сервер повторного трасування здатен обробити лише архіви, об’єм яких не перевищує %lld байтів." ++msgstr "" ++"Розмір даних щодо архіву ваших даних дорівнює %lld байтів, сервер повторного " ++"трасування здатен обробити лише архіви, об’єм яких не перевищує %lld байтів." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1228,13 +1482,17 @@ msgstr "Успішне вивантаження" + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." +-msgstr "Дані у вашому каталозі даних щодо проблеми пошкоджено, їх неможливо обробити на сервері повторного трасування." ++msgstr "" ++"Дані у вашому каталозі даних щодо проблеми пошкоджено, їх неможливо обробити " ++"на сервері повторного трасування." + + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." +-msgstr "У архіві містяться помилкові файли (зокрема символічні посилання), отже його не можна обробити." ++msgstr "" ++"У архіві містяться помилкові файли (зокрема символічні посилання), отже його " ++"не можна обробити." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +@@ -1250,10 +1508,10 @@ msgstr "Розпочато роботу з повторного трасуван + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "Ідентифікатор: %s\nПароль завдання: %s\n" ++msgstr "Ідентифікатор: %s\n" ++"Пароль завдання: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +@@ -1261,10 +1519,10 @@ msgstr "Некоректна відповідь від сервера: не вк + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "Стан завдання: %s\n" + "%s\n" +-msgstr "Стан завдання: %s\n%s\n" + + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 +@@ -1277,7 +1535,9 @@ msgstr "Не вдалося надіслати заголовок HTTP довж + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." +-msgstr "Спроба повторного трасування зазнала невдачі. Повторіть спробу пізніше, і якщо проблему не вдасться усунути, створіть звіт щодо неї." ++msgstr "" ++"Спроба повторного трасування зазнала невдачі. Повторіть спробу пізніше, і " ++"якщо проблему не вдасться усунути, створіть звіт щодо неї." + + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" +@@ -1291,7 +1551,9 @@ msgstr "дозволити незахищені з’єднання з серв + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" +-msgstr "не перевіряти, чи здатен сервер повторного трасування обробити вказаний пакунок до вивантаження архіву" ++msgstr "" ++"не перевіряти, чи здатен сервер повторного трасування обробити вказаний " ++"пакунок до вивантаження архіву" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1323,7 +1585,9 @@ 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" +@@ -1341,7 +1605,9 @@ msgstr "пароль до вашого завдання на сервері" + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client <дія> [параметри]\nДії: create/status/backtrace/log/batch/exploitable" ++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 +@@ -1373,14 +1639,20 @@ msgstr "Локальний зневаджувач GNU" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" +-msgstr "Отримати пакунки debuginfo і створити дані зворотного трасування локально за допомогою GDB" ++msgstr "" ++"Отримати пакунки debuginfo і створити дані зворотного трасування локально за " ++"допомогою GDB" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "Доведеться звантажити пакунки debuginfo. Звантаження може тривати досить довго, пакунки, які буде встановлено, можуть значно зменшити об’єм вільного місця на диску. Втім, на відміну від RetraceServer, не доведеться надсилати дамп ядра на віддалений комп’ютер." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"Доведеться звантажити пакунки debuginfo. Звантаження може тривати досить " ++"довго, пакунки, які буде встановлено, можуть значно зменшити об’єм вільного " ++"місця на диску. Втім, на відміну від RetraceServer, не доведеться надсилати " ++"дамп ядра на віддалений комп’ютер." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +@@ -1388,12 +1660,18 @@ msgstr "Надіслати дамп ядра на сервер повторно + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "Вивантажує дамп ядра на сервер. Сервер створить дані зворотного трасування і поверне їх вам. Переваги: не потрібно встановлювати пакунки debuginfo. База даних пакунків debuginfo може бути повнішою за вашу. Сервер повторного трасування може отримати кращі дані зворотного трасування. Недоліки: дамп ядра, який буде вивантажено, міститиме всі дані з аварійної програми, зокрема конфіденційні дані, якщо такі там зберігалися." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"Вивантажує дамп ядра на сервер. Сервер створить дані зворотного трасування і " ++"поверне їх вам. Переваги: не потрібно встановлювати пакунки debuginfo. База " ++"даних пакунків debuginfo може бути повнішою за вашу. Сервер повторного " ++"трасування може отримати кращі дані зворотного трасування. Недоліки: дамп " ++"ядра, який буде вивантажено, міститиме всі дані з аварійної програми, " ++"зокрема конфіденційні дані, якщо такі там зберігалися." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 +@@ -1418,10 +1696,13 @@ msgstr "Визначає, чи можна використовувати нез + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "Вкажіть «Незахищене», щоб дозволити незахищене з’єднання <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(попередження)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"Вкажіть «Незахищене», щоб дозволити незахищене з’єднання <a href=\"https:/" ++"/fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(попередження)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1435,7 +1716,10 @@ msgstr "Зберегти відповідні рядки з файла ~/.xsessi + 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." +@@ -1468,7 +1752,9 @@ msgstr "Сертифікат підписано ненадійним видав + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." +-msgstr "Назва призначення сертифіката, «%s», не збігається з назвою вузла призначення «%s»." ++msgstr "" ++"Назва призначення сертифіката, «%s», не збігається з назвою вузла " ++"призначення «%s»." + + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." +@@ -1510,7 +1796,9 @@ msgstr "Не вдалося використати для шифрування + + #: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." +-msgstr "Не вдалося увімкнути клієнтську процедуру встановлення зв’язку з сокетом SSL." ++msgstr "" ++"Не вдалося увімкнути клієнтську процедуру встановлення зв’язку з сокетом SSL." ++"" + + #: ../src/plugins/https-utils.c:220 + msgid "Failed to enable SSL3." +@@ -1544,7 +1832,8 @@ msgstr "Не вдалося скинути зворотній виклик." + #: ../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:267 + msgid "Failed to close SSL socket." +@@ -1593,7 +1882,10 @@ msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[ВИПУСК]] (-b ІД1[,ІД2,...] | НАЗВА-ПАКУНКА) [НАЗВА-ПАКУНКА]... \n\nВиконати пошук оновлень на сервері bodhi" ++msgstr "" ++"& [-v] [-r[ВИПУСК]] (-b ІД1[,ІД2,...] | НАЗВА-ПАКУНКА) [НАЗВА-ПАКУНКА]... \n" ++"\n" ++"Виконати пошук оновлень на сервері bodhi" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +@@ -1611,16 +1903,23 @@ msgstr "Локальна версія пакунка є новішою за до + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" +-msgstr "Виявлено оновлення, у якому вашу проблему може бути вирішено. Ви можете встановити оновлення за допомогою такої команди: %s. Хочете продовжити процедуру звітування про ваду?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" ++msgstr "" ++"Виявлено оновлення, у якому вашу проблему може бути вирішено. Ви можете " ++"встановити оновлення за допомогою такої команди: %s. Хочете продовжити " ++"процедуру звітування про ваду?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] ФАЙЛ...\n\nШукати у файлах повідомлення про розділену помилку ядра. Може виводити або вилучати такі повідомлення." ++msgstr "" ++"& [-v] [-od] ФАЙЛ...\n" ++"\n" ++"Шукати у файлах повідомлення про розділену помилку ядра. Може виводити або " ++"вилучати такі повідомлення." + + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +@@ -1665,13 +1964,16 @@ msgstr "Обробка декількох проблем" + + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "Щоб дізнатися більше, скористайтеся командою «abrt-cli КОМАНДА --help»" ++msgstr "" ++"Щоб дізнатися більше, скористайтеся командою «abrt-cli КОМАНДА --help»" + + #: ../src/cli/list.c:127 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +-msgstr "%sВіддайте команду «abrt-cli report %s» для створення запису випадку на порталі клієнтів Red Hat\n" ++msgstr "" ++"%sВіддайте команду «abrt-cli report %s» для створення запису випадку на " ++"порталі клієнтів Red Hat\n" + + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." +@@ -1688,18 +1990,25 @@ msgstr "Показати докладний звіт" + + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" +-msgstr "Вивести список лише тих проблем, які сталися після вказаної часової позначки" ++msgstr "" ++"Вивести список лише тих проблем, які сталися після вказаної часової позначки" + + #: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" +-msgstr "Вивести список лише тих проблем, які сталися до вказаної часової позначки" ++msgstr "" ++"Вивести список лише тих проблем, які сталися до вказаної часової позначки" + + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "Можливість автоматичного звітування вимкнено. Вам варто увімкнути її за допомогою команди\n«abrt-auto-reporting enabled», відданої від імені користувача з правами доступу root\n" ++msgstr "" ++"Можливість автоматичного звітування вимкнено. Вам варто увімкнути її за " ++"допомогою команди\n" ++"«abrt-auto-reporting enabled», відданої від імені користувача з правами " ++"доступу root\n" + + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." +@@ -1707,7 +2016,8 @@ msgstr "& info [параметри] КАТАЛОГ..." + + #: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" +-msgstr "Текст з розмірами, що перевищують вказані, буде обрізано під час показу" ++msgstr "" ++"Текст з розмірами, що перевищують вказані, буде обрізано під час показу" + + #: ../src/cli/list.c:264 + #, c-format +@@ -1724,12 +2034,15 @@ 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/cli/report.c:28 + msgid "& report [options] DIR..." +@@ -1764,7 +2077,8 @@ msgstr "Для переходу до наступної проблеми нат + + #: ../src/cli/process.c:144 + msgid "Without --since argument, iterates over all detected problems." +-msgstr "Без аргументу --since, циклічний перехід між усіма виявленими проблемами." ++msgstr "" ++"Без аргументу --since, циклічний перехід між усіма виявленими проблемами." + + #: ../src/cli/process.c:150 + msgid "Selects only problems detected after timestamp" +@@ -1774,7 +2088,9 @@ msgstr "Вибирає лише проблеми, виявлені після в + msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" +-msgstr "Надіслати дамп ядра на віддалений сервер повторного трасування для аналізу або виконати локальний аналіз, якщо виконати віддалений аналіз не вдасться." ++msgstr "" ++"Надіслати дамп ядра на віддалений сервер повторного трасування для аналізу " ++"або виконати локальний аналіз, якщо виконати віддалений аналіз не вдасться." + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 + msgid "" +@@ -1782,10 +2098,19 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "Вивантажує дамп ядра на сервер, який створює дані зворотнього трасування і повертає їх на ваш комп’ютер. Якщо користувач не бажає вивантажувати дамп ядра, буде виконано локальний аналіз події. Локальний аналіз також буде виконано, якщо не вдасться виконати аналіз на віддаленому сервері. Переваги: не потрібно отримувати і встановлювати діагностичні пакунки, база діагностичних даних на сервері є повнішою за вашу. Сервер зворотного трасування може створити кращу картину для зворотного трасування. Недоліки: вивантажені вами дані дампу ядра можуть містити всі дані з програми, роботу якої було завершено у аварійному режимі, зокрема конфіденційні для вас дані." ++msgstr "" ++"Вивантажує дамп ядра на сервер, який створює дані зворотнього трасування і " ++"повертає їх на ваш комп’ютер. Якщо користувач не бажає вивантажувати дамп " ++"ядра, буде виконано локальний аналіз події. Локальний аналіз також буде " ++"виконано, якщо не вдасться виконати аналіз на віддаленому сервері. Переваги: " ++"не потрібно отримувати і встановлювати діагностичні пакунки, база " ++"діагностичних даних на сервері є повнішою за вашу. Сервер зворотного " ++"трасування може створити кращу картину для зворотного трасування. Недоліки: " ++"вивантажені вами дані дампу ядра можуть містити всі дані з програми, роботу " ++"якої було завершено у аварійному режимі, зокрема конфіденційні для вас дані." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -1794,13 +2119,17 @@ msgstr "Проаналізувати ядро ВМ" + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" +-msgstr "Встановити пакунки діагностичних даних ядра, створити журнал дій ядра і повідомлень щодо помилок" ++msgstr "" ++"Встановити пакунки діагностичних даних ядра, створити журнал дій ядра і " ++"повідомлень щодо помилок" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." +-msgstr "Потребує встановлення пакунків діагностичних даних ядра, на що може знадобитися доволі багато часу і місця на диску." ++msgstr "" ++"Потребує встановлення пакунків діагностичних даних ядра, на що може " ++"знадобитися доволі багато часу і місця на диску." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -1814,7 +2143,9 @@ msgstr "Зберегти налаштування з каталогу GConf пр + msgid "" + "Runs gconftool-2 --recursive-list /apps/executable and saves it as " + "'gconf_subtree' element." +-msgstr "Запускає gconftool-2 --recursive-list /apps/виконуваний_файл і зберігає дані як елемент «gconf_subtree»." ++msgstr "" ++"Запускає gconftool-2 --recursive-list /apps/виконуваний_файл і зберігає дані " ++"як елемент «gconf_subtree»." + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +@@ -1828,7 +2159,9 @@ 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 "Шукає файли vimrc та gvimrc у /etc і зберігає їх як system_vimrc та system_gvimrc, відповідно." ++msgstr "" ++"Шукає файли vimrc та gvimrc у /etc і зберігає їх як system_vimrc та " ++"system_gvimrc, відповідно." + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -1840,9 +2173,11 @@ msgstr "Зберегти .vimrc та .gvimrc з вашого домашньог + + #: ../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 "Шукає .vimrc і .gvimrc у вашому домашньому каталозі і зберігає їх як user_vimrc і user_gvimrc, відповідно." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." ++msgstr "" ++"Шукає .vimrc і .gvimrc у вашому домашньому каталозі і зберігає їх як " ++"user_vimrc і user_gvimrc, відповідно." + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +diff --git a/po/ur.po b/po/ur.po +index 8686ccc..17a707c 100644 +--- a/po/ur.po ++++ b/po/ur.po +@@ -6,17 +6,19 @@ + # Mustafa Qasim , 2011 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Urdu (http://www.transifex.com/projects/p/fedora-abrt/language/ur/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Urdu (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/ur/)\n" + "Language: ur\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -89,7 +91,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -128,6 +132,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -142,6 +147,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -212,10 +218,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +234,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -405,10 +410,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -460,19 +465,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -606,9 +664,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -683,8 +743,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -719,6 +778,7 @@ 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" +@@ -757,7 +817,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +828,8 @@ msgid "" + " -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" ++" --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" +@@ -816,7 +878,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1030,6 +1093,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1090,6 +1154,7 @@ 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 +@@ -1112,8 +1177,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1249,8 +1313,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1260,8 +1323,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1377,8 +1439,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1387,11 +1449,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1417,9 +1479,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1610,8 +1672,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1696,7 +1758,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1781,8 +1844,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1839,8 +1902,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/uz.po b/po/uz.po +index cf7023f..572435f 100644 +--- a/po/uz.po ++++ b/po/uz.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Uzbek (http://www.transifex.com/projects/p/fedora-abrt/language/uz/)\n" ++"Language-Team: Uzbek (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/uz/)\n" ++"Language: uz\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: uz\n" + "Plural-Forms: nplurals=1; plural=0;\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/vi.po b/po/vi.po +index de92c90..3ef634e 100644 +--- a/po/vi.po ++++ b/po/vi.po +@@ -6,17 +6,19 @@ + # dinhdangkhoi , 2014 + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Vietnamese (http://www.transifex.com/projects/p/fedora-abrt/language/vi/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Vietnamese (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/vi/)\n" + "Language: vi\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -76,11 +78,12 @@ msgstr "Một vấn đề trong gói %s đã được phát hiện" + msgid "%s and the diagnostic data has been submitted" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:589 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" +-msgstr "" ++msgstr "Không thể thực thi '%s'" + + #: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format +@@ -89,7 +92,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -103,9 +108,10 @@ msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "" ++msgstr "người dịch-công trạng" + + #: ../src/applet/applet.c:858 + msgid "_Quit" +@@ -123,14 +129,17 @@ msgstr "" + msgid "Problem detected" + msgstr "Phát hiện vấn đề" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:980 + msgid "Ignore forever" +-msgstr "" ++msgstr "Bỏ qua mãi mãi" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" +-msgstr "" ++msgstr "Mở" + + #: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" +@@ -140,15 +149,18 @@ msgstr "" + msgid "A Known Problem has Occurred" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" +-msgstr "" ++msgstr "Báo cáo" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" +-msgstr "" ++msgstr "Một vấn đề đã xảy ra" + + #: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" +@@ -212,10 +224,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -229,15 +240,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -363,19 +374,23 @@ msgstr "" + msgid "Can't access the problem for modification" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" ++"Đổi quyền chủ nhân thư mục không thành. Kiểm tra bản ghi hệ thống để biết " ++"thêm chi tiết." + + #: ../src/dbus/abrt-dbus.c:559 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:580 + #, c-format + msgid "Can't get size of '%s'" +-msgstr "" ++msgstr "Không thể có được kích thước của '%s'" + + #: ../src/dbus/abrt-dbus.c:595 + msgid "No problem space left" +@@ -405,10 +420,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -460,19 +475,73 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " ++msgstr "& [" ++ ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -606,9 +675,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -683,8 +754,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -719,6 +789,7 @@ 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" +@@ -757,7 +828,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -767,7 +839,8 @@ msgid "" + " -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" ++" --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" +@@ -816,7 +889,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1030,6 +1104,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1090,6 +1165,7 @@ 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 +@@ -1112,8 +1188,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1249,8 +1324,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1260,8 +1334,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1377,8 +1450,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1387,11 +1460,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1417,9 +1490,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1610,8 +1683,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1696,7 +1769,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1781,8 +1855,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1839,8 +1913,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/wo.po b/po/wo.po +index eefbcef..d4f8910 100644 +--- a/po/wo.po ++++ b/po/wo.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Wolof (http://www.transifex.com/projects/p/fedora-abrt/language/wo/)\n" ++"Language-Team: Wolof (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/wo/)\n" ++"Language: wo\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: wo\n" + "Plural-Forms: nplurals=1; plural=0;\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/xh.po b/po/xh.po +index df3828c..fbc802e 100644 +--- a/po/xh.po ++++ b/po/xh.po +@@ -1,20 +1,21 @@ + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Translators: + msgid "" + msgstr "" + "Project-Id-Version: ABRT\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "PO-Revision-Date: 2014-12-12 13:30+0000\n" + "Last-Translator: Jakub Filak \n" +-"Language-Team: Xhosa (http://www.transifex.com/projects/p/fedora-abrt/language/xh/)\n" ++"Language-Team: Xhosa (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/xh/)\n" ++"Language: xh\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: xh\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -88,7 +89,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +130,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +145,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +216,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +232,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +408,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +463,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +662,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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 +@@ -1376,8 +1441,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1416,9 +1481,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >" ++"(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1695,7 +1760,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1846,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1790,8 +1856,7 @@ msgid "Analyze VM core" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 +-msgid "" +-"Install kernel debuginfo packages, generate kernel log and oops message" ++msgid "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 +@@ -1838,8 +1903,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/zh_CN.po b/po/zh_CN.po +index bb358dc..b712421 100644 +--- a/po/zh_CN.po ++++ b/po/zh_CN.po +@@ -14,24 +14,29 @@ + # wangwenye , 2013 + # yusuf , 2011 + # Zamir SUN , 2013 ++# Leah Liu , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-16 05:33+0000\n" +-"Last-Translator: Wei Liu \n" +-"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora-abrt/language/zh_CN/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: zh_CN\n" ++"PO-Revision-Date: 2015-01-09 07:47-0500\n" ++"Last-Translator: Leah Liu \n" ++"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora-" ++"abrt/language/zh_CN/)\n" ++"Language: zh-CN\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" + msgstr "错误自动报告工具" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "ABRT notification applet" + msgstr "ABRT 通知小程序" +@@ -51,47 +56,56 @@ msgstr "您想要启用自动提交崩溃报告吗?" + msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "您想要启用自动提交匿名崩溃报告吗?" + ++# translation auto-copied from project abrt, version master, document abrt + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "无法通过 DBus 连接到至 NetworkManger:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "无法通过 NetworkManager 确定网络状态:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:342 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "无法获取 '%s' 的所有权" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:350 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "无法打开目录以写入 '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "已检测到一个问题" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" + msgstr "检测到 %s 软件包中的一个问题" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" + msgstr "已提交 %s 和诊断数据" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:589 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "无法执行 ”%s“" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" +@@ -99,59 +113,81 @@ msgstr "无法关闭通知:%s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "您要将某个具体问题的通知静音。您将再也无法看到这个问题的通知气泡,但 ABRT 将继续对其进行探测,同时您也可以使用 ABRT GUI 报告该问题。\n\n您要继续吗?" ++msgstr "" ++"您要将某个具体问题的通知静音。您将再也无法看到这个问题的通知气泡,但 ABRT 将继续对其进行探测,同时您也可以使用 ABRT GUI 报告该问题。\n" ++"\n" ++"您要继续吗?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "警告" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "用来将 ABRT 检测到的问题通知给用户的小程序" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "Fedora Simplified Chinese Translation Group \nTommy He " ++msgstr "" ++"Fedora Simplified Chinese Translation Group \n" ++"Tommy He " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "退出(_Q)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "隐藏" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:862 + msgid "_About" + msgstr "关于(_A)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "检测到问题" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "永远忽略" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "打开" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "该问题已经被提交" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "发生一个已知问题" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "报告" +@@ -160,35 +196,42 @@ msgstr "报告" + msgid "A Problem has Occurred" + msgstr "发生一个错误" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "一个问题已被提交" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "发生一个新问题" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "无法显示通知:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #. TODO: Terminate child's process? + #: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "无法读取 gio 频道:'%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "无法在 gio 频道中设定编码:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "无法为 gio 频道设定非阻断模式:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1494 + #, c-format + msgid "" +@@ -196,25 +239,32 @@ msgid "" + "reappear on the next login" + msgstr "打开会话管理器 :'%s', 失败,通知会在下次登录时重新出现" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\nABRT 探测到问题后,小程序会通知用户\n" ++msgstr "& [-v] [DIR]...\n" ++"\n" ++"ABRT 探测到问题后,小程序会通知用户\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "占用目录前询问" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" + msgstr "自动发送 uReport" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" + msgstr "缩略报告" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" + msgstr "静默式缩略报告" +@@ -222,32 +272,37 @@ msgstr "静默式缩略报告" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "核心转储文件是生成费时费空间栈回溯的必要操作。ABRT 提供从核心转储生成栈回溯的服务,但您必须将核心转储上传到到该服务。当禁用此选项后 ABRT 将自动上传核心转储而不再询问。" ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"核心转储文件是生成费时费空间栈回溯的必要操作。ABRT 提供从核心转储生成栈回溯的服务,但您必须将核心转储上传到到该服务。当禁用此选项后 ABRT " ++"将自动上传核心转储而不再询问。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" + "ABRT stores problem data in directories. Whenever ABRT needs writable " + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT 将问题数据保存在目录中。当 ABRT 需要可写入目录时,该目录从系统位置移动到您的主目录。当禁用此选项后 ABRT 移动问题目录时将不再询问。" ++msgstr "" ++"ABRT 将问题数据保存在目录中。当 ABRT 需要可写入目录时,该目录从系统位置移动到您的主目录。当禁用此选项后 ABRT 移动问题目录时将不再询问。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport 是问题的简要且完全匿名的描述。ABRT 使用 uReport 进行快速的全局重复检查。在默认配置下 uReport 在报告过程的一开始发送。当启用该选项后 uReports 将在发现问题后立即自动发送。" ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport 是问题的简要且完全匿名的描述。ABRT 使用 uReport 进行快速的全局重复检查。在默认配置下 uReport " ++"在报告过程的一开始发送。当启用该选项后 uReports 将在发现问题后立即自动发送。" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "启用该选项后,将会在 uReport 发送后中断由问题气泡通知中报告按钮开始的报告进程。您依然可以使用默认问题浏览器完成报告。" + +@@ -257,6 +312,7 @@ msgid "" + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "启用该选项后 ABRT 不再提示汇报问题。仅在缩略报告启用的情况下生效。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" + msgstr "在上传核心转储前询问" +@@ -271,6 +327,7 @@ msgstr "启用这个选项后,一旦检测到敏感数据,ABRT 将创建有 + msgid "Request private ticket for sensitive information" + msgstr "为敏感信息请求专用 ticket" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" + msgstr "通知不完整的问题" +@@ -286,34 +343,43 @@ msgstr "不完整的问题通常在电脑关机或用户登出时发生。为提 + msgid "_Close" + msgstr "关闭(_C)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "默认(_D)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "配置错误报告" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "关于系统配置 ABRT" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "关于" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "退出" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:382 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\n查询软件包数据库并保存软件包和组件名称" ++msgstr "& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"查询软件包数据库并保存软件包和组件名称" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 +@@ -325,43 +391,52 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n\n查询软件包数据库并保存软件 + msgid "Problem directory" + msgstr "问题目录" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:395 + msgid "Configuration file" + msgstr "配置文件" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:797 + msgid "Use NUM as client uid" + msgstr "使用 NUM 作为客户端 UID" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "在日志中添加程序名" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:123 + msgid "Unknown error" + msgstr "未知错误" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:188 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' 不是有效的问题目录" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:223 + #, c-format + msgid "'%s' element can't be modified" + msgstr "无法修改 '%s' 元素" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 + #: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 +@@ -369,33 +444,40 @@ msgstr "无法修改 '%s' 元素" + msgid "Not Authorized" + msgstr "未授权" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:256 + msgid "Can't access the problem for modification" + msgstr "无法访问该问题进行修改" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "变更目录属主失败。请检查系统日志以了解更多。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:559 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' 不是一个有效的元素名" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:580 + #, c-format + msgid "Can't get size of '%s'" + msgstr "无法获取 '%s' 的大小" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:595 + msgid "No problem space left" + msgstr "没有留出问题空间" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:627 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "无法从问题目录 '%s' 中删除元素 '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" +@@ -403,49 +485,61 @@ msgid "" + "is not running.\n" + msgstr "名称 '%s' 已丢失,请检查其它拥有该名称的服务是否未运行。\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "闲置 NUM 秒后退出" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "此程序必须以 root 权限运行。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 将不允许您提交该问题。如果您有时间想帮助开发者找出问题的根源,请直接与他们联系。" ++"detected while computer is shutting down or user is logging out. In order to " ++"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 " ++"将不允许您提交该问题。如果您有时间想帮助开发者找出问题的根源,请直接与他们联系。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" + msgstr "不要在后台运行" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:498 + msgid "Log to syslog even with -d" + msgstr "即使加入 -d 选项也记录至 syslog" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:388 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR......" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:396 + msgid "Run EVENT on DIR" + msgstr "在 DIR 中运行 EVENT " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:397 + msgid "Communicate directly to the user" + msgstr "直接联系用户" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "没有空闲的工作者和完整缓存。忽略档案 '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +@@ -456,33 +550,99 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" +-msgstr "& [-vs] [-w 工作者数] [-c MiB] [上传目录]\n\n\n监视指定上传目录,将新加入的档案解压至 abrt.conf 中\n指定的转储位置\n\n如未指定上传目录,则使用 abrt.conf 中 \n指定的 WatchCrashdumpArchiveDir 选项" ++msgstr "" ++"& [-vs] [-w 工作者数] [-c MiB] [上传目录]\n" ++"\n" ++"\n" ++"监视指定上传目录,将新加入的档案解压至 abrt.conf 中\n" ++"指定的转储位置\n" ++"\n" ++"如未指定上传目录,则使用 abrt.conf 中 \n" ++"指定的 WatchCrashdumpArchiveDir 选项" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "在后台运行" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "并行工作者数量。 默认为" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "以 MiB 计最大缓存尺寸。默认为" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "关闭认证" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Red Hat 支持用户名" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "Red Hat 支持密码,如果不输入密码则会有提示。" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "uReport SSL 证书路径或者证书类型" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "您还需要为 --password 指定 --username" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "您可以使用 --username 或者 --certificate" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "您可以使用 --username 或者 --anonymous" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "您可以使用 --anonymous 或者 --certificate" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "无效参数值" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "未知选项值:'%s'\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "密码:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "需要密码才可继续\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "HTTP 认证的自动报告" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "SSL 客户端认证的自动报告" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "匿名自动报告" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -493,7 +653,14 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "用法:%s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - Verbose\n -d - Delete uploaded archive\n ABRT_SPOOL_DIR - 将有效上传归档解压缩到该目录\n UPLOAD_DIR - 保存已上传归档的目录\n FILENAME - 已上传归档文件吗\n" ++msgstr "" ++"用法:%s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Verbose\n" ++" -d - Delete uploaded archive\n" ++" ABRT_SPOOL_DIR - 将有效上传归档解压缩到该目录\n" ++" UPLOAD_DIR - 保存已上传归档的目录\n" ++" FILENAME - 已上传归档文件吗\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -560,41 +727,49 @@ msgstr "无法解压缩 '{0}'" + msgid "'{0}' processed successfully" + msgstr "成功处理 '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "正在生成回溯文件" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:42 + #, c-format + msgid "Can't connect to system DBus: %s" + msgstr "无法连接系统 DBus:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "无法变更 '%s' 的属主:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "删除问题目录失败:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "无法从 abrt-dbus 中获取问题数据:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "无法从 abrt-dbus 中获取问题列表:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "无法创建临时文件 '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" +@@ -602,38 +777,51 @@ msgid "" + "problems '%s'" + msgstr "无法写入 '%s'。问题 '%s' 将不会从已忽略问题 '%s' 中被移除" + ++# translation auto-copied from project abrt, version master, document abrt + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "无法重命名 '%s' 为 '%s'。移除问题 '%s' 失败" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [options] -d DIR\n\n在有问题的目录 DIR 中分析 C/C++ 回溯文件,生成副本哈希值,回溯评级,\n以及识别崩溃函数的功能。" ++msgstr "" ++"& [options] -d DIR\n" ++"\n" ++"在有问题的目录 DIR 中分析 C/C++ 回溯文件,生成副本哈希值,回溯评级,\n" ++"以及识别崩溃函数的功能。" + ++# translation auto-copied from project abrt, version master, document abrt ++#. + #. * 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 回溯解析失败" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" + msgstr "崩溃线程" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-c.c:67 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\n在有问题的目录 DIR 中计算并保存核心转储的 UUID" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"在有问题的目录 DIR 中计算并保存核心转储的 UUID" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -654,54 +842,70 @@ msgstr "用法:%s [-v] [-o OUTFILE] -c COREFILE" + msgid "COREFILE is not specified" + msgstr "未指定 COREFILE" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\n为 oops 问题目录 DIR 计算并保存 UUID 以及 DUPHASH" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"为 oops 问题目录 DIR 计算并保存 UUID 以及 DUPHASH" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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\n为 xorg 问题目录 DIR 计算并保存 UUID 以及 DUPHASH" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"为 xorg 问题目录 DIR 计算并保存 UUID 以及 DUPHASH" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" + msgstr "已载入模块 '%s' - 将不会报告这个崩溃" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\n计算并保存 python 崩溃转储的 UUID 和 DUPHASH" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"计算并保存 python 崩溃转储的 UUID 和 DUPHASH" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "用法: {0} [-v[v]] [--core=虚拟核心数]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "文件 {0} 不存在" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "正在从核心提取异常文字信息" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "无法执行 {0}:\n" + "{1}" +-msgstr "无法执行 {0}:\n{1}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "无法提取异常信息: '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "成功提取异常文字信息" +@@ -710,50 +914,65 @@ msgstr "成功提取异常文字信息" + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "内核日志提示探测到硬件错误。\n这很可能不是软件问题。\n" ++msgstr "内核日志提示探测到硬件错误。\n" ++"这很可能不是软件问题。\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [options] -d DIR\n\n分析问题目录 DIR 中的问题,生成并保存回溯文件" ++msgstr "& [options] -d DIR\n" ++"\n" ++"分析问题目录 DIR 中的问题,生成并保存回溯文件" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" + msgstr "附加的 debuginfo 目录" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" + msgstr "如果 gdb 运行超过 NUM 秒就终止" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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 "回溯已经生成并保存,大小为 %u 字节" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + 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" ++"\n" ++"根据核心转储和对应二进制信息创建核心转储级回溯。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" + msgstr "不计算指纹散列值" + ++# translation auto-copied from project abrt, version master, document abrt + #. Let user know what's going on + #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 + msgid "Generating core_backtrace" + msgstr "正在生成核心转储" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" + msgstr "错误: GDB 为返回" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" +@@ -767,7 +986,28 @@ msgstr "由于用户命令正在退出" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" ++"to CACHEDIR, using TMPDIR as temporary staging area.\n" ++"Old 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" ++msgstr "" ++"用法:%s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -777,18 +1017,20 @@ msgid "" + " -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" ++" --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" +-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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" + msgstr "无法打开 {0}:{1}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "核心转储需要 {0} 个 debuginfo 软件包,其中有 {1} 个尚未安装" +@@ -797,18 +1039,22 @@ msgstr "核心转储需要 {0} 个 debuginfo 软件包,其中有 {1} 个尚未 + msgid "{0} of debuginfo files are not installed" + msgstr "未安装 {0} 的 debuginfo 文件" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" + msgstr "缺少所需文件:{0}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" + msgstr "缺少 debuginfo 文件:{0}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:231 + msgid "All debuginfo files are available" + msgstr "所有调试信息文件均可用。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -816,28 +1062,38 @@ msgid "" + "amount of data)." + msgstr "可以上传核心转储了吗(可能包含敏感数据)?如果您的回答为“否”,则会在本地生成一个栈跟踪(可能会下载大量数据)。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "您想在本地生成一个栈跟踪吗?(这可能会下载大量数据,但没有栈跟踪就无法继续报告问题)。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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删除 DIR 中的问题 dirs(-d))或 files(-f)直到其大小小于 SIZE。\n保留 FILE(永远不要删除)。" ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"删除 DIR 中的问题 dirs(-d))或 files(-f)直到其大小小于 SIZE。\n" ++"保留 FILE(永远不要删除)。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" + msgstr "删除全部问题目录" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:237 + msgid "Delete files inside this directory" + msgstr "删除该目录中的文件" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" + msgstr "保留该目录" +@@ -874,135 +1130,168 @@ msgstr "已发送 uReport,请不要再次发送。" + msgid "reporter-ureport failed with exit code %d" + msgstr "reporter-ureport 失败并给出退出代码 %d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "信号由用户区代码发送" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" + msgstr "信号由时钟、IO、异步事件发送" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" + msgstr "信号具备 siginfo.si_code = SI_USER" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" + msgstr "由写入已关闭的管道而产生的信号" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" + msgstr "由键盘发送的信号" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" + msgstr "内核发出的作业控制信号" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" + msgstr "由调整窗口大小而产生的信号" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" + msgstr "警报(N)到时发出的信号" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" + msgstr "由写入被中断的管道而产生的信号" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" + msgstr "ABRT信号 (abort() 被调用? )" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" + msgstr "XCPU信号 (超出CPU的时限)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:620 + msgid "XFSZ signal (over file size limit)" + msgstr "XFSZ信号 (超出文件大小限制)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:624 + msgid "TRAP signal (can be a bug in a debugger/tracer)" + msgstr "TRAP 信号(可以是调试器/追溯器中的错误)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:628 + msgid "SYS signal (unknown syscall was called?)" + msgstr "SYS 信号 (调用了未知 syscall ?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" + msgstr "运算异常" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" + msgstr "被零整除" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" + msgstr "非法指令(转跳至一个随机地址?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" + msgstr "非崩溃相关信号" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" + msgstr "堆栈溢出" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:656 + msgid "Write to an invalid address" + msgstr "向无效地址写入" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" + msgstr "子路线返回一个无效的地址(栈损坏?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 + msgid "Jump to an invalid address" + msgstr "跳转至无效地址" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" + msgstr "访问超过映射文件结尾,无效的地址,未对齐的访问或其他" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" + msgstr "无法获得信号编号并执行安全分析\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " + msgstr "可能的崩溃原因:" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " + msgstr "可使用的等级 (0-9级)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " + msgstr "当前指令:" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" + msgstr "安全分析返回结果为空\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\n监视日志文件 FILE,当它增长或被替换时运行程序 PROG" ++msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"监视日志文件 FILE,当它增长或被替换时运行程序 PROG" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" + msgstr "如果未找到字符串 STR,则不运行程序 PROG" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:125 + msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " +@@ -1015,6 +1304,7 @@ msgid "" + "kernel maintainers are unable to fix this problem." + msgstr "出现内核问题,但由于不支持您的硬件,因此内核维护者无法修复这个问题。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" +@@ -1022,44 +1312,56 @@ msgid "" + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "发生了内核问题,但您的内核已被污染(标志:%s)。内核维护器无法诊断被污染的报告。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "受污染的模块:%s。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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从指定文件(或标准输入)中提取出错信息" ++msgstr "& [-vusoxm] [-d 目录]/[-D] [文件]\n" ++"\n" ++"从指定文件(或标准输入)中提取出错信息" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "打印在标准输出中找到的严重错误(Oops)" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "在 DIR 中为每个发现的 oops 生成新问题目录" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "保存提取信息到PROBLEM" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "使问题目录可读" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "每 1 秒创建一个控流问题目录" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 + msgid "Print search string(s) to stdout and exit" + msgstr "输出搜索字符串至标准输出并退出" +@@ -1068,44 +1370,55 @@ msgstr "输出搜索字符串至标准输出并退出" + msgid "Failed to compile regex" + msgstr "编译正则表达式失败" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "无法更新问题:发现超过一个异常" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "休眠 %d 秒" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:237 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\n从文件 FILE (或标准输入)提取 Xorg 崩溃信息" ++msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"从文件 FILE (或标准输入)提取 Xorg 崩溃信息" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" + msgstr "在标准输出上输出找到的崩溃数据" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:246 + msgid "Create problem directory in DIR for every crash found" + msgstr "在 DIR 中为每个发现的崩溃生成新的问题目录" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." + msgstr "由于崩溃数据过大,导致追溯服务器无法使用。请使用本地追溯。" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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 "无法创建临时文件" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 + #: ../src/plugins/abrt-retrace-client.c:666 +@@ -1114,6 +1427,7 @@ msgstr "无法创建临时文件" + msgid "Failed to send HTTP header of length %d: NSS error %d" + msgstr "发送长度为 %d 的 HTTP 头失败:NSS 错误 %d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 + #: ../src/plugins/abrt-retrace-client.c:765 +@@ -1122,11 +1436,12 @@ msgstr "发送长度为 %d 的 HTTP 头失败:NSS 错误 %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "非预期服务器 HTTP 响应:%d\n" + "%s" +-msgstr "非预期服务器 HTTP 响应:%d\n%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 + #: ../src/plugins/abrt-retrace-client.c:841 +@@ -1136,25 +1451,31 @@ msgstr "非预期服务器 HTTP 响应:%d\n%s" + msgid "Invalid response from server: missing HTTP message body." + msgstr "来自服务器的无效响应:缺少 HTTP 消息体。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "回溯服务器无法处理软件包 '%s.%s'。\n是否确定它来自于官方软件源 '%s' ?" ++msgstr "回溯服务器无法处理软件包 '%s.%s'。\n" ++"是否确定它来自于官方软件源 '%s' ?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" + msgstr "正在查询服务器设置" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." + msgstr "服务器目前已满载。请稍后再试。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." + msgstr "服务器拒绝了您的请求。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:484 + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format +@@ -1168,23 +1489,28 @@ msgid "" + "crashes smaller or equal to %lld bytes." + msgstr "您的崩溃数据大小是 %lld 字节,但追溯服务器只接受小于或等于 %lld 字节的崩溃数据。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." + msgstr "服务器不支持 tar.xz 格式的档案。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:571 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." + msgstr "追溯服务器不支持该发行版本 '%s'。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:575 + msgid "The server is not able to handle your request." + msgstr "服务器无法处理您的请求。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:594 + msgid "Unknown package sent to Retrace server." + msgstr "已向追溯服务器发送未知软件包。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:603 + msgid "Preparing an archive to upload" + msgstr "正在准备上传的归档" +@@ -1201,6 +1527,7 @@ msgstr "您的归档大小为 %lld 字节,但是追溯服务器只接收小于 + msgid "You are going to upload %d megabytes. Continue?" + msgstr "即将上传 %d MB,是否继续?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:638 + msgid "Cancelled by user" + msgstr "用户已取消" +@@ -1215,66 +1542,79 @@ msgstr "正在上传 %d MB\n" + msgid "Uploading %lld bytes\n" + msgstr "正在上传 %lld 字节\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:699 + #, c-format + msgid "Uploading %d%%\n" + msgstr "已上传 %d%%\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:711 + msgid "Failed to read from a pipe" + msgstr "从管道读取失败" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:724 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" + msgstr "发送数据失败:NSS 错误 %d (%s):%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:735 + msgid "Upload successful" + msgstr "上传成功" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:757 + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." + msgstr "您的问题目录已损坏,无法由追溯服务器处理。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." + msgstr "该档案包含可疑文件(例如符号链接),因此无法处理。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." + msgstr "无效的服务器响应:缺少 X-Task-Id。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:778 + msgid "Invalid response from server: missing X-Task-Password." + msgstr "无效的服务器响应:缺少 X-Task-Password。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:785 + msgid "Retrace job started" + msgstr "追溯任务已开始" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "任务 ID:%s\n任务密码:%s\n" ++msgstr "任务 ID:%s\n" ++"任务密码:%s\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." + msgstr "无效的服务器响应:缺少 X-Task-Status。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "任务状态:%s\n" + "%s\n" +-msgstr "任务状态:%s\n%s\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 + #: ../src/plugins/abrt-retrace-client.c:1043 +@@ -1282,81 +1622,101 @@ msgstr "任务状态:%s\n%s\n" + msgid "Failed to send HTTP header of length %d: NSS error %d." + msgstr "无法发送长度为 %d 的 HTTP 头:NSS 错误 %d。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1160 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." + msgstr "追溯失败,请稍后再试。如果问题仍然存在,请上报该问题。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" + msgstr "记录至 syslog" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1209 + msgid "allow insecure connection to retrace server" + msgstr "允许与追溯服务器通过不安全的连接通信" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1211 + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" + msgstr "在上传档案前不检查服务器是否有能力处理指定软件包" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" + msgstr "追溯服务器 URL" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1216 + msgid "retrace server port" + msgstr "追溯服务器端口" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1218 + msgid "(debug) show received HTTP headers" + msgstr "(调试)显示收到的 HTTP 头" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1219 + msgid "For create and batch operations" + msgstr "用于创建和批量操作" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1221 + msgid "read data from ABRT problem directory" + msgstr "从 ABRT 目录中读取数据" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1223 + msgid "read data from coredump" + msgstr "从核心转储读取数据" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1225 + msgid "Delay for polling operations" + msgstr "因轮询操作而推迟" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " + msgstr "(调试)不删除转储目录创建的临时档案,位于" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" + msgstr "用于状态、回溯和日志操作" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1231 + msgid "id of your task on server" + msgstr "服务器上的任务 ID" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1233 + msgid "password of your task on server" + msgstr "服务器上的任务密码" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1237 + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client <操作> [选项]\n操作: create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client <操作> [选项]\n" ++"操作: create/status/backtrace/log/batch/exploitable" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 + msgid "Either problem directory or coredump is needed." + msgstr "需要问题目录或核心转储之一。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1294 + #: ../src/plugins/abrt-retrace-client.c:1302 + #: ../src/plugins/abrt-retrace-client.c:1310 +@@ -1364,6 +1724,7 @@ msgstr "需要问题目录或核心转储之一。" + msgid "Task id is needed." + msgstr "需要任务 ID。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1296 + #: ../src/plugins/abrt-retrace-client.c:1304 + #: ../src/plugins/abrt-retrace-client.c:1312 +@@ -1371,152 +1732,187 @@ msgstr "需要任务 ID。" + msgid "Task password is needed." + msgstr "需要任务密码。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1324 + #, c-format + msgid "Unknown operation: %s." + msgstr "未知操作:%s。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" + msgstr "本地 GNU 调试器" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" + msgstr "下载 debuginfo 软件包并用 GDB 在本地生成回溯数据" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "需要下载 debuginfo 软件包,这可能需要花较长时间并占用很多磁盘空间。然而和追溯服务器不同的是,它不需要发送核心转储至远程服务器上。" ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"需要下载 debuginfo 软件包,这可能需要花较长时间并占用很多磁盘空间。然而和追溯服务器不同的是,它不需要发送核心转储至远程服务器上。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" + msgstr "发送核心转储至远程追溯服务器以供分析" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "上传核心转储至服务器,由服务器生成回溯数据并返回。优点:无需下载 debuginfo;追溯服务器的 debuginfo 数据库更加完整;追溯服务器可以生成更好的回溯。缺点:您上传的核心转储包含崩溃程序的所有数据,如果有私人数据,也将会包含在其中。" ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"上传核心转储至服务器,由服务器生成回溯数据并返回。优点:无需下载 debuginfo;追溯服务器的 debuginfo " ++"数据库更加完整;追溯服务器可以生成更好的回溯。缺点:您上传的核心转储包含崩溃程序的所有数据,如果有私人数据,也将会包含在其中。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 + msgid "Retrace server URL" + msgstr "追溯服务器 URL" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 + #: ../src/plugins/analyze_CCpp.xml.in.h:4 + msgid "Address of the retrace server" + msgstr "追溯服务器地址" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 + #: ../src/plugins/analyze_CCpp.xml.in.h:5 + msgid "Insecure" + msgstr "不安全" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 + #: ../src/plugins/analyze_CCpp.xml.in.h:6 + msgid "Whether or not to use insecure connection" + msgstr "是否使用不安全连接" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "在所有不安全连接中写入 \"insecure\" <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"在所有不安全连接中写入 \"insecure\" <a href=\"https://fedorahosted.org/abrt/wiki/" ++"AbrtRetraceServerInsecureConnection\" >(warning)</a>" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" + msgstr "收集 .xsession-errors" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" + msgstr "从 ~/.xsession-errors 文件保存有关行" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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' 元素。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." + msgstr "服务器发生错误。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" + msgstr "服务器发生有关 '%s' 的错误" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:74 + msgid "An error occurred while connecting to the server" + msgstr "连接服务器时发生错误" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:77 + #, c-format + msgid "An error occurred while connecting to '%s'" + msgstr "连接至 '%s' 时发生错误" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:97 + #, c-format + msgid "Issuer certificate is invalid: '%s'." + msgstr "发行者证书无效:“%s”。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." + msgstr "证书由不受信任的发行者签名:“%s”。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." + msgstr "证书标题名称 '%s' 与目标主机名称 '%s' 不匹配。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." + msgstr "远程证书已过期。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." + msgstr "无法识别证书发行者:'%s'。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." + msgstr "接收到坏证书。主题“%s”,发行者“%s”。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:149 + #, c-format + msgid "Failed to get slot 'PEM Token #0': %d." + msgstr "获取“PEM Token #0”插槽失败:%d。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." + msgstr "无法解析主机名 '%s'。发生 NSS 错误 %d。" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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'。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." + msgstr "设置插槽阻塞模式失败。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:213 + msgid "Failed to wrap TCP socket by SSL." + msgstr "以 SSL 包装 TCP 插槽失败。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "启用客户端与 SSL 插槽的握手失败。" +@@ -1529,121 +1925,152 @@ msgstr "启用 SSL3 失败。" + msgid "Failed to enable TLS." + msgstr "启用 TLS 失败。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "设置 SSL Socket 网址失败。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "无法连接至 '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "设置证书钩失败。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "设置握手回调失败。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "重置握手失败。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "无法完成 SSL 握手:NSS 错误 %d。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "关闭 SSL 套接字失败。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "异常的 HTTP 响应头:'%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "接收数据失败:NSS 错误 %d。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "畸形的块响应。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "初始化 NSS 失败。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "初始化安全模块失败。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "关闭 NSS 失败。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:375 + msgid "List of bug ids" + msgstr "Bug 错误 ID 列表" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:376 + msgid "Specify a bodhi server url" + msgstr "指定一个 Bodhi 服务器地址" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:377 + msgid "Specify a release" + msgstr "指定一个发行版本号" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:382 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\n在 Bodhi 服务器上搜索更新" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"在 Bodhi 服务器上搜索更新" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" + msgstr "正在搜索更新" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:440 + msgid "No updates for this package found" + msgstr "未找到该软件包的可用更新" + ++# translation auto-copied from project abrt, version master, document abrt + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" + msgstr "该软件包的本地版本比可用更新的版本要高" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "软件包已有一个可能解决问题的更新,您可以通过执行 %s 来安装。是否继续报告问题?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." +-msgstr "& [-v] [-od] 文件...\n\n扫描多个文件寻找分割的出错信息。可以打印并/或删除它们。" ++msgstr "& [-v] [-od] 文件...\n" ++"\n" ++"扫描多个文件寻找分割的出错信息。可以打印并/或删除它们。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" + msgstr "打印已找到的内核错误" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" + msgstr "删除已找到的内核错误文件" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli-core.c:91 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' 标识出多于一个问题目录" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." +@@ -1652,18 +2079,22 @@ msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." + msgid "List problems [in DIRs]" + msgstr "列出 [in DIRs] 的问题" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "删除问题目录 DIR" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "分析并报告 DIR 中的问题数据" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "输出有关 DIR 的信息" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "显示最近的崩溃计数" +@@ -1672,6 +2103,7 @@ msgstr "显示最近的崩溃计数" + msgid "Process multiple problems" + msgstr "处理多个问题" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "详情请查看 'abrt-cli COMMAND --help'" +@@ -1682,23 +2114,28 @@ msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "%s 运行 'abrt-cli report %s' 在 Red Hat 客户门户网站中创建问题单\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [options] [DIR]..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "只列出未报告的问题" + ++# translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full + #: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "显示详细报告" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "仅列出比指定时间更晚的问题" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "仅列出比指定时间戳更早的问题" +@@ -1706,35 +2143,45 @@ msgstr "仅列出比指定时间戳更早的问题" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "已禁用自动报告功能。请考虑启用该功能,方法是\n作为有 root 特权的用户使用命令 'abrt-auto-reporting enabled'\n" ++msgstr "" ++"已禁用自动报告功能。请考虑启用该功能,方法是\n" ++"作为有 root 特权的用户使用命令 'abrt-auto-reporting enabled'\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "大于此处的文字在显示时会被削减" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "没有问题目录 '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:70 + msgid "& status [DIR]..." + msgstr "& status [DIR]..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:78 + msgid "Print only the problem count without any message" + msgstr "仅显示问题计数。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:79 + msgid "Print only the problems more recent than specified timestamp" + msgstr "仅显示比指定时间更晚的问题。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:104 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" +@@ -1779,6 +2226,7 @@ msgstr "没有 --since 参数,则重复所有探测到的问题。" + msgid "Selects only problems detected after timestamp" + msgstr "只选择时间戳之后探测到的问题" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +@@ -1791,76 +2239,96 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "向服务器上传核心转储,这样会生成并返回回溯。如果用户不想向任何服务器上传核心转储,则会执行本地分析。即使远程分析失败也可运行本地分析。这样的话,优点就是不需要下载 debuginfo 软件包,因为追溯服务器的 debuginfo 数据库更全面。追溯服务器可能生成更好的回溯。缺点就是您上传的核心转储可能会包含崩溃程序的所有数据,即便隐私数据也无法幸免。" ++msgstr "" ++"向服务器上传核心转储,这样会生成并返回回溯。如果用户不想向任何服务器上传核心转储,则会执行本地分析。即使远程分析失败也可运行本地分析。这样的话,优点就是不需要下载 " ++"debuginfo 软件包,因为追溯服务器的 debuginfo " ++"数据库更全面。追溯服务器可能生成更好的回溯。缺点就是您上传的核心转储可能会包含崩溃程序的所有数据,即便隐私数据也无法幸免。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" + msgstr "分析 VM 核心" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "安装内核 debuginfo 软件包,生成内核日志和 oops 信息" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." + msgstr "需要安装内核 debuginfo 软件包,安装该软件包需要很长时间,并占用磁盘空间。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" + msgstr "收集 GConf 配置" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" + msgstr "保存应用程序的 GConf 目录中的配置" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 并将其保存为 'gconf_subtree' 元素。" ++msgstr "" ++"运行 gconftool-2 --recursive-list /apps/executable 并将其保存为 'gconf_subtree' 元素。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" + msgstr "在系统范围内收集 vim 配置文件" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" + msgstr "保存 /etc/vimrc 和 /etc/gvimrc" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 中是否有 vimrd 和 gvimrc 文件,并将其分别保存为 system_vimrc 和 system_gvimrc。" ++msgstr "" ++"检查在 /etc 中是否有 vimrd 和 gvimrc 文件,并将其分别保存为 system_vimrc 和 system_gvimrc。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" + msgstr "收集您的 vim 配置文件" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" + msgstr "保存您主目录中的 .vimrc 和 .gvimrc 文件。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "检查在您的主目录中是否有 .vimrc 和 .gvimrc,并将其分别保存为 user_vimrc 和 user_gvimrc。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" + msgstr "提交报告" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:2 + msgid "Executed after the reporting is finished" + msgstr "完成报告后执行" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:3 + msgid "Used for updating of the databases" + msgstr "用于更新数据库" +diff --git a/po/zh_HK.po b/po/zh_HK.po +index 91c3896..692b311 100644 +--- a/po/zh_HK.po ++++ b/po/zh_HK.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/fedora-abrt/language/zh_HK/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: zh_HK\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/" ++"fedora-abrt/language/zh_HK/)\n" ++"Language: zh-HK\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +diff --git a/po/zh_TW.po b/po/zh_TW.po +index 57add71..56ed1ce 100644 +--- a/po/zh_TW.po ++++ b/po/zh_TW.po +@@ -6,24 +6,29 @@ + # Chester Cheng , 2012,2014 + # Jiří Moskovčák , 2011 + # Terry Chuang , 2014 ++# Chester Cheng , 2015. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-23 06:50+0000\n" +-"Last-Translator: Terry Chuang \n" +-"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-abrt/language/zh_TW/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"Language: zh_TW\n" ++"PO-Revision-Date: 2015-01-06 01:13-0500\n" ++"Last-Translator: Chester Cheng \n" ++"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-" ++"abrt/language/zh_TW/)\n" ++"Language: zh-TW\n" + "Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 3.5.1\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" + msgstr "自動臭蟲回報工具" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "ABRT notification applet" + msgstr "ABRT 通知面板程式" +@@ -43,31 +48,37 @@ msgstr "您是否希望啟用自動提交的當機回報?" + msgid "Do you want to enable automatically submitted anonymous crash reports?" + msgstr "您是否希望啟用自動提交的匿名當機回報?" + ++# translation auto-copied from project abrt, version master, document abrt + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" + msgstr "無法透過 DBus 連接至 NetworkManager:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" + msgstr "無法透過 NetworkManager 判定網路狀態:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:342 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "無法掌握「%s」的擁有權" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:350 + #, c-format + msgid "Can't open directory for writing '%s'" + msgstr "無法開啟目錄以寫入「%s」" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:417 + msgid "A problem has been detected" + msgstr "已偵測到問題" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" +@@ -78,12 +89,14 @@ msgstr "已偵測到 %s 軟體包發生問題" + msgid "%s and the diagnostic data has been submitted" + msgstr "%s 和診斷資料已提交" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:589 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 + #, c-format + msgid "Can't execute '%s'" + msgstr "無法執行「%s」" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" +@@ -91,96 +104,126 @@ msgstr "無法關閉通知:%s" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" +-msgstr "您正要將特定問題的通知消音。您將不再看見此問題的浮出式氣泡通知;然而,ABRT 仍會偵測此問題,而您也可以從 ABRT 的圖形使用介面中回報它\n\n您想要繼續嗎?" ++msgstr "" ++"您正要將特定問題的通知消音。您將不再看見此問題的浮出式氣泡通知;然而,ABRT 仍會偵測此問題,而您也可以從 ABRT 的圖形使用介面中回報它\n" ++"\n" ++"您想要繼續嗎?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" + msgstr "警告" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "會通知使用者有關於 ABRT 所發現的問題的通知區域面板程式" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:850 + msgid "translator-credits" +-msgstr "Eunju Kim , 2009.\nTerry Chuang , 2009, 2010.\nCheng-Chia Tseng , 2011, 2012." ++msgstr "" ++"Eunju Kim , 2009.\n" ++"Terry Chuang , 2009, 2010.\n" ++"Cheng-Chia Tseng , 2011, 2012." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:858 + msgid "_Quit" + msgstr "退出(_Q)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "隱藏" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:862 + msgid "_About" + msgstr "關於(_A)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "偵測到的問題" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:980 + msgid "Ignore forever" + msgstr "永遠忽略" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "開啟" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" + msgstr "此問題已被回報過" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" + msgstr "遭遇已知問題" + ++# translation auto-copied from project abrt, version master, document abrt + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "回報" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1020 + msgid "A Problem has Occurred" + msgstr "遭遇到問題" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" + msgstr "已回報問題" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" + msgstr "遭遇新問題" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" + msgstr "無法顯示通知:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #. TODO: Terminate child's process? + #: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "無法從 gio 通道讀取:「%s」" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" + msgstr "無法設定 gio 通道上的編碼:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "無法為 gio 通道啟動不阻擋模式:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1494 + #, c-format + msgid "" +@@ -188,67 +231,85 @@ msgid "" + "reappear on the next login" + msgstr "無法開啟與作業階段管理員的連線:「%s」,通知可能會在下次登入時再次出現" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" +-msgstr "& [-v] [DIR]...\n\n新問題被 ABRT 偵測到時通知使用者的面板程式\n" ++msgstr "& [-v] [DIR]...\n" ++"\n" ++"新問題被 ABRT 偵測到時通知使用者的面板程式\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" + msgstr "在佔用目錄前詢問" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" + msgstr "自動傳送 uReport" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" + msgstr "簡短回報" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" + msgstr "靜默簡短回報" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." +-msgstr "需要有核心傾印檔案才能生成堆疊追蹤資訊,而這個動作既費時又費空間。ABRT 提供以核心傾印生成堆疊追蹤資訊的服務,但您必須將核心傾印檔上傳到此服務中。停用此選項後,ABRT 不須詢問就會上傳核心傾印檔案。" ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." ++msgstr "" ++"需要有核心傾印檔案才能生成堆疊追蹤資訊,而這個動作既費時又費空間。ABRT " ++"提供以核心傾印生成堆疊追蹤資訊的服務,但您必須將核心傾印檔上傳到此服務中。停用此選項後,ABRT 不須詢問就會上傳核心傾印檔案。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" + "ABRT stores problem data in directories. Whenever ABRT needs writable " + "directory, the directory is moved from the system location to your home " + "directory. With this option disabled ABRT will move the problem directory " + "without asking." +-msgstr "ABRT 會將問題資料儲存在目錄中。每當 ABRT 需要可寫入的目錄,該目錄則會從系統位置移動到您的家目錄去。停用此選項後,ABRT 不須詢問便會移動問題目錄。" ++msgstr "" ++"ABRT 會將問題資料儲存在目錄中。每當 ABRT 需要可寫入的目錄,該目錄則會從系統位置移動到您的家目錄去。停用此選項後,ABRT " ++"不須詢問便會移動問題目錄。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." +-msgstr "uReport 是簡短且完全匿名的問題描述。ABRT 使用 uReport 以快速偵測全域是否有重複問題。預設組態下,uReport 會在回報過程的開頭送出。啟用此選項後,在偵測到問題當下會立即送出 uReport。" ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." ++msgstr "" ++"uReport 是簡短且完全匿名的問題描述。ABRT 使用 uReport 以快速偵測全域是否有重複問題。預設組態下,uReport " ++"會在回報過程的開頭送出。啟用此選項後,在偵測到問題當下會立即送出 uReport。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "啟用此選向後,在問題通知氣泡中點按「回報」按鈕而展開的回報程序會在 uReport 送出後中斷。您仍可以用預設的問題瀏覽器回報完整報告。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." + msgstr " 啟用此選項後,ABRT 永遠不會顯示問題回報通知。僅在啟用簡短回報時生效。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" + msgstr "在上傳核心傾印前詢問意願" +@@ -259,14 +320,17 @@ msgid "" + "access if possibly sensitive data are dected." + msgstr " 若啟用此選項,當 ABRT 偵測到敏感資訊時總會以限制存取方式建立臭蟲回報。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" + msgstr "內含敏感訊息故申請隱私請票" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" + msgstr "通知不完整的問題" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " +@@ -274,38 +338,48 @@ msgid "" + "allow you to submit these problems." + msgstr "資料不完整的問題通常在電腦關機動作之時,或是使用者正在登出時被偵測到。為了提供有價值的問題回報,ABRT 不會允許您提交此類問題報告。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" + msgstr "關閉(_C)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" + msgstr "預設值(_D)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" + msgstr "問題回報組態" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" + msgstr "關於系統組態 ABRT" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:105 + msgid "About" + msgstr "關於" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/main.c:106 + msgid "Quit" + msgstr "退出" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:382 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" +-msgstr "& [-v] [-c CONFFILE] -d DIR\n\n查詢軟體包資料庫,並儲存軟體包與元件名稱" ++msgstr "& [-v] [-c CONFFILE] -d DIR\n" ++"\n" ++"查詢軟體包資料庫,並儲存軟體包與元件名稱" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:394 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 +@@ -317,43 +391,52 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n\n查詢軟體包資料庫,並儲存軟 + msgid "Problem directory" + msgstr "問題目錄" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-action-save-package-data.c:395 + msgid "Configuration file" + msgstr "組態檔" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [選項]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:797 + msgid "Use NUM as client uid" + msgstr "使用 NUM 作為客戶端 UID" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "加入程式名稱至紀錄檔" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:123 + msgid "Unknown error" + msgstr "未知錯誤" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:188 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "「%s」不是有效的問題目錄" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:223 + #, c-format + msgid "'%s' element can't be modified" + msgstr "無法修改「%s」元素" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 + #: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 +@@ -361,33 +444,40 @@ msgstr "無法修改「%s」元素" + msgid "Not Authorized" + msgstr "未授權" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:256 + msgid "Can't access the problem for modification" + msgstr "無法存取問題以修改" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:461 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "目錄擁有者變更失敗。請檢查紀錄檔瞭解更多細節。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:559 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "「%s」不是有效的元素名稱" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:580 + #, c-format + msgid "Can't get size of '%s'" + msgstr "無法取得「%s」的大小" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:595 + msgid "No problem space left" + msgstr "無剩餘問題空間" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:627 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "無法從問題目錄「%2$s」刪除「%1$s」元素" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" +@@ -395,49 +485,61 @@ msgid "" + "is not running.\n" + msgstr "「%s」名稱已遺失,請確認其他擁有該名稱的服務並未執行中。\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "在停止使用 NUM 秒後離開" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "此程式必須以 root 身份執行。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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 不會允許您提交此種問題報告。若您有時間,且也想幫助開發者來處理此問題,請直接聯繫開發者。" ++"detected while computer is shutting down or user is logging out. In order to " ++"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 " ++"不會允許您提交此種問題報告。若您有時間,且也想幫助開發者來處理此問題,請直接聯繫開發者。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" + msgstr "不要在幕後運行" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:498 + msgid "Log to syslog even with -d" + msgstr "即使加上 -d 參數也紀錄至 syslog" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:388 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:396 + msgid "Run EVENT on DIR" + msgstr "於 DIR 執行 EVENT" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-handle-event.c:397 + msgid "Communicate directly to the user" + msgstr "直接與使用者溝通" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "無工作器可用,緩衝也塞滿。略過「%s」封存" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +@@ -448,33 +550,98 @@ msgid "" + "\n" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "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 選項的其中一值" ++msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"監視 UPLOAD_DIRECTORY,並將傳入的封存檔解開放入 abrt.conf \n" ++"中指定的 DumpLocation\n" ++"\n" ++"如果沒有提供 UPLOAD_DIRECTORY 位置,則使用 abrt.conf 中\n" ++"WatchCrashdumpArchiveDir 選項的其中一值" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" + msgstr "幕後處理" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " + msgstr "同時工作序數量。預設為 " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " + msgstr "最大快取大小,單位為 MiB。預設為 " + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "關閉身份認證" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "Red Hat Support 使用者名稱" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "Red Hat Support 密碼;如果未提供密碼,將會發出提示" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "uReport SSL 憑證路徑或憑證類型" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "使用 --password 時必須指定 --username" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "您可以使用 --username 或 --certificate" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "您可以使用 --username 或 --anonymous" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "您可以使用 --anonymous 或 --certificate" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "引數數量無效" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "選項值不明:「%s」\n" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "密碼:" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "沒有密碼無法繼續\n" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "HTTP 身份認證自動回報" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "SSL 用戶端身份憑證自動回報" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "匿名自動回報" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -485,7 +652,14 @@ msgid "" + " ABRT_SPOOL_DIR - Directory where valid uploaded archives are unpacked to\n" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" +-msgstr "用法:%s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n\n -v - 詳盡\n -d - 刪除上傳的封存檔\n ABRT_SPOOL_DIR - 有效之上傳過的封存檔解開後所放置的目錄\n UPLOAD_DIR - 上傳過的封存檔之儲存目錄\n FILENAME - 上傳過的封存檔名稱\n" ++msgstr "" ++"用法:%s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - 詳盡\n" ++" -d - 刪除上傳的封存檔\n" ++" ABRT_SPOOL_DIR - 有效之上傳過的封存檔解開後所放置的目錄\n" ++" UPLOAD_DIR - 上傳過的封存檔之儲存目錄\n" ++" FILENAME - 上傳過的封存檔名稱\n" + + #: ../src/daemon/abrt-handle-upload.in:105 + #: ../src/daemon/abrt-handle-upload.in:108 +@@ -552,41 +726,49 @@ msgstr "無法解開「{0}」" + msgid "'{0}' processed successfully" + msgstr "「{0}」處理成功" + ++# translation auto-copied from project abrt, version master, document abrt + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" + msgstr "正在產生追蹤資訊" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:42 + #, c-format + msgid "Can't connect to system DBus: %s" + msgstr "無法連接至系統 DBus:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" + msgstr "無法 chown 「%s」:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" + msgstr "刪除問題目錄失敗:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:133 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "無法從 abrt-dbus 取得問題資料:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "無法從 abrt-dbus 取得問題清單:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" + msgstr "無法建立暫存檔「%s」" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" +@@ -594,38 +776,50 @@ msgid "" + "problems '%s'" + msgstr "無法寫入「%s」。問題「%s」不會從忽略的問題「%s」中移除" + ++# translation auto-copied from project abrt, version master, document abrt + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" + msgstr "無法將「%s」重新命名為「%s」。無法移除問題「%s」" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" +-msgstr "& [選項] -d DIR\n\n在問題目錄 DIR 內分析 C/C++ 追蹤資訊、產生複本雜湊、\n追蹤資料評等、辨識當機函式" ++msgstr "& [選項] -d DIR\n" ++"\n" ++"在問題目錄 DIR 內分析 C/C++ 追蹤資訊、產生複本雜湊、\n" ++"追蹤資料評等、辨識當機函式" + ++# translation auto-copied from project abrt, version master, document abrt ++#. + #. * 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 的追蹤解析失敗" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" + msgstr "沒有找到崩潰執行序" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-c.c:67 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" +-msgstr "& [-v] -d DIR\n\n在問題目錄 DIR 內計算並儲存的核心傾印其 UUID" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"在問題目錄 DIR 內計算並儲存的核心傾印其 UUID" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -646,54 +840,70 @@ msgstr "用法:%s [-v] [-o OUTFILE] -c COREFILE" + msgid "COREFILE is not specified" + msgstr "未指定 COREFILE" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" +-msgstr "& [-v] -d DIR\n\n為 oops 問題目錄 DIR 計算並儲存 UUID 與 DUPHASH" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"為 oops 問題目錄 DIR 計算並儲存 UUID 與 DUPHASH" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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\n為 xorg 問題目錄 DIR 計算並儲存 UUID 與 DUPHASH" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"為 xorg 問題目錄 DIR 計算並儲存 UUID 與 DUPHASH" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" + msgstr "已載入「%s」模組 - 不會回報此當機資訊" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" +-msgstr "& [-v] -d DIR\n\n計算並儲存 python 當掉傾印的 UUID 與 DUPHASH" ++msgstr "& [-v] -d DIR\n" ++"\n" ++"計算並儲存 python 當掉傾印的 UUID 與 DUPHASH" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" + msgstr "用法:{0} [-v[v]] [--core=VMCORE]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "檔案 {0} 不存在" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" + msgstr "從核心抽出 oops 內文" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" ++"{1}" ++msgstr "無法處理 {0}:\n" + "{1}" +-msgstr "無法處理 {0}:\n{1}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" + msgstr "無法抽出 oops 訊息:「{0}」" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" + msgstr "Oops 內文已成功抽出" +@@ -702,55 +912,71 @@ msgstr "Oops 內文已成功抽出" + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" +-msgstr "Kernel 日誌顯示已偵測到硬體錯誤。\n這很可能不是軟體上的錯誤。\n" ++msgstr "Kernel 日誌顯示已偵測到硬體錯誤。\n" ++"這很可能不是軟體上的錯誤。\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" +-msgstr "& [選項] -d DIR\n\n分析問題目錄 DIR 內的核心傾印,產生並儲存追蹤資訊" ++msgstr "& [選項] -d DIR\n" ++"\n" ++"分析問題目錄 DIR 內的核心傾印,產生並儲存追蹤資訊" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" + msgstr "額外 debuginfo 目錄" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" + msgstr "若 gdb 執行超過 NUM 秒就終止它" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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 "追蹤資訊已產生並儲存,計 %u 位元組" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" +-msgstr "& [-v] [-r] -d DIR\n\n從核心傾印與相對應的二進位檔建立 coredump-level 追蹤資料" ++msgstr "& [-v] [-r] -d DIR\n" ++"\n" ++"從核心傾印與相對應的二進位檔建立 coredump-level 追蹤資料" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" + msgstr "不要製作雜湊指紋" + ++# translation auto-copied from project abrt, version master, document abrt + #. Let user know what's going on + #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 + msgid "Generating core_backtrace" + msgstr "正在 core_backtrace..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" + msgstr "錯誤:GDB 未傳回任何資料" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" + msgstr "錯誤:%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" + msgstr "正在離開使用者指令" +@@ -759,7 +985,8 @@ msgstr "正在離開使用者指令" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -769,18 +996,40 @@ msgid "" + " -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" ++" --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" ++msgstr "" ++"使用方法: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" ++"to CACHEDIR, using TMPDIR as temporary staging area.\n" ++"Old 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" +-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" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" + msgstr "無法開啟 {0}:{1}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "核心傾印參照 {0} 份 debuginfo 檔,其中的 {1} 份尚未安裝" +@@ -793,14 +1042,17 @@ msgstr "{0} 個debuginfo 檔案尚未安裝" + msgid "Missing requested file: {0}" + msgstr "請求的檔案遺失:{0}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" + msgstr "遺失 debuginfo 檔:{0}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:231 + msgid "All debuginfo files are available" + msgstr "所有的 debuginfo 檔案皆可用" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -808,28 +1060,38 @@ msgid "" + "amount of data)." + msgstr "確定要上傳核心傾印?(它可能包含敏感資料)。若您的答案為「否」,將會在本地建立堆疊追蹤。(這可能需要下載大量資料)。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "您想要在本機上生成堆疊追蹤嗎?(這可能需要下載巨量資料,不過報告若無堆疊追蹤便無法繼續。)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\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刪除於 DIRs 目錄中的問題目錄 (-d) 或檔案 (-f),直到它們小於 SIZE。\nFILEs 會被保留 (永不刪除)。" ++msgstr "" ++"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"\n" ++"刪除於 DIRs 目錄中的問題目錄 (-d) 或檔案 (-f),直到它們小於 SIZE。\n" ++"FILEs 會被保留 (永不刪除)。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" + msgstr "刪除整個問題目錄" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:237 + msgid "Delete files inside this directory" + msgstr "刪除此目錄內的檔案" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-trim-files.c:238 + msgid "Preserve this directory" + msgstr "保留這個目錄" +@@ -866,131 +1128,163 @@ msgstr "uReport 已經送出,不再傳送" + msgid "reporter-ureport failed with exit code %d" + msgstr "reporter-ureport 作業失敗,離開碼為 %d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" + msgstr "訊號由使用者空間代碼傳送" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" + msgstr "訊號由 timer/IO/async 事件傳送" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" + msgstr "訊號有 siginfo.si_code = SI_USER" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" + msgstr "訊號截止以寫入關閉的導管" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" + msgstr "訊號由鍵盤傳送" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" + msgstr "內核傳送的工作控制訊號" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" + msgstr "視窗重新調整大小傳送的訊號" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" + msgstr "alarm(N) 過期傳送的訊號" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" + msgstr "訊號截止以寫入損壞的導管" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" + msgstr "ABRT 訊號 (abort() 被呼叫?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" + msgstr "XCPU 訊號 (超過 CPU 時限)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:620 + msgid "XFSZ signal (over file size limit)" + msgstr "XFSZ 訊號 (超過檔案大小限制)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:624 + msgid "TRAP signal (can be a bug in a debugger/tracer)" + msgstr "TRAP 訊號 (可能是除錯器或追蹤器的臭蟲)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:628 + msgid "SYS signal (unknown syscall was called?)" + msgstr "SYS 訊號 (未知的 syscall 被呼叫?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" + msgstr "數學例外" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" + msgstr "除以零" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" + msgstr "無效指示 (跳入隨機位址?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" + msgstr "無崩潰相關訊號" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" + msgstr "堆疊溢位" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:656 + msgid "Write to an invalid address" + msgstr "寫入無效的位址" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" + msgstr "副常式回傳無效的位址 (堆疊損毀?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 + msgid "Jump to an invalid address" + msgstr "跳入無效的位址" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" + msgstr "存取已通過映射檔案的結尾、無效的位址、無對齊的存取..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" + msgstr "無法取得訊號編號,無法執行可利用性分析\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " + msgstr "可能的崩潰原因:" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " + msgstr "可利用等級 (0-9 規模):" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " + msgstr "目前指令:" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" + msgstr "可利用性分析結果為空\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" + "& [-vs] [-F STR]... FILE PROG [ARGS]\n" + "\n" + "Watch log file FILE, run PROG when it grows or is replaced" +-msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n\n監看記錄檔 FILE,當該檔案變大或被取代時執行 PROG" ++msgstr "& [-vs] [-F STR]... FILE PROG [ARGS]\n" ++"\n" ++"監看記錄檔 FILE,當該檔案變大或被取代時執行 PROG" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" + msgstr "若找不到 STR 時則不要執行 PROG" +@@ -1007,6 +1301,7 @@ msgid "" + "kernel maintainers are unable to fix this problem." + msgstr "發生了一項 kernel 問題,不過您的硬體不受到支援,因此 kernel 維護人員無法修正此問題。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:145 + #, c-format + msgid "" +@@ -1014,44 +1309,56 @@ msgid "" + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "遭遇一項內核問題,但您的內核已經損壞 (旗標:%s)。內核維護者無法診斷損壞的回報有什麼問題。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." + msgstr "損壞的模組:%s。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" ++msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"從 FILE (或標準輸入) 抽出 oops" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:274 + msgid "Print found oopses on standard output" + msgstr "列印找到的 oops 於標準輸出上" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "在 DIR 內為每個找到的 oops 建立新的問題目錄" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 內指定" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:280 + msgid "Save the extracted information in PROBLEM" + msgstr "將抽出的資訊存入 PROBLEM 中" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 + msgid "Make the problem directory world readable" + msgstr "讓問題目錄全世界都可以讀取" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:282 + msgid "Throttle problem directory creation to 1 per second" + msgstr "節制問題目錄的建立速度為每秒 1 個" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 上並離開" +@@ -1060,44 +1367,55 @@ msgstr "將搜尋字串列印在 stdout 上並離開" + msgid "Failed to compile regex" + msgstr "無法編譯 regex" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:402 + msgid "Can't update the problem: more than one oops found" + msgstr "無法更新問題:找到超過一份 oops" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-oops.c:421 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "正睡眠 %d 秒" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:237 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" +-msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n\n從 FILE (或標準輸出) 抽出 Xorg 當機資訊" ++msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"從 FILE (或標準輸出) 抽出 Xorg 當機資訊" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:245 + msgid "Print found crash data on standard output" + msgstr "將找到的崩潰資料列印在標準輸出上" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-dump-xorg.c:246 + msgid "Create problem directory in DIR for every crash found" + msgstr "在 DIR 內為每個找到的當機資料建立問題目錄" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." + msgstr "回追伺服器無法使用,因為當掉資訊過大。請嘗試本地端回追處理。" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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 "無法建立暫存檔於" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 + #: ../src/plugins/abrt-retrace-client.c:666 +@@ -1106,6 +1424,7 @@ msgstr "無法建立暫存檔於" + msgid "Failed to send HTTP header of length %d: NSS error %d" + msgstr "無法傳送長度 %d 的 HTTP 標頭:NSS 錯誤 %d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 + #: ../src/plugins/abrt-retrace-client.c:765 +@@ -1114,11 +1433,12 @@ msgstr "無法傳送長度 %d 的 HTTP 標頭:NSS 錯誤 %d" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" ++"%s" ++msgstr "來自伺服器的未預期回應:%d\n" + "%s" +-msgstr "來自伺服器的未預期回應:%d\n%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 + #: ../src/plugins/abrt-retrace-client.c:841 +@@ -1128,25 +1448,31 @@ msgstr "來自伺服器的未預期回應:%d\n%s" + msgid "Invalid response from server: missing HTTP message body." + msgstr "來自伺服器的回應無效:遺失 HTTP 訊息本文。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" +-msgstr "回追伺服器無法處理軟體包「%s.%s」。\n該軟體包是否來自官方「%s」軟體庫?" ++msgstr "回追伺服器無法處理軟體包「%s.%s」。\n" ++"該軟體包是否來自官方「%s」軟體庫?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" + msgstr "正在查詢伺服器設定值" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:452 + msgid "The server is fully occupied. Try again later." + msgstr "伺服器目前完全被佔線。請稍候重試。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:453 + msgid "The server denied your request." + msgstr "伺服器已拒絕您的請求。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:484 + #: ../src/plugins/abrt-retrace-client.c:500 + #, c-format +@@ -1160,23 +1486,28 @@ msgid "" + "crashes smaller or equal to %lld bytes." + msgstr "您的當掉資訊大小為 %lld 位元組,但是回追伺服器僅接受小於或等於 %lld 位元組的當掉資訊。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." + msgstr "伺服器不支援 xz 壓縮版 tarball。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:571 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." + msgstr "回追伺服器不支援「%s」發行版。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:575 + msgid "The server is not able to handle your request." + msgstr "伺服器無法處理您的請求。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:594 + msgid "Unknown package sent to Retrace server." + msgstr "傳送給回追伺服器的軟體包不明。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:603 + msgid "Preparing an archive to upload" + msgstr "正在準備要上傳的封存檔" +@@ -1193,6 +1524,7 @@ msgstr "您的封存檔大小為 %lld 位元組,但是回追伺服器僅接受 + msgid "You are going to upload %d megabytes. Continue?" + msgstr "您即將上傳 %d MB 的資料。是否繼續?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:638 + msgid "Cancelled by user" + msgstr "使用者已取消" +@@ -1207,66 +1539,79 @@ msgstr "正在上傳 %d MB\n" + msgid "Uploading %lld bytes\n" + msgstr "正在上傳 %lld 位元組\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:699 + #, c-format + msgid "Uploading %d%%\n" + msgstr "正在上傳 %d%%\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:711 + msgid "Failed to read from a pipe" + msgstr "無法從 pipe 讀取" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:724 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" + msgstr "無法傳送資料:NSS 錯誤 %d (%s):%s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:735 + msgid "Upload successful" + msgstr "上傳成功" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:757 + msgid "" + "Your problem directory is corrupted and can not be processed by the Retrace " + "server." + msgstr "您的問題目錄已損毀,無法被回追伺服器處理。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:759 + msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." + msgstr "封存檔包含惡意檔案 (像是 symlinks) 因此無法處理。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." + msgstr "來自伺服器的回應無效:遺失 X-Task-Id。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:778 + msgid "Invalid response from server: missing X-Task-Password." + msgstr "來自伺服器的回應無效:遺失 X-Task-Password。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:785 + msgid "Retrace job started" + msgstr "回追工作已開始" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" +-msgstr "工作事項 Id:%s\n工作事項密碼:%s\n" ++msgstr "工作事項 Id:%s\n" ++"工作事項密碼:%s\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." + msgstr "來自伺服器的無效回應:遺失 X-Task-Status。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" ++"%s\n" ++msgstr "作業狀態:%s\n" + "%s\n" +-msgstr "作業狀態:%s\n%s\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:899 + #: ../src/plugins/abrt-retrace-client.c:973 + #: ../src/plugins/abrt-retrace-client.c:1043 +@@ -1274,81 +1619,101 @@ msgstr "作業狀態:%s\n%s\n" + msgid "Failed to send HTTP header of length %d: NSS error %d." + msgstr "無法傳送長度 %d 的 HTTP 標頭:NSS 錯誤 %d。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1160 + msgid "" + "Retrace failed. Try again later and if the problem persists report this " + "issue please." + msgstr "回追失敗。請稍候重試,若這個問題持續發生,請回報此議題。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1207 + msgid "log to syslog" + msgstr "紀錄至 syslog" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1209 + msgid "allow insecure connection to retrace server" + msgstr "允許連接至回追伺服器的不安全連線" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1211 + msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" + msgstr "在上傳封存檔之前,不要檢查回追伺服器是否可以處理給定的軟體包" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" + msgstr "回追伺服器網址" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1216 + msgid "retrace server port" + msgstr "回追伺服器連接埠" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1218 + msgid "(debug) show received HTTP headers" + msgstr "(除錯) 顯示接收的 HTTP 標頭" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1219 + msgid "For create and batch operations" + msgstr "建立與批次操作" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1221 + msgid "read data from ABRT problem directory" + msgstr "從 ABRT 問題目錄讀取資料" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1223 + msgid "read data from coredump" + msgstr "從核心傾印讀取資料" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1225 + msgid "Delay for polling operations" + msgstr "為投票操作而延遲" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " + msgstr "(除錯) 不要從此目錄內的傾印目錄刪除已建立的暫存封存檔:" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" + msgstr "狀態、追蹤、紀錄等操作" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1231 + msgid "id of your task on server" + msgstr "伺服器上您工作事項的 id" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1233 + msgid "password of your task on server" + msgstr "伺服器上您工作事項的密碼" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1237 + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" +-msgstr "abrt-retrace-client <操作> [選項]\n操作項:create/status/backtrace/log/batch/exploitable" ++msgstr "" ++"abrt-retrace-client <操作> [選項]\n" ++"操作項:create/status/backtrace/log/batch/exploitable" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 + msgid "Either problem directory or coredump is needed." + msgstr "需要問題目錄或者是核心傾印。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1294 + #: ../src/plugins/abrt-retrace-client.c:1302 + #: ../src/plugins/abrt-retrace-client.c:1310 +@@ -1356,6 +1721,7 @@ msgstr "需要問題目錄或者是核心傾印。" + msgid "Task id is needed." + msgstr "需要工作事項 id。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1296 + #: ../src/plugins/abrt-retrace-client.c:1304 + #: ../src/plugins/abrt-retrace-client.c:1312 +@@ -1363,152 +1729,188 @@ msgstr "需要工作事項 id。" + msgid "Task password is needed." + msgstr "需要工作事項密碼。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1324 + #, c-format + msgid "Unknown operation: %s." + msgstr "未知操作:%s。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" + msgstr "本地端 GNU 除錯器" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:2 + msgid "Download debuginfo packages and generate backtrace locally using GDB" + msgstr "下載 debuginfo 軟體包並透過本地端的 GDB 產生追蹤資訊" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." +-msgstr "需要下載 debuginfo 軟體包,並且可能會花上一段時間以及消耗一些磁碟空間。然而,這不像 RetraceServer,所以不會傳送核心傾印資料至遠端機器。" ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." ++msgstr "" ++"需要下載 debuginfo 軟體包,並且可能會花上一段時間以及消耗一些磁碟空間。然而,這不像 " ++"RetraceServer,所以不會傳送核心傾印資料至遠端機器。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" + msgstr "傳送核心傾印至遠端回追伺服器來分析" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." +-msgstr "上傳核心傾印資料至伺服器,該伺服器會產生回追資料並回傳。優點:不需要下載 debuginfo 軟體包、回追伺服器資料庫中的 debuginfo 比較完整、回追伺服器可能會產生比較良好的追蹤資料。缺點:您需要上傳核心傾印檔案,該檔案包含當掉程式的所有資料,包括您的私人資料 (如果有的話)。" ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." ++msgstr "" ++"上傳核心傾印資料至伺服器,該伺服器會產生回追資料並回傳。優點:不需要下載 debuginfo 軟體包、回追伺服器資料庫中的 debuginfo " ++"比較完整、回追伺服器可能會產生比較良好的追蹤資料。缺點:您需要上傳核心傾印檔案,該檔案包含當掉程式的所有資料,包括您的私人資料 (如果有的話)。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 + msgid "Retrace server URL" + msgstr "回追伺服器網址" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 + #: ../src/plugins/analyze_CCpp.xml.in.h:4 + msgid "Address of the retrace server" + msgstr "回追伺服器的位址" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 + #: ../src/plugins/analyze_CCpp.xml.in.h:5 + msgid "Insecure" + msgstr "不安全" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 + #: ../src/plugins/analyze_CCpp.xml.in.h:6 + msgid "Whether or not to use insecure connection" + msgstr "是否使用不安全的連線" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" +-msgstr "寫入「insecure」來允許不安全的連線 <a href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" ++msgstr "" ++"寫入「insecure」來允許不安全的連線 <a href=\"https://fedorahosted.org/abrt/wiki/" ++"AbrtRetraceServerInsecureConnection\" >(warning)</a>" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" + msgstr "收集 .xsession-errors" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" + msgstr "從 ~/.xsession-error 檔案儲存相關的紀錄列" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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」元素儲存。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." + msgstr "伺服器端遭遇錯誤。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" + msgstr "在「%s」上遭遇伺服器端錯誤" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:74 + msgid "An error occurred while connecting to the server" + msgstr "當連接至伺服器時遭遇錯誤" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:77 + #, c-format + msgid "An error occurred while connecting to '%s'" + msgstr "當連接至「%s」時遭遇錯誤" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:97 + #, c-format + msgid "Issuer certificate is invalid: '%s'." + msgstr "發行單位憑證無效:「%s」。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:100 + #, c-format + msgid "Certificate is signed by an untrusted issuer: '%s'." + msgstr "憑證由未受信任的發行單位簽署:「%s」。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:103 + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." + msgstr "憑證主體名稱「%s」不符合目標主機名稱「%s」。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:107 + msgid "Remote certificate has expired." + msgstr "遠端憑證已經過期。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." + msgstr "憑證發行單位無法辨識:「%s」。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." + msgstr "接收到不良憑證。主體「%s」,發行單位「%s」。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:149 + #, c-format + msgid "Failed to get slot 'PEM Token #0': %d." + msgstr "無法取得 slot「PEM Token #0」:%d。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." + msgstr "無法解析主機名稱「%s」。NSS 錯誤 %d。" + ++# translation auto-copied from project abrt, version master, document abrt + #. 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」。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:210 + msgid "Failed to set socket blocking mode." + msgstr "無法設定 socket 阻擋模式。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:213 + msgid "Failed to wrap TCP socket by SSL." + msgstr "無法透過 SSL 包裝 TCP socket。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:215 + msgid "Failed to enable client handshake to SSL socket." + msgstr "無法啟用對於 SSL socket 的客戶端握手。" +@@ -1521,141 +1923,177 @@ msgstr "無法啟用 SSL3。" + msgid "Failed to enable TLS." + msgstr "無法啟用 TLS。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." + msgstr "無法設定網址為 SSL socket。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" + msgstr "無法連接至「%s」" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." + msgstr "無法設定憑證 hook。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." + msgstr "無法設定握手回呼。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:251 + msgid "Failed to reset handshake." + msgstr "無法重設握手。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." + msgstr "無法完成 SSL 握手:NSS 錯誤 %d。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." + msgstr "無法關閉 SSL socket。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" + msgstr "格式不良的 HTTP 回應標頭:「%s」" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." + msgstr "資料接收失敗:NSS 錯誤 %d。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." + msgstr "格式不良的 chunked 回應。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:423 + msgid "Failed to initialize NSS." + msgstr "無法初始化 NSS。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:429 + msgid "Failed to initialize security module." + msgstr "無法初始化安全模組。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:444 + msgid "Failed to shutdown NSS." + msgstr "無法關閉 NSS。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:375 + msgid "List of bug ids" + msgstr "臭蟲 ID 清單" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:376 + msgid "Specify a bodhi server url" + msgstr "指定 bodhi 伺服器 URL" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:377 + msgid "Specify a release" + msgstr "指定發行版" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:382 + msgid "" + "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" + "\n" + "Search for updates on bodhi server" +-msgstr "& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n\n在 bodhi 伺服器上搜尋是否有可用更新" ++msgstr "" ++"& [-v] [-r[RELEASE]] (-b ID1[,ID2,...] | PKG-NAME) [PKG-NAME]... \n" ++"\n" ++"在 bodhi 伺服器上搜尋是否有可用更新" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" + msgstr "搜尋是否有更新" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:440 + msgid "No updates for this package found" + msgstr "找不到此軟體包的更新" + ++# translation auto-copied from project abrt, version master, document abrt + #. strbuf_free(q); + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" + msgstr "本地端的軟體包版本比可用更新的版本還新" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "目前有個更新可用,或許它能修正您的問題。您可以藉由執行此動作來安裝它:%s。您想要繼續回報臭蟲嗎?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + 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" ++"\n" ++"為分割的 oops 訊息掃描檔案。可以列印與/或刪除它們。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" + msgstr "列印找到的 oops" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" + msgstr "刪除找到的 oops 其檔案" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli-core.c:91 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "「%s」辨識出一個以上的問題目錄" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:144 + msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." + msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:148 + msgid "List problems [in DIRs]" + msgstr "列出 [DIRs 中] 的問題" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:149 + msgid "Remove problem directory DIR" + msgstr "從問題目錄 DIR 移除檔案" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:150 + msgid "Analyze and report problem data in DIR" + msgstr "在 DIR 內分析並回報問題資料" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:151 + msgid "Print information about DIR" + msgstr "列印有關 DIR 的資訊" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:152 + msgid "Print the count of the recent crashes" + msgstr "列印最近程式崩潰的數目" +@@ -1664,6 +2102,7 @@ msgstr "列印最近程式崩潰的數目" + msgid "Process multiple problems" + msgstr "處理多項問題" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/abrt-cli.c:168 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "請見 'abrt-cli COMMAND --help' 以瞭解更多資訊" +@@ -1674,23 +2113,28 @@ msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "%s執行 'abrt-cli report %s' 以在 Red Hat 客戶入口網站中建立案例\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:179 + msgid "& list [options] [DIR]..." + msgstr "& list [選項] [DIR]..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:188 + msgid "List only not-reported problems" + msgstr "僅列出尚未回報的問題" + ++# translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full + #: ../src/cli/list.c:190 ../src/cli/list.c:243 + msgid "Show detailed report" + msgstr "顯示詳細的回報" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:191 + msgid "List only the problems more recent than specified timestamp" + msgstr "僅列出比指定的時間戳記更近期的問題" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:192 + msgid "List only the problems older than specified timestamp" + msgstr "僅列出比指定的時間戳記更之前的問題" +@@ -1698,35 +2142,45 @@ msgstr "僅列出比指定的時間戳記更之前的問題" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" +-msgstr "Autoreporting 功能已停用。請考慮以擁有 root 權限的使用者\n身份,透過「abrt-auto-reporting enabled」 來啟用它\n" ++msgstr "" ++"Autoreporting 功能已停用。請考慮以擁有 root 權限的使用者\n" ++"身份,透過「abrt-auto-reporting enabled」 來啟用它\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:235 + msgid "& info [options] DIR..." + msgstr "& info [選項] DIR..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:244 + msgid "Text larger than this will be shown abridged" + msgstr "大於此的文字會刪減顯示" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/list.c:264 + #, c-format + msgid "No such problem directory '%s'" + msgstr "沒有這個問題目錄「%s」" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:70 + msgid "& status [DIR]..." + msgstr "& status [DIR]..." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:78 + msgid "Print only the problem count without any message" + msgstr "僅列印問題數目而不帶任何訊息" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:79 + msgid "Print only the problems more recent than specified timestamp" + msgstr "僅列印比指定的時間戳記更近期的問題" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/status.c:104 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" +@@ -1771,6 +2225,7 @@ msgstr "若不用 --since 引數,則會在所有偵測到的問題之間迭代 + msgid "Selects only problems detected after timestamp" + msgstr "僅選取時間戳記之後的問題" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" + "Send core dump to remote retrace server for analysis or perform local " +@@ -1783,76 +2238,95 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." +-msgstr "上傳核心傾印資料至伺服器,該伺服器會產生回追資料並回傳。如果使用者此刻不想上傳核心傾印資料至其他地方,事件會改以本地端分析執行。優點:不需要下載 debuginfo 軟體包、回追伺服器資料庫中的 debuginfo 比較完整、回追伺服器可能會產生比較良好的追蹤資料。缺點:您需要上傳核心傾印檔案,該檔案包含當掉程式的所有資料,包括您的私人資料 (如果有的話)。" ++msgstr "" ++"上傳核心傾印資料至伺服器,該伺服器會產生回追資料並回傳。如果使用者此刻不想上傳核心傾印資料至其他地方,事件會改以本地端分析執行。優點:不需要下載 " ++"debuginfo 軟體包、回追伺服器資料庫中的 debuginfo " ++"比較完整、回追伺服器可能會產生比較良好的追蹤資料。缺點:您需要上傳核心傾印檔案,該檔案包含當掉程式的所有資料,包括您的私人資料 (如果有的話)。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" + msgstr "分析 VM 核心" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "安裝內核 debuginfo 軟體包,產生內核紀錄與 oops 訊息" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." + msgstr "需要安裝內核 debuginfo 軟體包,並且可能會花上一段長時間以及消耗磁碟空間。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" + msgstr "收集 GConf 組態" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" + msgstr "從應用程式的 GConf 目錄儲存組態" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 並儲存為「gconf_subtree」元素。" ++msgstr "" ++"執行 gconftool-2 --recursive-list /apps/executable 並儲存為「gconf_subtree」元素。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" + msgstr "收集系統域 vim 組態檔" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" + msgstr "儲存 /etc/vimrc 與 /etc/gvimrc" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 內是否有 vimrc 與 gvimrc,並將它們個別儲存為 system_vimrc 與 system_gvimrc。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" + msgstr "收集您的 vim 組態檔" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" + msgstr "從您的家目錄儲存 .vimrc 與 .gvimrc" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "檢查您的家目錄是否有 .vimrc 與 .gvimrc,並將它們個別儲存為 user_vimrc 與 user_gvimrc。" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" + msgstr "張貼回報" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:2 + msgid "Executed after the reporting is finished" + msgstr "在回報完成後執行" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/post_report.xml.in.h:3 + msgid "Used for updating of the databases" + msgstr "用於資料庫的更新" +diff --git a/po/zu.po b/po/zu.po +index cc010bd..dc944c2 100644 +--- a/po/zu.po ++++ b/po/zu.po +@@ -5,17 +5,19 @@ + # Translators: + msgid "" + msgstr "" +-"Project-Id-Version: ABRT\n" ++"Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2014-12-12 14:29+0100\n" +-"PO-Revision-Date: 2014-12-12 13:30+0000\n" +-"Last-Translator: Jakub Filak \n" +-"Language-Team: Zulu (http://www.transifex.com/projects/p/fedora-abrt/language/zu/)\n" ++"POT-Creation-Date: 2015-01-05 07:16-0500\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"Last-Translator: Jakub Filak \n" ++"Language-Team: Zulu (http://www.transifex.com/projects/p/fedora-abrt/" ++"language/zu/)\n" + "Language: zu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.5.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -88,7 +90,9 @@ msgstr "" + + #: ../src/applet/applet.c:706 + msgid "" +-"You are going to mute notifications of a particular problem. You will never see a notification bubble for this problem again, however, ABRT will be detecting it and you will be able to report it from ABRT GUI.\n" ++"You are going to mute notifications of a particular problem. You will never " ++"see a notification bubble for this problem again, however, ABRT will be " ++"detecting it and you will be able to report it from ABRT GUI.\n" + "\n" + "Do you want to continue?" + msgstr "" +@@ -127,6 +131,7 @@ msgid "Ignore forever" + msgstr "" + + #. Problem has been 'autoreported' and is considered as KNOWN ++#. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" + msgstr "" +@@ -141,6 +146,7 @@ msgstr "" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. ++#. + #: ../src/applet/applet.c:1015 ../src/applet/applet.c:1050 + msgid "Report" + msgstr "" +@@ -211,10 +217,9 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +-"space consuming operation. ABRT provides a service which generates the stack" +-" trace from the coredump but you have to upload the coredump to this " +-"service. With this option disabled ABRT will upload the coredump without " +-"asking." ++"space consuming operation. ABRT provides a service which generates the stack " ++"trace from the coredump but you have to upload the coredump to this service. " ++"With this option disabled ABRT will upload the coredump without asking." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -228,15 +233,15 @@ msgstr "" + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +-"uses uReports for fast global duplicate detection. In default configuration" +-" uReport is sent at beginning of reporting process. With this option enabled" +-" uReports are sent automatically immediately after problem detection." ++"uses uReports for fast global duplicate detection. In default configuration " ++"uReport is sent at beginning of reporting process. With this option enabled " ++"uReports are sent automatically immediately after problem detection." + msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +-"With this option enabled reporting process started by click on Report button" +-" in problem notification bubble will be interrupted after uReport is sent. " ++"With this option enabled reporting process started by click on Report button " ++"in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" + +@@ -404,10 +409,10 @@ msgstr "" + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +-"detected while computer is shutting down or user is logging out. In order to" +-" 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." ++"detected while computer is shutting down or user is logging out. In order to " ++"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 "" + + #: ../src/daemon/abrtd.c:497 +@@ -459,19 +464,72 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:81 ++#: ../src/daemon/abrt-auto-reporting.c:176 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:113 ++#: ../src/daemon/abrt-auto-reporting.c:213 ++msgid "Turns the authentication off" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:214 ++msgid "Red Hat Support user name" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:215 ++msgid "Red Hat Support password, if not given, a prompt for it will be issued" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:216 ++msgid "uReport SSL certificate paths or certificate type" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:227 ++msgid "You also need to specify --username for --password" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:233 ++msgid "You can use either --username or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:239 ++msgid "You can use either --username or --anonymous" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:245 ++msgid "You can use either --anonymous or --certificate" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:251 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:138 ++#: ../src/daemon/abrt-auto-reporting.c:270 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + ++#: ../src/daemon/abrt-auto-reporting.c:305 ++msgid "Password:" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:308 ++msgid "Cannot continue without password\n" ++msgstr "" ++ ++#. Print only the part before ':' of a string like "username:password" ++#: ../src/daemon/abrt-auto-reporting.c:347 ++msgid "HTTP Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:349 ++msgid "SSL Client Authenticated auto reporting" ++msgstr "" ++ ++#: ../src/daemon/abrt-auto-reporting.c:351 ++msgid "anonymous auto reporting" ++msgstr "" ++ + #: ../src/daemon/abrt-handle-upload.in:69 + #, c-format + msgid "" +@@ -605,9 +663,11 @@ msgid "" + "and identifies crash function in problem directory DIR" + 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" +@@ -682,8 +742,7 @@ msgid "Extracting the oops text from core" + msgstr "" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +-msgid "" +-"Can't process {0}:\n" ++msgid "Can't process {0}:\n" + "{1}" + msgstr "" + +@@ -718,6 +777,7 @@ 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" +@@ -756,7 +816,8 @@ msgstr "" + #, c-format + msgid "" + "Usage: %s [-vy] [--ids=BUILD_IDS_FILE]\n" +-" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] [--size_mb=SIZE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" + " [-e, --exact=PATH[:PATH]...]\n" + "\n" + "Installs debuginfos for all build-ids listed in BUILD_IDS_FILE\n" +@@ -766,7 +827,8 @@ msgid "" + " -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" ++" --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" +@@ -815,7 +877,8 @@ msgstr "" + msgid "" + "& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" + "\n" +-"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than SIZE.\n" ++"Deletes problem dirs (-d) or files (-f) in DIRs until they are smaller than " ++"SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" + +@@ -1029,6 +1092,7 @@ 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:278 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +@@ -1089,6 +1153,7 @@ 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,8 +1176,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1001 + #: ../src/plugins/abrt-retrace-client.c:1060 + #, c-format +-msgid "" +-"Unexpected HTTP response from server: %d\n" ++msgid "Unexpected HTTP response from server: %d\n" + "%s" + msgstr "" + +@@ -1248,8 +1312,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:798 + #, c-format +-msgid "" +-"Task Id: %s\n" ++msgid "Task Id: %s\n" + "Task Password: %s\n" + msgstr "" + +@@ -1259,8 +1322,7 @@ msgstr "" + + #: ../src/plugins/abrt-retrace-client.c:868 + #, c-format +-msgid "" +-"Task Status: %s\n" ++msgid "Task Status: %s\n" + "%s\n" + msgstr "" + +@@ -1376,8 +1438,8 @@ msgstr "" + #: ../src/plugins/analyze_LocalGDB.xml.in.h:3 + msgid "" + "Needs to downloads debuginfo packages, which might take significant time, " +-"and take up disk space. However, unlike RetraceServer, doesn't send coredump" +-" to remote machines." ++"and take up disk space. However, unlike RetraceServer, doesn't send coredump " ++"to remote machines." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 +@@ -1386,11 +1448,11 @@ msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +-"Uploads coredump to a server, which generates backtrace and returns it. " +-"Pros: no need for debuginfo downloads. Retrace server's database of " +-"debuginfos is more complete. Retrace server may generate better backtraces. " +-"Cons: coredump you upload contains all the data from the crashed program, " +-"including your private data, if any." ++"Uploads coredump to a server, which generates backtrace and returns it. Pros:" ++" no need for debuginfo downloads. Retrace server's database of debuginfos is " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " ++"private data, if any." + msgstr "" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 +@@ -1416,9 +1478,9 @@ msgstr "" + #: ../src/plugins/analyze_RetraceServer.xml.in.h:7 + #: ../src/plugins/analyze_CCpp.xml.in.h:7 + msgid "" +-"Write \"insecure\" to allow insecure connection <a " +-"href=\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\"" +-" >(warning)</a>" ++"Write \"insecure\" to allow insecure connection <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + msgstr "" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1609,8 +1671,8 @@ msgstr "" + #: ../src/plugins/bodhi.c:486 + #, c-format + msgid "" +-"An update exists which might fix your problem. You can install it by " +-"running: %s. Do you want to continue with reporting the bug?" ++"An update exists which might fix your problem. You can install it by running:" ++" %s. Do you want to continue with reporting the bug?" + msgstr "" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -1695,7 +1757,8 @@ msgstr "" + #: ../src/cli/list.c:224 + #, c-format + msgid "" +-"The Autoreporting feature is disabled. Please consider enabling it by issuing\n" ++"The Autoreporting feature is disabled. Please consider enabling it by " ++"issuing\n" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +@@ -1780,8 +1843,8 @@ msgid "" + "user doens't want to upload his coredump to anywhere the event performs " + "local analysis. Local analysis is run event if remote analysis fails. Pros: " + "no need for debuginfo downloads. Retrace server's database of debuginfos is " +-"more complete. Retrace server may generate better backtraces. Cons: coredump" +-" you upload contains all the data from the crashed program, including your " ++"more complete. Retrace server may generate better backtraces. Cons: coredump " ++"you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" + +@@ -1838,8 +1901,8 @@ 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." ++"Checks if there are .vimrc and .gvimrc in your home directory and saves them " ++"as user_vimrc and user_gvimrc, respectively." + msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 +-- +1.8.3.1 + diff --git a/SOURCES/0087-abrt-auto-reporting-make-the-code-more-safer.patch b/SOURCES/0087-abrt-auto-reporting-make-the-code-more-safer.patch new file mode 100644 index 0000000..5ec1fcc --- /dev/null +++ b/SOURCES/0087-abrt-auto-reporting-make-the-code-more-safer.patch @@ -0,0 +1,45 @@ +From b6d744ffd5e70b410c960ace62c68094bbbd045c Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 9 Jan 2015 16:34:00 +0100 +Subject: [ABRT PATCH 87/87] abrt-auto-reporting: make the code more safer + +Uncovered by coverity. + +Related: #1174833 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-auto-reporting.c | 10 +++++++++- + 1 file changed, 9 insertions(+), 1 deletion(-) + +diff --git a/src/daemon/abrt-auto-reporting.c b/src/daemon/abrt-auto-reporting.c +index f50c4c2..f3b4ed0 100644 +--- a/src/daemon/abrt-auto-reporting.c ++++ b/src/daemon/abrt-auto-reporting.c +@@ -50,6 +50,8 @@ const char *const REPORTING_STATES[8][2] = { + static int + set_abrt_reporting(map_string_t *conf, const char *opt_value) + { ++ assert(opt_value != NULL || !"BUG: invalid auto-reporting state"); ++ + const char *const def_value = REPORTING_STATES[0][1]; + const char *const cur_value = get_map_string_item_or_NULL(conf, OPTION_NAME); + +@@ -356,7 +358,13 @@ int main(int argc, char *argv[]) + goto finito; + } + +- exit_code = set_abrt_reporting(conf, opt_value) ? EXIT_SUCCESS : EXIT_FAILURE; ++ if (opt_value == NULL) ++ { /* calm coverity: see 'if (argc ...)' statements above. 0 exits, >1 fails, 1 sets opt_value */ ++ error_msg("BUG: invalid command line arguments"); ++ exit_code = EXIT_FAILURE; ++ } ++ else ++ exit_code = set_abrt_reporting(conf, opt_value) ? EXIT_SUCCESS : EXIT_FAILURE; + + if (exit_code == EXIT_FAILURE) + { +-- +1.8.3.1 + diff --git a/SOURCES/0088-a-a-save-package-data-turn-off-reading-data-from-roo.patch b/SOURCES/0088-a-a-save-package-data-turn-off-reading-data-from-roo.patch new file mode 100644 index 0000000..af4fd62 --- /dev/null +++ b/SOURCES/0088-a-a-save-package-data-turn-off-reading-data-from-roo.patch @@ -0,0 +1,65 @@ +From fdf93685d4f3fc36fe50d34a11e24662c4cb2d8c Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 15 Apr 2015 12:12:59 +0200 +Subject: [ABRT PATCH] a-a-save-package-data: turn off reading data from root + directories + +Making copies of files from arbitrary root directories is not secure. + +Related: #1211835 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-action-save-package-data.c | 8 ++------ + 1 file changed, 2 insertions(+), 6 deletions(-) + +diff --git a/src/daemon/abrt-action-save-package-data.c b/src/daemon/abrt-action-save-package-data.c +index 6dbcfc2..97d5f5e 100644 +--- a/src/daemon/abrt-action-save-package-data.c ++++ b/src/daemon/abrt-action-save-package-data.c +@@ -223,7 +223,6 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name) + + char *cmdline = NULL; + char *executable = NULL; +- char *rootdir = NULL; + char *package_short_name = NULL; + struct pkg_envra *pkg_name = NULL; + char *component = NULL; +@@ -233,8 +232,6 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name) + + cmdline = dd_load_text_ext(dd, FILENAME_CMDLINE, DD_FAIL_QUIETLY_ENOENT); + executable = dd_load_text(dd, FILENAME_EXECUTABLE); +- rootdir = dd_load_text_ext(dd, FILENAME_ROOTDIR, +- DD_FAIL_QUIETLY_ENOENT | DD_LOAD_TEXT_RETURN_NULL_ON_FAILURE); + + /* Close dd while we query package database. It can take some time, + * don't want to keep dd locked longer than necessary */ +@@ -246,7 +243,7 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name) + goto ret; /* return 1 (failure) */ + } + +- pkg_name = rpm_get_package_nvr(executable, rootdir); ++ pkg_name = rpm_get_package_nvr(executable, NULL); + if (!pkg_name) + { + if (settings_bProcessUnpackaged) +@@ -329,7 +326,7 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name) + */ + } + +- component = rpm_get_component(executable, rootdir); ++ component = rpm_get_component(executable, NULL); + + dd = dd_opendir(dump_dir_name, /*flags:*/ 0); + if (!dd) +@@ -355,7 +352,6 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name) + ret: + free(cmdline); + free(executable); +- free(rootdir); + free(package_short_name); + free_pkg_envra(pkg_name); + free(component); +-- +1.8.3.1 + diff --git a/SOURCES/0089-ccpp-fix-symlink-race-conditions.patch b/SOURCES/0089-ccpp-fix-symlink-race-conditions.patch new file mode 100644 index 0000000..35227f9 --- /dev/null +++ b/SOURCES/0089-ccpp-fix-symlink-race-conditions.patch @@ -0,0 +1,80 @@ +From 80408e9e24a1c10f85fd969e1853e0f192157f92 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 15 Apr 2015 12:14:22 +0200 +Subject: [ABRT PATCH] ccpp: fix symlink race conditions + +Fix copy & chown race conditions + +Related: #1211835 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 27 ++++++++++++++++----------- + 1 file changed, 16 insertions(+), 11 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 8e141d4..be16fab 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -397,7 +397,7 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + return user_core_fd; + } + +-static bool dump_fd_info(const char *dest_filename, char *source_filename, int source_base_ofs) ++static bool dump_fd_info(const char *dest_filename, char *source_filename, int source_base_ofs, uid_t uid, gid_t gid) + { + FILE *fp = fopen(dest_filename, "w"); + if (!fp) +@@ -429,6 +429,16 @@ static bool dump_fd_info(const char *dest_filename, char *source_filename, int s + } + fclose(in); + } ++ ++ const int dest_fd = fileno(fp); ++ if (fchown(dest_fd, uid, gid) < 0) ++ { ++ perror_msg("Can't change '%s' ownership to %lu:%lu", dest_filename, (long)uid, (long)gid); ++ fclose(fp); ++ unlink(dest_filename); ++ return false; ++ } ++ + fclose(fp); + return true; + } +@@ -678,27 +688,22 @@ int main(int argc, char** argv) + + // Disabled for now: /proc/PID/smaps tends to be BIG, + // and not much more informative than /proc/PID/maps: +- //copy_file(source_filename, dest_filename, 0640); +- //chown(dest_filename, dd->dd_uid, dd->dd_gid); ++ //copy_file_ext(source_filename, dest_filename, 0640, dd->dd_uid, dd->dd_gid, O_RDONLY, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL); + + strcpy(source_filename + source_base_ofs, "maps"); + strcpy(dest_base, FILENAME_MAPS); +- copy_file(source_filename, dest_filename, DEFAULT_DUMP_DIR_MODE); +- IGNORE_RESULT(chown(dest_filename, dd->dd_uid, dd->dd_gid)); ++ copy_file_ext(source_filename, dest_filename, 0640, dd->dd_uid, dd->dd_gid, O_RDONLY, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL); + + strcpy(source_filename + source_base_ofs, "limits"); + strcpy(dest_base, FILENAME_LIMITS); +- copy_file(source_filename, dest_filename, DEFAULT_DUMP_DIR_MODE); +- IGNORE_RESULT(chown(dest_filename, dd->dd_uid, dd->dd_gid)); ++ copy_file_ext(source_filename, dest_filename, 0640, dd->dd_uid, dd->dd_gid, O_RDONLY, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL); + + strcpy(source_filename + source_base_ofs, "cgroup"); + strcpy(dest_base, FILENAME_CGROUP); +- copy_file(source_filename, dest_filename, DEFAULT_DUMP_DIR_MODE); +- IGNORE_RESULT(chown(dest_filename, dd->dd_uid, dd->dd_gid)); ++ copy_file_ext(source_filename, dest_filename, 0640, dd->dd_uid, dd->dd_gid, O_RDONLY, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL); + + strcpy(dest_base, FILENAME_OPEN_FDS); +- if (dump_fd_info(dest_filename, source_filename, source_base_ofs)) +- IGNORE_RESULT(chown(dest_filename, dd->dd_uid, dd->dd_gid)); ++ dump_fd_info(dest_filename, source_filename, source_base_ofs, dd->dd_uid, dd->dd_gid); + + free(dest_filename); + +-- +1.8.3.1 + diff --git a/SOURCES/0090-ccpp-stop-reading-hs_error.log-from-tmp.patch b/SOURCES/0090-ccpp-stop-reading-hs_error.log-from-tmp.patch new file mode 100644 index 0000000..b88e095 --- /dev/null +++ b/SOURCES/0090-ccpp-stop-reading-hs_error.log-from-tmp.patch @@ -0,0 +1,39 @@ +From 17cb66b13997b0159b4253b3f5722db79f476d68 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 28 Apr 2015 14:00:18 +0200 +Subject: [ABRT PATCH] ccpp: stop reading hs_error.log from /tmp + +The file might contain anything and there is no way to verify its +contents. + +Related: #1211835 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index be16fab..5694f84 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -795,6 +795,8 @@ int main(int argc, char** argv) + unlink(core_basename); + } + ++/* Because of #1211835 and #1126850 */ ++#if 0 + /* Save JVM crash log if it exists. (JVM's coredump per se + * is nearly useless for JVM developers) + */ +@@ -827,6 +829,7 @@ int main(int argc, char** argv) + close(src_fd); + } + } ++#endif + + /* We close dumpdir before we start catering for crash storm case. + * Otherwise, delete_dump_dir's from other concurrent +-- +1.8.3.1 + diff --git a/SOURCES/0091-ccpp-do-not-read-data-from-root-directories.patch b/SOURCES/0091-ccpp-do-not-read-data-from-root-directories.patch new file mode 100644 index 0000000..f5752c6 --- /dev/null +++ b/SOURCES/0091-ccpp-do-not-read-data-from-root-directories.patch @@ -0,0 +1,31 @@ +From 4f2c1ddd3e3b81d2d5146b883115371f1cada9f9 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 15 Apr 2015 12:14:52 +0200 +Subject: [ABRT PATCH] ccpp: do not read data from root directories + +Users are allowed to modify /proc/[pid]/root to any directory by running +their own MOUNT namespace. + +Related: #1211835 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 5694f84..0606519 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -678,7 +678,7 @@ int main(int argc, char** argv) + { + char *rootdir = get_rootdir(pid); + +- dd_create_basic_files(dd, fsuid, (rootdir && strcmp(rootdir, "/") != 0) ? rootdir : NULL); ++ dd_create_basic_files(dd, fsuid, NULL); + + char source_filename[sizeof("/proc/%lu/somewhat_long_name") + sizeof(long)*3]; + int source_base_ofs = sprintf(source_filename, "/proc/%lu/smaps", (long)pid); +-- +1.8.3.1 + diff --git a/SOURCES/0092-ccpp-open-file-for-dump_fd_info-with-O_EXCL.patch b/SOURCES/0092-ccpp-open-file-for-dump_fd_info-with-O_EXCL.patch new file mode 100644 index 0000000..a417cf2 --- /dev/null +++ b/SOURCES/0092-ccpp-open-file-for-dump_fd_info-with-O_EXCL.patch @@ -0,0 +1,30 @@ +From d6e2f6f128cef4c21cb80941ae674c9842681aa7 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 15 Apr 2015 14:01:37 +0200 +Subject: [ABRT PATCH] ccpp: open file for dump_fd_info with O_EXCL + +To avoid possible races. + +Related: #1211835 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 0606519..ece1ece 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -399,7 +399,7 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + + static bool dump_fd_info(const char *dest_filename, char *source_filename, int source_base_ofs, uid_t uid, gid_t gid) + { +- FILE *fp = fopen(dest_filename, "w"); ++ FILE *fp = fopen(dest_filename, "wx"); + if (!fp) + return false; + +-- +1.8.3.1 + diff --git a/SOURCES/0093-ccpp-postpone-changing-ownership-of-new-dump-directo.patch b/SOURCES/0093-ccpp-postpone-changing-ownership-of-new-dump-directo.patch new file mode 100644 index 0000000..eff9538 --- /dev/null +++ b/SOURCES/0093-ccpp-postpone-changing-ownership-of-new-dump-directo.patch @@ -0,0 +1,53 @@ +From a4794b39efc62c9ba92b38b419de3babbbcd8cfb Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 15 Apr 2015 15:27:09 +0200 +Subject: [ABRT PATCH] ccpp: postpone changing ownership of new dump + directories + +Florian Weimer : + + Currently, dd_create changes ownership of the directory immediately, + when it is still empty. This means that any operations within the + directory (which happen as the root user) can race with changes to + the directory contents by the user. If you delay changing directory + ownership until all the files have created and written, this is no + longer a problem. + +Related: #1211835 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 9 ++++++++- + 1 file changed, 8 insertions(+), 1 deletion(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index ece1ece..7e05aa6 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -672,8 +672,12 @@ int main(int argc, char** argv) + + /* use fsuid instead of uid, so we don't expose any sensitive + * information of suided app in /var/tmp/abrt ++ * ++ * dd_create_skeleton() creates a new directory and leaves ownership to ++ * the current user, hence, we have to call dd_reset_ownership() after the ++ * directory is populated. + */ +- dd = dd_create(path, fsuid, DEFAULT_DUMP_DIR_MODE); ++ dd = dd_create_skeleton(path, fsuid, DEFAULT_DUMP_DIR_MODE); + if (dd) + { + char *rootdir = get_rootdir(pid); +@@ -831,6 +835,9 @@ int main(int argc, char** argv) + } + #endif + ++ /* And finally set the right uid and gid */ ++ dd_reset_ownership(dd); ++ + /* We close dumpdir before we start catering for crash storm case. + * Otherwise, delete_dump_dir's from other concurrent + * CCpp's won't be able to delete our dump (their delete_dump_dir +-- +1.8.3.1 + diff --git a/SOURCES/0094-ccpp-create-dump-directory-without-parents.patch b/SOURCES/0094-ccpp-create-dump-directory-without-parents.patch new file mode 100644 index 0000000..fb89031 --- /dev/null +++ b/SOURCES/0094-ccpp-create-dump-directory-without-parents.patch @@ -0,0 +1,31 @@ +From 2f948bdc09aa346616852a421ce1af2e03b39997 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 15 Apr 2015 17:42:59 +0200 +Subject: [ABRT PATCH] ccpp: create dump directory without parents + +This patch makes the code more robust. +This patch ensures that abrt-hook-ccpp never creates the dump location. + +Related: #1211835 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 7e05aa6..85e0d35 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -677,7 +677,7 @@ int main(int argc, char** argv) + * the current user, hence, we have to call dd_reset_ownership() after the + * directory is populated. + */ +- dd = dd_create_skeleton(path, fsuid, DEFAULT_DUMP_DIR_MODE); ++ dd = dd_create_skeleton(path, fsuid, DEFAULT_DUMP_DIR_MODE, /*no flags*/0); + if (dd) + { + char *rootdir = get_rootdir(pid); +-- +1.8.3.1 + diff --git a/SOURCES/0095-ccpp-do-not-override-existing-files-by-compat-cores.patch b/SOURCES/0095-ccpp-do-not-override-existing-files-by-compat-cores.patch new file mode 100644 index 0000000..37bb6e7 --- /dev/null +++ b/SOURCES/0095-ccpp-do-not-override-existing-files-by-compat-cores.patch @@ -0,0 +1,82 @@ +From af945ff58a698ce00c45059a05994ef53a13e192 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 17 Apr 2015 14:36:45 +0200 +Subject: [ABRT PATCH] ccpp: do not override existing files by compat cores + +Implement all checks used in kernel's do_coredump() and require +non-relative path if suid_dumpable is 2. + +Related: #1212818 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 20 ++++++++++++++++---- + 1 file changed, 16 insertions(+), 4 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 85e0d35..82ff555 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -24,6 +24,8 @@ + #define DUMP_SUID_UNSAFE 1 + #define DUMP_SUID_SAFE 2 + ++static int g_user_core_flags; ++static int g_need_nonrelative; + + /* I want to use -Werror, but gcc-4.4 throws a curveball: + * "warning: ignoring return value of 'ftruncate', declared with attribute warn_unused_result" +@@ -337,7 +339,14 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + + full_core_basename = core_basename; + if (core_basename[0] != '/') ++ { ++ if (g_need_nonrelative) ++ { ++ error_msg("Current suid_dumpable policy prevents from saving core dumps according to relative core_pattern"); ++ return -1; ++ } + core_basename = concat_path_file(user_pwd, core_basename); ++ } + + /* Open (create) compat core file. + * man core: +@@ -372,19 +381,19 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + struct stat sb; + errno = 0; + /* Do not O_TRUNC: if later checks fail, we do not want to have file already modified here */ +- int user_core_fd = open(core_basename, O_WRONLY | O_CREAT | O_NOFOLLOW, 0600); /* kernel makes 0600 too */ ++ int user_core_fd = open(core_basename, O_WRONLY | O_CREAT | O_NOFOLLOW | g_user_core_flags, 0600); /* kernel makes 0600 too */ + xsetegid(0); + xseteuid(0); + if (user_core_fd < 0 + || fstat(user_core_fd, &sb) != 0 + || !S_ISREG(sb.st_mode) + || sb.st_nlink != 1 +- /* kernel internal dumper checks this too: if (inode->i_uid != current->fsuid) , need to mimic? */ ++ || sb.st_uid != fsuid + ) { + if (user_core_fd < 0) + perror_msg("Can't open '%s'", full_core_basename); + else +- perror_msg("'%s' is not a regular file with link count 1", full_core_basename); ++ perror_msg("'%s' is not a regular file with link count 1 owned by UID(%d)", full_core_basename, fsuid); + return -1; + } + if (ftruncate(user_core_fd, 0) != 0) { +@@ -578,8 +587,11 @@ int main(int argc, char** argv) + /* use root for suided apps unless it's explicitly set to UNSAFE */ + fsuid = 0; + if (suid_policy == DUMP_SUID_UNSAFE) +- { + fsuid = tmp_fsuid; ++ else ++ { ++ g_user_core_flags = O_EXCL; ++ g_need_nonrelative = 1; + } + } + +-- +1.8.3.1 + diff --git a/SOURCES/0096-ccpp-do-not-use-value-of-proc-PID-cwd-for-chdir.patch b/SOURCES/0096-ccpp-do-not-use-value-of-proc-PID-cwd-for-chdir.patch new file mode 100644 index 0000000..c0ab080 --- /dev/null +++ b/SOURCES/0096-ccpp-do-not-use-value-of-proc-PID-cwd-for-chdir.patch @@ -0,0 +1,218 @@ +From 806bb07571b698d90169c3b73cb65cd09c900284 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 17 Apr 2015 14:40:20 +0200 +Subject: [ABRT PATCH] ccpp: do not use value of /proc/PID/cwd for chdir + +Avoid symlink resolutions. + +This issue was discovered by Florian Weimer of Red Hat Product Security. + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 85 +++++++++++++++++++++++----------------------- + 1 file changed, 42 insertions(+), 43 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 82ff555..d600bb7 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -144,6 +144,7 @@ static off_t copyfd_sparse(int src_fd, int dst_fd1, int dst_fd2, off_t size2) + /* Global data */ + + static char *user_pwd; ++static DIR *proc_cwd; + static char *proc_pid_status; + static struct dump_dir *dd; + static int user_core_fd = -1; +@@ -163,13 +164,6 @@ static int user_core_fd = -1; + */ + static const char percent_specifiers[] = "%scpugteh"; + static char *core_basename = (char*) "core"; +-/* +- * Used for error messages only. +- * It is either the same as core_basename if it is absolute, +- * or $PWD/core_basename. +- */ +-static char *full_core_basename; +- + + static char* get_executable(pid_t pid, int *fd_p) + { +@@ -198,6 +192,18 @@ static char* get_executable(pid_t pid, int *fd_p) + return executable; + } + ++static DIR *open_cwd(pid_t pid) ++{ ++ char buf[sizeof("/proc/%lu/cwd") + sizeof(long)*3]; ++ sprintf(buf, "/proc/%lu/cwd", (long)pid); ++ ++ DIR *cwd = opendir(buf); ++ if (cwd == NULL) ++ perror_msg("Can't open process's CWD for CompatCore"); ++ ++ return cwd; ++} ++ + static char* get_cwd(pid_t pid) + { + char buf[sizeof("/proc/%lu/cwd") + sizeof(long)*3]; +@@ -268,13 +274,9 @@ static int dump_suid_policy() + + static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_values) + { +- errno = 0; +- if (user_pwd == NULL +- || chdir(user_pwd) != 0 +- ) { +- perror_msg("Can't cd to '%s'", user_pwd); ++ proc_cwd = open_cwd(pid); ++ if (proc_cwd == NULL) + return -1; +- } + + struct passwd* pw = getpwuid(uid); + gid_t gid = pw ? pw->pw_gid : uid; +@@ -337,15 +339,10 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + } + } + +- full_core_basename = core_basename; +- if (core_basename[0] != '/') ++ if (g_need_nonrelative && core_basename[0] != '/') + { +- if (g_need_nonrelative) +- { +- error_msg("Current suid_dumpable policy prevents from saving core dumps according to relative core_pattern"); +- return -1; +- } +- core_basename = concat_path_file(user_pwd, core_basename); ++ error_msg("Current suid_dumpable policy prevents from saving core dumps according to relative core_pattern"); ++ return -1; + } + + /* Open (create) compat core file. +@@ -381,7 +378,7 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + struct stat sb; + errno = 0; + /* Do not O_TRUNC: if later checks fail, we do not want to have file already modified here */ +- int user_core_fd = open(core_basename, O_WRONLY | O_CREAT | O_NOFOLLOW | g_user_core_flags, 0600); /* kernel makes 0600 too */ ++ int user_core_fd = openat(dirfd(proc_cwd), core_basename, O_WRONLY | O_CREAT | O_NOFOLLOW | g_user_core_flags, 0600); /* kernel makes 0600 too */ + xsetegid(0); + xseteuid(0); + if (user_core_fd < 0 +@@ -391,15 +388,15 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + || sb.st_uid != fsuid + ) { + if (user_core_fd < 0) +- perror_msg("Can't open '%s'", full_core_basename); ++ perror_msg("Can't open '%s' at '%s'", core_basename, user_pwd); + else +- perror_msg("'%s' is not a regular file with link count 1 owned by UID(%d)", full_core_basename, fsuid); ++ perror_msg("'%s' at '%s' is not a regular file with link count 1 owned by UID(%d)", core_basename, user_pwd, fsuid); + return -1; + } + if (ftruncate(user_core_fd, 0) != 0) { + /* perror first, otherwise unlink may trash errno */ +- perror_msg("Can't truncate '%s' to size 0", full_core_basename); +- unlink(core_basename); ++ perror_msg("Can't truncate '%s' at '%s' to size 0", core_basename, user_pwd); ++ unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); + return -1; + } + +@@ -466,10 +463,8 @@ static int create_or_die(const char *filename) + if (dd) + dd_delete(dd); + if (user_core_fd >= 0) +- { +- xchdir(user_pwd); +- unlink(core_basename); +- } ++ unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); ++ + errno = sv_errno; + perror_msg_and_die("Can't open '%s'", filename); + } +@@ -573,7 +568,7 @@ int main(int argc, char** argv) + (long)pid, executable); + } + +- user_pwd = get_cwd(pid); /* may be NULL on error */ ++ user_pwd = get_cwd(pid); + log_notice("user_pwd:'%s'", user_pwd); + + sprintf(path, "/proc/%lu/status", (long)pid); +@@ -672,6 +667,8 @@ int main(int argc, char** argv) + error_msg_and_die("Error saving '%s'", path); + } + log("Saved core dump of pid %lu (%s) to %s (%llu bytes)", (long)pid, executable, path, (long long)core_size); ++ if (proc_cwd != NULL) ++ closedir(proc_cwd); + return 0; + } + +@@ -791,10 +788,7 @@ int main(int argc, char** argv) + unlink(path); + dd_delete(dd); + if (user_core_fd >= 0) +- { +- xchdir(user_pwd); +- unlink(core_basename); +- } ++ unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); + /* copyfd_sparse logs the error including errno string, + * but it does not log file name */ + error_msg_and_die("Error writing '%s'", path); +@@ -807,8 +801,7 @@ int main(int argc, char** argv) + ) + ) { + /* nuke it (silently) */ +- xchdir(user_pwd); +- unlink(core_basename); ++ unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); + } + + /* Because of #1211835 and #1126850 */ +@@ -879,6 +872,8 @@ int main(int argc, char** argv) + } + + free(rootdir); ++ if (proc_cwd != NULL) ++ closedir(proc_cwd); + return 0; + } + +@@ -890,19 +885,23 @@ int main(int argc, char** argv) + if (fsync(user_core_fd) != 0 || close(user_core_fd) != 0 || core_size < 0) + { + /* perror first, otherwise unlink may trash errno */ +- perror_msg("Error writing '%s'", full_core_basename); +- xchdir(user_pwd); +- unlink(core_basename); ++ perror_msg("Error writing '%s' at '%s'", core_basename, user_pwd); ++ unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); ++ if (proc_cwd != NULL) ++ closedir(proc_cwd); + return 1; + } + if (ulimit_c == 0 || core_size > ulimit_c) + { +- xchdir(user_pwd); +- unlink(core_basename); ++ unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); ++ if (proc_cwd != NULL) ++ closedir(proc_cwd); + return 1; + } +- log("Saved core dump of pid %lu to %s (%llu bytes)", (long)pid, full_core_basename, (long long)core_size); ++ log("Saved core dump of pid %lu to %s at %s (%llu bytes)", (long)pid, core_basename, user_pwd, (long long)core_size); + } + ++ if (proc_cwd != NULL) ++ closedir(proc_cwd); + return 0; + } +-- +1.8.3.1 + diff --git a/SOURCES/0097-ccpp-harden-dealing-with-UID-GID.patch b/SOURCES/0097-ccpp-harden-dealing-with-UID-GID.patch new file mode 100644 index 0000000..601341a --- /dev/null +++ b/SOURCES/0097-ccpp-harden-dealing-with-UID-GID.patch @@ -0,0 +1,91 @@ +From b72616471ec52a009904689592f4f69e730a6f56 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 17 Apr 2015 14:42:13 +0200 +Subject: [ABRT PATCH] ccpp: harden dealing with UID/GID + +* Don't fall back to UID 0. +* Use fsgid. + +This issue was discovered by Florian Weimer of Red Hat Product Security. + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 39 ++++++++++++++++++++++++++------------- + 1 file changed, 26 insertions(+), 13 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index d600bb7..d9f1f5e 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -218,23 +218,27 @@ static char* get_rootdir(pid_t pid) + return malloc_readlink(buf); + } + +-static int get_fsuid(void) ++static int get_proc_fs_id(char type) + { +- int real, euid, saved; +- /* if we fail to parse the uid, then make it root only readable to be safe */ +- int fs_uid = 0; ++ const char *scanf_format = "%*cid:\t%d\t%d\t%d\t%d\n"; ++ char id_type[] = "_id"; ++ id_type[0] = type; ++ ++ int real, e_id, saved; ++ int fs_id = 0; + + char *line = proc_pid_status; /* never NULL */ + for (;;) + { +- if (strncmp(line, "Uid", 3) == 0) ++ if (strncmp(line, id_type, 3) == 0) + { +- int n = sscanf(line, "Uid:\t%d\t%d\t%d\t%d\n", &real, &euid, &saved, &fs_uid); ++ int n = sscanf(line, scanf_format, &real, &e_id, &saved, &fs_id); + if (n != 4) + { +- perror_msg_and_die("Can't parse Uid: line"); ++ perror_msg_and_die("Can't parse %cid: line", type); + } +- break; ++ ++ return fs_id; + } + line = strchr(line, '\n'); + if (!line) +@@ -242,7 +246,17 @@ static int get_fsuid(void) + line++; + } + +- return fs_uid; ++ perror_msg_and_die("Failed to get file system %cID of the crashed process", type); ++} ++ ++static int get_fsuid(void) ++{ ++ return get_proc_fs_id(/*UID*/'U'); ++} ++ ++static int get_fsgid(void) ++{ ++ return get_proc_fs_id(/*GID*/'G'); + } + + static int dump_suid_policy() +@@ -278,10 +292,9 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + if (proc_cwd == NULL) + return -1; + +- struct passwd* pw = getpwuid(uid); +- gid_t gid = pw ? pw->pw_gid : uid; +- //log("setting uid: %i gid: %i", uid, gid); +- xsetegid(gid); ++ errno = 0; ++ ++ xsetegid(get_fsgid()); + xseteuid(fsuid); + + if (strcmp(core_basename, "core") == 0) +-- +1.8.3.1 + diff --git a/SOURCES/0098-ccpp-check-for-overflow-in-abrt-coredump-path-creati.patch b/SOURCES/0098-ccpp-check-for-overflow-in-abrt-coredump-path-creati.patch new file mode 100644 index 0000000..00f94ac --- /dev/null +++ b/SOURCES/0098-ccpp-check-for-overflow-in-abrt-coredump-path-creati.patch @@ -0,0 +1,30 @@ +From 28ce40d8db91c1926a95f21ef19a980a8af88471 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 17 Apr 2015 14:43:59 +0200 +Subject: [ABRT PATCH] ccpp: check for overflow in abrt coredump path creation + +This issue was discovered by Florian Weimer of Red Hat Product Security. + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index d9f1f5e..81f9349 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -669,7 +669,9 @@ int main(int argc, char** argv) + * and maybe crash again... + * Unlike dirs, mere files are ignored by abrtd. + */ +- snprintf(path, sizeof(path), "%s/%s-coredump", g_settings_dump_location, last_slash); ++ if (snprintf(path, sizeof(path), "%s/%s-coredump", g_settings_dump_location, last_slash) >= sizeof(path)) ++ error_msg_and_die("Error saving '%s': truncated long file path", path); ++ + int abrt_core_fd = xopen3(path, O_WRONLY | O_CREAT | O_TRUNC, 0600); + off_t core_size = copyfd_eof(STDIN_FILENO, abrt_core_fd, COPYFD_SPARSE); + if (core_size < 0 || fsync(abrt_core_fd) != 0) +-- +1.8.3.1 + diff --git a/SOURCES/0099-ccpp-emulate-selinux-for-creation-of-compat-cores.patch b/SOURCES/0099-ccpp-emulate-selinux-for-creation-of-compat-cores.patch new file mode 100644 index 0000000..58b2e2c --- /dev/null +++ b/SOURCES/0099-ccpp-emulate-selinux-for-creation-of-compat-cores.patch @@ -0,0 +1,188 @@ +From 2f0a18b499b9b0e1afbdab8a8bb31d38f2acc6d8 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 17 Apr 2015 16:06:33 +0200 +Subject: [ABRT PATCH] ccpp: emulate selinux for creation of compat cores + +This issue was discovered by Florian Weimer of Red Hat Product Security. + +http://article.gmane.org/gmane.comp.security.selinux/21842 + +v2: use the _raw interface and do the preparation steps as root +v3: don't fail if SELinux is disabled + https://github.com/abrt/abrt/commit/c4f06d4198658c82550e93bb2617b96022c06cf4#commitcomment-11021276 + +Signed-off-by: Jakub Filak +--- + configure.ac | 1 + + src/hooks/Makefile.am | 4 ++- + src/hooks/abrt-hook-ccpp.c | 85 ++++++++++++++++++++++++++++++++++++++++++++-- + 3 files changed, 86 insertions(+), 4 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 9ff616d..6c6d2e8 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -106,6 +106,7 @@ PKG_CHECK_MODULES([LIBREPORT_GTK], [libreport-gtk]) + PKG_CHECK_MODULES([POLKIT], [polkit-gobject-1]) + PKG_CHECK_MODULES([GIO], [gio-2.0]) + PKG_CHECK_MODULES([SATYR], [satyr]) ++PKG_CHECK_MODULES([LIBSELINUX], [libselinux]) + + PKG_PROG_PKG_CONFIG + AC_ARG_WITH([systemdsystemunitdir], +diff --git a/src/hooks/Makefile.am b/src/hooks/Makefile.am +index e536089..9a527f4 100644 +--- a/src/hooks/Makefile.am ++++ b/src/hooks/Makefile.am +@@ -33,10 +33,12 @@ abrt_hook_ccpp_CPPFLAGS = \ + -DDEFAULT_DUMP_DIR_MODE=$(DEFAULT_DUMP_DIR_MODE) \ + $(GLIB_CFLAGS) \ + $(LIBREPORT_CFLAGS) \ ++ $(LIBSELINUX_CFLAGS) \ + -D_GNU_SOURCE + abrt_hook_ccpp_LDADD = \ + ../lib/libabrt.la \ +- $(LIBREPORT_LIBS) ++ $(LIBREPORT_LIBS) \ ++ $(LIBSELINUX_LIBS) + + # abrt-merge-pstoreoops + abrt_merge_pstoreoops_SOURCES = \ +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 81f9349..00ae621 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -20,6 +20,7 @@ + */ + #include + #include "libabrt.h" ++#include + + #define DUMP_SUID_UNSAFE 1 + #define DUMP_SUID_SAFE 2 +@@ -286,6 +287,54 @@ static int dump_suid_policy() + return suid_dump_policy; + } + ++/* Computes a security context of new file created by the given process with ++ * pid in the given directory represented by file descriptor. ++ * ++ * On errors returns negative number. Returns 0 if the function succeeds and ++ * computes the context and returns positive number and assigns NULL to newcon ++ * if the security context is not needed (SELinux disabled). ++ */ ++static int compute_selinux_con_for_new_file(pid_t pid, int dir_fd, security_context_t *newcon) ++{ ++ security_context_t srccon; ++ security_context_t dstcon; ++ ++ const int r = is_selinux_enabled(); ++ if (r == 0) ++ { ++ *newcon = NULL; ++ return 1; ++ } ++ else if (r == -1) ++ { ++ perror_msg("Couldn't get state of SELinux"); ++ return -1; ++ } ++ else if (r != 1) ++ error_msg_and_die("Unexpected SELinux return value: %d", r); ++ ++ ++ if (getpidcon_raw(pid, &srccon) < 0) ++ { ++ perror_msg("getpidcon_raw(%d)", pid); ++ return -1; ++ } ++ ++ if (fgetfilecon_raw(dir_fd, &dstcon) < 0) ++ { ++ perror_msg("getfilecon_raw(%s)", user_pwd); ++ return -1; ++ } ++ ++ if (security_compute_create_raw(srccon, dstcon, string_to_security_class("file"), newcon) < 0) ++ { ++ perror_msg("security_compute_create_raw(%s, %s, 'file')", srccon, dstcon); ++ return -1; ++ } ++ ++ return 0; ++} ++ + static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_values) + { + proc_cwd = open_cwd(pid); +@@ -294,6 +343,14 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + + errno = 0; + ++ /* http://article.gmane.org/gmane.comp.security.selinux/21842 */ ++ security_context_t newcon; ++ if (compute_selinux_con_for_new_file(pid, dirfd(proc_cwd), &newcon) < 0) ++ { ++ log_notice("Not going to create a user core due to SELinux errors"); ++ return -1; ++ } ++ + xsetegid(get_fsgid()); + xseteuid(fsuid); + +@@ -388,10 +445,25 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + * (However, see the description of the prctl(2) PR_SET_DUMPABLE operation, + * and the description of the /proc/sys/fs/suid_dumpable file in proc(5).) + */ ++ ++ /* Set SELinux context like kernel when creating core dump file */ ++ if (newcon != NULL && setfscreatecon_raw(newcon) < 0) ++ { ++ perror_msg("setfscreatecon_raw(%s)", newcon); ++ return -1; ++ } ++ + struct stat sb; + errno = 0; + /* Do not O_TRUNC: if later checks fail, we do not want to have file already modified here */ + int user_core_fd = openat(dirfd(proc_cwd), core_basename, O_WRONLY | O_CREAT | O_NOFOLLOW | g_user_core_flags, 0600); /* kernel makes 0600 too */ ++ ++ if (newcon != NULL && setfscreatecon_raw(NULL) < 0) ++ { ++ error_msg("setfscreatecon_raw(NULL)"); ++ goto user_core_fail; ++ } ++ + xsetegid(0); + xseteuid(0); + if (user_core_fd < 0 +@@ -404,16 +476,23 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + perror_msg("Can't open '%s' at '%s'", core_basename, user_pwd); + else + perror_msg("'%s' at '%s' is not a regular file with link count 1 owned by UID(%d)", core_basename, user_pwd, fsuid); +- return -1; ++ goto user_core_fail; + } + if (ftruncate(user_core_fd, 0) != 0) { + /* perror first, otherwise unlink may trash errno */ + perror_msg("Can't truncate '%s' at '%s' to size 0", core_basename, user_pwd); +- unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); +- return -1; ++ goto user_core_fail; + } + + return user_core_fd; ++ ++user_core_fail: ++ if (user_core_fd >= 0) ++ { ++ close(user_core_fd); ++ unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); ++ } ++ return -1; + } + + static bool dump_fd_info(const char *dest_filename, char *source_filename, int source_base_ofs, uid_t uid, gid_t gid) +-- +1.8.3.1 + diff --git a/SOURCES/0100-make-the-dump-directories-owned-by-root-by-default.patch b/SOURCES/0100-make-the-dump-directories-owned-by-root-by-default.patch new file mode 100644 index 0000000..6fd9548 --- /dev/null +++ b/SOURCES/0100-make-the-dump-directories-owned-by-root-by-default.patch @@ -0,0 +1,233 @@ +From 8939398b82006ba1fec4ed491339fc075f43fc7c Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 20 Apr 2015 07:56:34 +0200 +Subject: [ABRT PATCH] make the dump directories owned by root by default + +It was discovered that the abrt event scripts create a user-readable +copy of a sosreport file in abrt problem directories, and include +excerpts of /var/log/messages selected by the user-controlled process +name, leading to an information disclosure. + +This issue was discovered by Florian Weimer of Red Hat Product Security. + +Related: #1212868 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-server.c | 34 ++++++++++++++++++++++++++++++++-- + src/daemon/abrt.conf | 5 +++++ + src/hooks/abrt-hook-ccpp.c | 10 +++++++--- + src/include/libabrt.h | 2 ++ + src/lib/abrt_conf.c | 8 ++++++++ + src/lib/hooklib.c | 7 ++++++- + src/plugins/abrt-dump-oops.c | 8 ++++++++ + src/plugins/abrt-dump-xorg.c | 8 ++++++++ + 8 files changed, 76 insertions(+), 6 deletions(-) + +diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c +index 307b41b..5789075 100644 +--- a/src/daemon/abrt-server.c ++++ b/src/daemon/abrt-server.c +@@ -15,6 +15,7 @@ + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ ++#include "problem_api.h" + #include "libabrt.h" + + /* Maximal length of backtrace. */ +@@ -153,7 +154,36 @@ static int run_post_create(const char *dirname) + error_msg("Bad problem directory name '%s', should start with: '%s'", dirname, g_settings_dump_location); + return 400; /* Bad Request */ + } +- if (!dump_dir_accessible_by_uid(dirname, client_uid)) ++ if (g_settings_privatereports) ++ { ++ struct stat statbuf; ++ if (lstat(dirname, &statbuf) != 0 || !S_ISDIR(statbuf.st_mode)) ++ { ++ error_msg("Path '%s' isn't directory", dirname); ++ return 404; /* Not Found */ ++ } ++ /* Get ABRT's group gid */ ++ struct group *gr = getgrnam("abrt"); ++ if (!gr) ++ { ++ error_msg("Group 'abrt' does not exist"); ++ return 500; ++ } ++ if (statbuf.st_uid != 0 || !(statbuf.st_gid == 0 || statbuf.st_gid == gr->gr_gid) || statbuf.st_mode & 07) ++ { ++ error_msg("Problem directory '%s' isn't owned by root:abrt or others are not restricted from access", dirname); ++ return 403; ++ } ++ struct dump_dir *dd = dd_opendir(dirname, DD_OPEN_READONLY); ++ const bool complete = dd && problem_dump_dir_is_complete(dd); ++ dd_close(dd); ++ if (complete) ++ { ++ error_msg("Problem directory '%s' has already been processed", dirname); ++ return 403; ++ } ++ } ++ else if (!dump_dir_accessible_by_uid(dirname, client_uid)) + { + if (errno == ENOTDIR) + { +@@ -377,7 +407,7 @@ static int create_problem_dir(GHashTable *problem_info, unsigned pid) + /* No need to check the path length, as all variables used are limited, + * and dd_create() fails if the path is too long. + */ +- struct dump_dir *dd = dd_create(path, client_uid, DEFAULT_DUMP_DIR_MODE); ++ struct dump_dir *dd = dd_create(path, g_settings_privatereports ? 0 : client_uid, DEFAULT_DUMP_DIR_MODE); + if (!dd) + { + error_msg_and_die("Error creating problem directory '%s'", path); +diff --git a/src/daemon/abrt.conf b/src/daemon/abrt.conf +index 59d1831..6c0d6b0 100644 +--- a/src/daemon/abrt.conf ++++ b/src/daemon/abrt.conf +@@ -43,3 +43,8 @@ AutoreportingEnabled = no + # session; otherwise No. + # + # ShortenedReporting = yes ++ ++# Disable this if you want to regular users to own the problem data colleted by ++# abrt. ++# ++PrivateReports = yes +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 00ae621..3a6d002 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -682,6 +682,9 @@ int main(int argc, char** argv) + } + } + ++ /* If PrivateReports is on, root owns all problem directories */ ++ const uid_t dduid = g_settings_privatereports ? 0 : fsuid; ++ + /* Open a fd to compat coredump, if requested and is possible */ + if (setting_MakeCompatCore && ulimit_c != 0) + /* note: checks "user_pwd == NULL" inside; updates core_basename */ +@@ -773,18 +776,19 @@ int main(int argc, char** argv) + goto create_user_core; + } + +- /* use fsuid instead of uid, so we don't expose any sensitive +- * information of suided app in /var/tmp/abrt ++ /* use dduid (either fsuid or 0) instead of uid, so we don't expose any ++ * sensitive information of suided app in /var/tmp/abrt + * + * dd_create_skeleton() creates a new directory and leaves ownership to + * the current user, hence, we have to call dd_reset_ownership() after the + * directory is populated. + */ +- dd = dd_create_skeleton(path, fsuid, DEFAULT_DUMP_DIR_MODE, /*no flags*/0); ++ dd = dd_create_skeleton(path, dduid, DEFAULT_DUMP_DIR_MODE, /*no flags*/0); + if (dd) + { + char *rootdir = get_rootdir(pid); + ++ /* This function uses fsuid only for its value. The function stores fsuid in a file name 'uid'*/ + dd_create_basic_files(dd, fsuid, NULL); + + char source_filename[sizeof("/proc/%lu/somewhat_long_name") + sizeof(long)*3]; +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 85a5a5c..0320c5b 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -62,6 +62,8 @@ extern bool g_settings_autoreporting; + extern char * g_settings_autoreporting_event; + #define g_settings_shortenedreporting abrt_g_settings_shortenedreporting + extern bool g_settings_shortenedreporting; ++#define g_settings_privatereports abrt_g_settings_privatereports ++extern bool g_settings_privatereports; + + + #define load_abrt_conf abrt_load_abrt_conf +diff --git a/src/lib/abrt_conf.c b/src/lib/abrt_conf.c +index 5eb69e2..c6aba58 100644 +--- a/src/lib/abrt_conf.c ++++ b/src/lib/abrt_conf.c +@@ -27,6 +27,7 @@ bool g_settings_delete_uploaded = 0; + bool g_settings_autoreporting = 0; + char * g_settings_autoreporting_event = NULL; + bool g_settings_shortenedreporting = 0; ++bool g_settings_privatereports = true; + + void free_abrt_conf_data() + { +@@ -102,6 +103,13 @@ static void ParseCommon(map_string_t *settings, const char *conf_filename) + else + g_settings_shortenedreporting = 0; + ++ value = get_map_string_item_or_NULL(settings, "PrivateReports"); ++ if (value) ++ { ++ g_settings_privatereports = string_to_bool(value); ++ remove_map_string_item(settings, "PrivateReports"); ++ } ++ + GHashTableIter iter; + const char *name; + /*char *value; - already declared */ +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index 1d45cdd..fb7750d 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -410,7 +410,12 @@ char* problem_data_save(problem_data_t *pd) + { + load_abrt_conf(); + +- struct dump_dir *dd = create_dump_dir_from_problem_data(pd, g_settings_dump_location); ++ struct dump_dir *dd = NULL; ++ ++ if (g_settings_privatereports) ++ dd = create_dump_dir_from_problem_data_ext(pd, g_settings_dump_location, 0); ++ else ++ dd = create_dump_dir_from_problem_data(pd, g_settings_dump_location); + + char *problem_id = NULL; + if (dd) +diff --git a/src/plugins/abrt-dump-oops.c b/src/plugins/abrt-dump-oops.c +index 9f0dc87..05cb728 100644 +--- a/src/plugins/abrt-dump-oops.c ++++ b/src/plugins/abrt-dump-oops.c +@@ -189,6 +189,14 @@ static unsigned create_oops_dump_dirs(GList *oops_list, unsigned oops_cnt) + mode = DEFAULT_DUMP_DIR_MODE; + my_euid = geteuid(); + } ++ if (g_settings_privatereports) ++ { ++ if (world_readable_dump) ++ log("Not going to make dump directories world readable because PrivateReports is on"); ++ ++ mode = DEFAULT_DUMP_DIR_MODE; ++ my_euid = 0; ++ } + + pid_t my_pid = getpid(); + unsigned idx = 0; +diff --git a/src/plugins/abrt-dump-xorg.c b/src/plugins/abrt-dump-xorg.c +index 3500629..434dc76 100644 +--- a/src/plugins/abrt-dump-xorg.c ++++ b/src/plugins/abrt-dump-xorg.c +@@ -82,6 +82,14 @@ static void save_bt_to_dump_dir(const char *bt, const char *exe, const char *rea + mode = DEFAULT_DUMP_DIR_MODE; + my_euid = geteuid(); + } ++ if (g_settings_privatereports) ++ { ++ if ((g_opts & OPT_x)) ++ log("Not going to make dump directories world readable because PrivateReports is on"); ++ ++ mode = DEFAULT_DUMP_DIR_MODE; ++ my_euid = 0; ++ } + + pid_t my_pid = getpid(); + +-- +1.8.3.1 + diff --git a/SOURCES/0101-configure-move-the-default-dump-location-to-var-spoo.patch b/SOURCES/0101-configure-move-the-default-dump-location-to-var-spoo.patch new file mode 100644 index 0000000..9554b09 --- /dev/null +++ b/SOURCES/0101-configure-move-the-default-dump-location-to-var-spoo.patch @@ -0,0 +1,47 @@ +From 7d023c32a565e83306cddf34c894477b7aaf33d1 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 20 Apr 2015 08:06:09 +0200 +Subject: [ABRT PATCH] configure: move the default dump location to /var/spool + +Signed-off-by: Jakub Filak +--- + configure.ac | 4 ++-- + src/daemon/abrt.conf | 4 ++-- + 2 files changed, 4 insertions(+), 4 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 6c6d2e8..d95fc4a 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -146,8 +146,8 @@ PROBLEMS_CONFIG_INTERFACES_DIR=${dbusinterfacedir} + + AC_ARG_WITH([defaultdumplocation], + AS_HELP_STRING([--with-defaultdumplocation=DIR], +- [Default dump location ('LOCALSTATEDIR/tmp/abrt')]), +- [], [with_defaultdumplocation=${localstatedir}/tmp/abrt]) ++ [Default dump location ('LOCALSTATEDIR/spool/abrt')]), ++ [], [with_defaultdumplocation=${localstatedir}/spool/abrt]) + AC_SUBST([DEFAULT_DUMP_LOCATION], [$with_defaultdumplocation]) + + AC_ARG_WITH(augeaslenslibdir, +diff --git a/src/daemon/abrt.conf b/src/daemon/abrt.conf +index 6c0d6b0..171ee4c 100644 +--- a/src/daemon/abrt.conf ++++ b/src/daemon/abrt.conf +@@ -10,11 +10,11 @@ + MaxCrashReportsSize = 1000 + + # Specify where you want to store coredumps and all files which are needed for +-# reporting. (default:/var/tmp/abrt) ++# reporting. (default:/var/spool/abrt) + # + # Changing dump location could cause problems with SELinux. See man abrt_selinux(8). + # +-#DumpLocation = /var/tmp/abrt ++#DumpLocation = /var/spool/abrt + + # If you want to automatically clean the upload directory you have to tweak the + # selinux policy. +-- +1.8.3.1 + diff --git a/SOURCES/0103-ccpp-avoid-overriding-system-files-by-coredump.patch b/SOURCES/0103-ccpp-avoid-overriding-system-files-by-coredump.patch new file mode 100644 index 0000000..fa860fc --- /dev/null +++ b/SOURCES/0103-ccpp-avoid-overriding-system-files-by-coredump.patch @@ -0,0 +1,28 @@ +From cdb4c5b0855d910132e61d71afbd445b0271fcb4 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 21 Apr 2015 07:54:17 +0200 +Subject: [ABRT PATCH] ccpp: avoid overriding system files by coredump + +Related: #1211835 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 3a6d002..02f15d5 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -544,7 +544,7 @@ static bool dump_fd_info(const char *dest_filename, char *source_filename, int s + /* Like xopen, but on error, unlocks and deletes dd and user core */ + static int create_or_die(const char *filename) + { +- int fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, DEFAULT_DUMP_DIR_MODE); ++ int fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, DEFAULT_DUMP_DIR_MODE); + if (fd >= 0) + { + IGNORE_RESULT(fchown(fd, dd->dd_uid, dd->dd_gid)); +-- +1.8.3.1 + diff --git a/SOURCES/0105-daemon-use-libreport-s-function-checking-file-name.patch b/SOURCES/0105-daemon-use-libreport-s-function-checking-file-name.patch new file mode 100644 index 0000000..04df87f --- /dev/null +++ b/SOURCES/0105-daemon-use-libreport-s-function-checking-file-name.patch @@ -0,0 +1,54 @@ +From c796c76341ee846cfb897ed645bac211d7d0a932 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 23 Apr 2015 13:12:01 +0200 +Subject: [ABRT PATCH] daemon: use libreport's function checking file name + +Move the functions to libreport because we need the same functionality +there too. + +Related: #1214451 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-server.c | 18 +----------------- + 1 file changed, 1 insertion(+), 17 deletions(-) + +diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c +index 5789075..4d486d4 100644 +--- a/src/daemon/abrt-server.c ++++ b/src/daemon/abrt-server.c +@@ -476,22 +476,6 @@ static int create_problem_dir(GHashTable *problem_info, unsigned pid) + exit(0); + } + +-/* Checks if a string contains only printable characters. */ +-static gboolean printable_str(const char *str) +-{ +- do { +- if ((unsigned char)(*str) < ' ' || *str == 0x7f) +- return FALSE; +- str++; +- } while (*str); +- return TRUE; +-} +- +-static gboolean is_correct_filename(const char *value) +-{ +- return printable_str(value) && !strchr(value, '/') && !strchr(value, '.'); +-} +- + static gboolean key_value_ok(gchar *key, gchar *value) + { + char *i; +@@ -510,7 +494,7 @@ static gboolean key_value_ok(gchar *key, gchar *value) + || strcmp(key, FILENAME_TYPE) == 0 + ) + { +- if (!is_correct_filename(value)) ++ if (!str_is_correct_filename(value)) + { + error_msg("Value of '%s' ('%s') is not a valid directory name", + key, value); +-- +1.8.3.1 + diff --git a/SOURCES/0106-lib-add-functions-validating-dump-dir.patch b/SOURCES/0106-lib-add-functions-validating-dump-dir.patch new file mode 100644 index 0000000..83e5647 --- /dev/null +++ b/SOURCES/0106-lib-add-functions-validating-dump-dir.patch @@ -0,0 +1,287 @@ +From b7f8bd20b7fb5b72f003ae3fa647c1d75f4218b7 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 23 Apr 2015 14:40:18 +0200 +Subject: [ABRT PATCH] lib: add functions validating dump dir + +Move the code from abrt-server to shared library and fix the condition +validating dump dir's path. + +As of now, abrt is allowed to process only direct sub-directories of the +dump locations. + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-server.c | 42 ++++++------------------ + src/include/libabrt.h | 4 +++ + src/lib/hooklib.c | 56 +++++++++++++++++++++++++++++++ + tests/Makefile.am | 3 +- + tests/hooklib.at | 85 ++++++++++++++++++++++++++++++++++++++++++++++++ + tests/testsuite.at | 1 + + 6 files changed, 158 insertions(+), 33 deletions(-) + create mode 100644 tests/hooklib.at + +diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c +index 4d486d4..1030461 100644 +--- a/src/daemon/abrt-server.c ++++ b/src/daemon/abrt-server.c +@@ -76,20 +76,6 @@ static unsigned total_bytes_read = 0; + static uid_t client_uid = (uid_t)-1L; + + +-static bool dir_is_in_dump_location(const char *dump_dir_name) +-{ +- unsigned len = strlen(g_settings_dump_location); +- +- if (strncmp(dump_dir_name, g_settings_dump_location, len) == 0 +- && dump_dir_name[len] == '/' +- /* must not contain "/." anywhere (IOW: disallow ".." component) */ +- && !strstr(dump_dir_name + len, "/.") +- ) { +- return 1; +- } +- return 0; +-} +- + /* Remove dump dir */ + static int delete_path(const char *dump_dir_name) + { +@@ -100,6 +86,11 @@ static int delete_path(const char *dump_dir_name) + error_msg("Bad problem directory name '%s', should start with: '%s'", dump_dir_name, g_settings_dump_location); + return 400; /* Bad Request */ + } ++ if (!dir_has_correct_permissions(dump_dir_name)) ++ { ++ error_msg("Problem directory '%s' isn't owned by root:abrt or others are not restricted from access", dump_dir_name); ++ return 400; /* */ ++ } + if (!dump_dir_accessible_by_uid(dump_dir_name, client_uid)) + { + if (errno == ENOTDIR) +@@ -154,26 +145,13 @@ static int run_post_create(const char *dirname) + error_msg("Bad problem directory name '%s', should start with: '%s'", dirname, g_settings_dump_location); + return 400; /* Bad Request */ + } ++ if (!dir_has_correct_permissions(dirname)) ++ { ++ error_msg("Problem directory '%s' isn't owned by root:abrt or others are not restricted from access", dirname); ++ return 400; /* */ ++ } + if (g_settings_privatereports) + { +- struct stat statbuf; +- if (lstat(dirname, &statbuf) != 0 || !S_ISDIR(statbuf.st_mode)) +- { +- error_msg("Path '%s' isn't directory", dirname); +- return 404; /* Not Found */ +- } +- /* Get ABRT's group gid */ +- struct group *gr = getgrnam("abrt"); +- if (!gr) +- { +- error_msg("Group 'abrt' does not exist"); +- return 500; +- } +- if (statbuf.st_uid != 0 || !(statbuf.st_gid == 0 || statbuf.st_gid == gr->gr_gid) || statbuf.st_mode & 07) +- { +- error_msg("Problem directory '%s' isn't owned by root:abrt or others are not restricted from access", dirname); +- return 403; +- } + struct dump_dir *dd = dd_opendir(dirname, DD_OPEN_READONLY); + const bool complete = dd && problem_dump_dir_is_complete(dd); + dd_close(dd); +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 0320c5b..5bf2397 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -47,6 +47,10 @@ char *run_unstrip_n(const char *dump_dir_name, unsigned timeout_sec); + #define get_backtrace abrt_get_backtrace + char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char *debuginfo_dirs); + ++#define dir_is_in_dump_location abrt_dir_is_in_dump_location ++bool dir_is_in_dump_location(const char *dir_name); ++#define dir_has_correct_permissions abrt_dir_has_correct_permissions ++bool dir_has_correct_permissions(const char *dir_name); + + #define g_settings_nMaxCrashReportsSize abrt_g_settings_nMaxCrashReportsSize + extern unsigned int g_settings_nMaxCrashReportsSize; +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index fb7750d..4b20025 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -427,3 +427,59 @@ char* problem_data_save(problem_data_t *pd) + log_info("problem id: '%s'", problem_id); + return problem_id; + } ++ ++bool dir_is_in_dump_location(const char *dir_name) ++{ ++ unsigned len = strlen(g_settings_dump_location); ++ ++ /* The path must start with "g_settings_dump_location" */ ++ if (strncmp(dir_name, g_settings_dump_location, len) != 0) ++ { ++ log_debug("Bad parent directory: '%s' not in '%s'", g_settings_dump_location, dir_name); ++ return false; ++ } ++ ++ /* and must be a sub-directory of the g_settings_dump_location dir */ ++ const char *base_name = dir_name + len; ++ while (*base_name && *base_name == '/') ++ ++base_name; ++ ++ if (*(base_name - 1) != '/' || !str_is_correct_filename(base_name)) ++ { ++ log_debug("Invalid dump directory name: '%s'", base_name); ++ return false; ++ } ++ ++ /* and we are sure it is a directory */ ++ struct stat sb; ++ if (lstat(dir_name, &sb) < 0) ++ { ++ VERB2 perror_msg("stat('%s')", dir_name); ++ return errno== ENOENT; ++ } ++ ++ return S_ISDIR(sb.st_mode); ++} ++ ++bool dir_has_correct_permissions(const char *dir_name) ++{ ++ if (g_settings_privatereports) ++ { ++ struct stat statbuf; ++ if (lstat(dir_name, &statbuf) != 0 || !S_ISDIR(statbuf.st_mode)) ++ { ++ error_msg("Path '%s' isn't directory", dir_name); ++ return false; ++ } ++ /* Get ABRT's group gid */ ++ struct group *gr = getgrnam("abrt"); ++ if (!gr) ++ { ++ error_msg("Group 'abrt' does not exist"); ++ return false; ++ } ++ if (statbuf.st_uid != 0 || !(statbuf.st_gid == 0 || statbuf.st_gid == gr->gr_gid) || statbuf.st_mode & 07) ++ return false; ++ } ++ return true; ++} +diff --git a/tests/Makefile.am b/tests/Makefile.am +index 5ef08a0..416f579 100644 +--- a/tests/Makefile.am ++++ b/tests/Makefile.am +@@ -29,7 +29,8 @@ TESTSUITE_AT = \ + testsuite.at \ + pyhook.at \ + koops-parser.at \ +- ignored_problems.at ++ ignored_problems.at \ ++ hooklib.at + + EXTRA_DIST += $(TESTSUITE_AT) + TESTSUITE = $(srcdir)/testsuite +diff --git a/tests/hooklib.at b/tests/hooklib.at +new file mode 100644 +index 0000000..70631c6 +--- /dev/null ++++ b/tests/hooklib.at +@@ -0,0 +1,85 @@ ++# -*- Autotest -*- ++ ++AT_BANNER([hooklib]) ++ ++AT_TESTFUN([dir_is_in_dump_location], ++[[ ++#include "libabrt.h" ++#include ++ ++void test(char *name, bool expected) ++{ ++ if (dir_is_in_dump_location(name) != expected) ++ { ++ fprintf(stderr, "Bad: %s", name); ++ abort(); ++ } ++ ++ free(name); ++} ++ ++int main(void) ++{ ++ g_verbose = 3; ++ load_abrt_conf(); ++ ++ g_verbose = 3; ++ ++ char *name; ++ ++ assert(dir_is_in_dump_location("/") == false); ++ ++ asprintf(&name, "%s", g_settings_dump_location); ++ test(name, false); ++ ++ asprintf(&name, "%s..evil", g_settings_dump_location); ++ test(name, false); ++ ++ asprintf(&name, "%s/", g_settings_dump_location); ++ test(name, false); ++ ++ asprintf(&name, "%s///", g_settings_dump_location); ++ test(name, false); ++ ++ asprintf(&name, "%s/.", g_settings_dump_location); ++ test(name, false); ++ ++ asprintf(&name, "%s///.", g_settings_dump_location); ++ test(name, false); ++ ++ asprintf(&name, "%s/./", g_settings_dump_location); ++ test(name, false); ++ ++ asprintf(&name, "%s/.///", g_settings_dump_location); ++ test(name, false); ++ ++ asprintf(&name, "%s/..", g_settings_dump_location); ++ test(name, false); ++ ++ asprintf(&name, "%s///..", g_settings_dump_location); ++ test(name, false); ++ ++ asprintf(&name, "%s/../", g_settings_dump_location); ++ test(name, false); ++ ++ asprintf(&name, "%s/..///", g_settings_dump_location); ++ test(name, false); ++ ++ asprintf(&name, "%s/good/../../../evil", g_settings_dump_location); ++ test(name, false); ++ ++ asprintf(&name, "%s/good..still", g_settings_dump_location); ++ test(name, true); ++ ++ asprintf(&name, "%s/good.new", g_settings_dump_location); ++ test(name, true); ++ ++ asprintf(&name, "%s/.meta", g_settings_dump_location); ++ test(name, true); ++ ++ asprintf(&name, "%s/..data", g_settings_dump_location); ++ test(name, true); ++ ++ return 0; ++} ++]]) +diff --git a/tests/testsuite.at b/tests/testsuite.at +index b8f363d..765de2a 100644 +--- a/tests/testsuite.at ++++ b/tests/testsuite.at +@@ -4,3 +4,4 @@ + m4_include([koops-parser.at]) + m4_include([pyhook.at]) + m4_include([ignored_problems.at]) ++m4_include([hooklib.at]) +-- +1.8.3.1 + diff --git a/SOURCES/0107-dbus-process-only-valid-sub-directories-of-the-dump-.patch b/SOURCES/0107-dbus-process-only-valid-sub-directories-of-the-dump-.patch new file mode 100644 index 0000000..f1fb687 --- /dev/null +++ b/SOURCES/0107-dbus-process-only-valid-sub-directories-of-the-dump-.patch @@ -0,0 +1,70 @@ +From 6e811d78e2719988ae291181f5b133af32ce62d8 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 23 Apr 2015 14:46:27 +0200 +Subject: [ABRT PATCH] dbus: process only valid sub-directories of the dump + location + +Must have correct rights and must be a direct sub-directory of the dump +location. + +This issue was discovered by Florian Weimer of Red Hat Product Security. + +Related: #1214451 + +Signed-off-by: Jakub Filak +--- + src/dbus/abrt-dbus.c | 36 ++++++++++++++++++++++++++---------- + 1 file changed, 26 insertions(+), 10 deletions(-) + +diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c +index 308a9af..7400dff 100644 +--- a/src/dbus/abrt-dbus.c ++++ b/src/dbus/abrt-dbus.c +@@ -132,18 +132,34 @@ static uid_t get_caller_uid(GDBusConnection *connection, GDBusMethodInvocation * + return caller_uid; + } + +-static bool allowed_problem_dir(const char *dir_name) ++bool allowed_problem_dir(const char *dir_name) + { +-//HACK HACK HACK! Disabled for now until we fix clients (abrt-gui) to not pass /home/user/.cache/abrt/spool ++ if (!dir_is_in_dump_location(dir_name)) ++ { ++ error_msg("Bad problem directory name '%s', should start with: '%s'", dir_name, g_settings_dump_location); ++ return false; ++ } ++ ++ /* We cannot test correct permissions yet because we still need to chown ++ * dump directories before reporting and Chowing changes the file owner to ++ * the reporter, which causes this test to fail and prevents users from ++ * getting problem data after reporting it. ++ * ++ * Fortunately, libreport has been hardened against hard link and symbolic ++ * link attacks and refuses to work with such files, so this test isn't ++ * really necessary, however, we will use it once we get rid of the ++ * chowning files. ++ * ++ * abrt-server refuses to run post-create on directories that have ++ * incorrect owner (not "root:(abrt|root)"), incorrect permissions (other ++ * bits are not 0) and are complete (post-create finished). So, there is no ++ * way to run security sensitive event scripts (post-create) on crafted ++ * problem directories. ++ */ + #if 0 +- unsigned len = strlen(g_settings_dump_location); +- +- /* If doesn't start with "g_settings_dump_location[/]"... */ +- if (strncmp(dir_name, g_settings_dump_location, len) != 0 +- || (dir_name[len] != '/' && dir_name[len] != '\0') +- /* or contains "/." anywhere (-> might contain ".." component) */ +- || strstr(dir_name + len, "/.") +- ) { ++ if (!dir_has_correct_permissions(dir_name)) ++ { ++ error_msg("Problem directory '%s' isn't owned by root:abrt or others are not restricted from access", dir_name); + return false; + } + #endif +-- +1.8.3.1 + diff --git a/SOURCES/0108-dbus-avoid-race-conditions-in-tests-for-dum-dir-avai.patch b/SOURCES/0108-dbus-avoid-race-conditions-in-tests-for-dum-dir-avai.patch new file mode 100644 index 0000000..c90d1e1 --- /dev/null +++ b/SOURCES/0108-dbus-avoid-race-conditions-in-tests-for-dum-dir-avai.patch @@ -0,0 +1,223 @@ +From 7814554e0827ece778ca88fd90832bd4d05520b1 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 24 Apr 2015 13:48:32 +0200 +Subject: [ABRT PATCH] dbus: avoid race-conditions in tests for dum dir + availability + +Florian Weimer + + dump_dir_accessible_by_uid() is fundamentally insecure because it + opens up a classic time-of-check-time-of-use race between this + function and and dd_opendir(). + +Related: #1214745 + +Signed-off-by: Jakub Filak +--- + src/dbus/abrt-dbus.c | 66 ++++++++++++++++++++++++++++++++++++++++++++------- + src/lib/problem_api.c | 15 ++++++++++-- + 2 files changed, 71 insertions(+), 10 deletions(-) + +diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c +index 7400dff..9e1844a 100644 +--- a/src/dbus/abrt-dbus.c ++++ b/src/dbus/abrt-dbus.c +@@ -245,7 +245,15 @@ static struct dump_dir *open_directory_for_modification_of_element( + } + } + +- if (!dump_dir_accessible_by_uid(problem_id, caller_uid)) ++ int dir_fd = dd_openfd(problem_id); ++ if (dir_fd < 0) ++ { ++ perror_msg("can't open problem directory '%s'", problem_id); ++ return_InvalidProblemDir_error(invocation, problem_id); ++ return NULL; ++ } ++ ++ if (!fdump_dir_accessible_by_uid(dir_fd, caller_uid)) + { + if (errno == ENOTDIR) + { +@@ -260,10 +268,11 @@ static struct dump_dir *open_directory_for_modification_of_element( + _("Not Authorized")); + } + ++ close(dir_fd); + return NULL; + } + +- struct dump_dir *dd = dd_opendir(problem_id, /* flags : */ 0); ++ struct dump_dir *dd = dd_fdopendir(dir_fd, problem_id, /* flags : */ 0); + if (!dd) + { /* This should not happen because of the access check above */ + log_notice("Can't access the problem '%s' for modification", problem_id); +@@ -429,7 +438,15 @@ static void handle_method_call(GDBusConnection *connection, + return; + } + +- int ddstat = dump_dir_stat_for_uid(problem_dir, caller_uid); ++ int dir_fd = dd_openfd(problem_dir); ++ if (dir_fd < 0) ++ { ++ perror_msg("can't open problem directory '%s'", problem_dir); ++ return_InvalidProblemDir_error(invocation, problem_dir); ++ return; ++ } ++ ++ int ddstat = fdump_dir_stat_for_uid(dir_fd, caller_uid); + if (ddstat < 0) + { + if (errno == ENOTDIR) +@@ -443,6 +460,7 @@ static void handle_method_call(GDBusConnection *connection, + + return_InvalidProblemDir_error(invocation, problem_dir); + ++ close(dir_fd); + return; + } + +@@ -450,6 +468,7 @@ static void handle_method_call(GDBusConnection *connection, + { //caller seems to be in group with access to this dir, so no action needed + log_notice("caller has access to the requested directory %s", problem_dir); + g_dbus_method_invocation_return_value(invocation, NULL); ++ close(dir_fd); + return; + } + +@@ -460,10 +479,11 @@ static void handle_method_call(GDBusConnection *connection, + g_dbus_method_invocation_return_dbus_error(invocation, + "org.freedesktop.problems.AuthFailure", + _("Not Authorized")); ++ close(dir_fd); + return; + } + +- struct dump_dir *dd = dd_opendir(problem_dir, DD_OPEN_READONLY | DD_FAIL_QUIETLY_EACCES); ++ struct dump_dir *dd = dd_fdopendir(dir_fd, problem_dir, DD_OPEN_READONLY | DD_FAIL_QUIETLY_EACCES); + if (!dd) + { + return_InvalidProblemDir_error(invocation, problem_dir); +@@ -497,12 +517,21 @@ static void handle_method_call(GDBusConnection *connection, + return; + } + +- if (!dump_dir_accessible_by_uid(problem_dir, caller_uid)) ++ int dir_fd = dd_openfd(problem_dir); ++ if (dir_fd < 0) ++ { ++ perror_msg("can't open problem directory '%s'", problem_dir); ++ return_InvalidProblemDir_error(invocation, problem_dir); ++ return; ++ } ++ ++ if (!fdump_dir_accessible_by_uid(dir_fd, caller_uid)) + { + if (errno == ENOTDIR) + { + log_notice("Requested directory does not exist '%s'", problem_dir); + return_InvalidProblemDir_error(invocation, problem_dir); ++ close(dir_fd); + return; + } + +@@ -512,11 +541,12 @@ static void handle_method_call(GDBusConnection *connection, + g_dbus_method_invocation_return_dbus_error(invocation, + "org.freedesktop.problems.AuthFailure", + _("Not Authorized")); ++ close(dir_fd); + return; + } + } + +- struct dump_dir *dd = dd_opendir(problem_dir, DD_OPEN_READONLY | DD_FAIL_QUIETLY_EACCES); ++ struct dump_dir *dd = dd_fdopendir(dir_fd, problem_dir, DD_OPEN_READONLY | DD_FAIL_QUIETLY_EACCES); + if (!dd) + { + return_InvalidProblemDir_error(invocation, problem_dir); +@@ -677,20 +707,40 @@ static void handle_method_call(GDBusConnection *connection, + for (GList *l = problem_dirs; l; l = l->next) + { + const char *dir_name = (const char*)l->data; +- if (!dump_dir_accessible_by_uid(dir_name, caller_uid)) ++ ++ int dir_fd = dd_openfd(dir_name); ++ if (dir_fd < 0) ++ { ++ perror_msg("can't open problem directory '%s'", dir_name); ++ return_InvalidProblemDir_error(invocation, dir_name); ++ return; ++ } ++ ++ if (!fdump_dir_accessible_by_uid(dir_fd, caller_uid)) + { + if (errno == ENOTDIR) + { + log_notice("Requested directory does not exist '%s'", dir_name); ++ close(dir_fd); + continue; + } + + if (polkit_check_authorization_dname(caller, "org.freedesktop.problems.getall") != PolkitYes) + { // if user didn't provide correct credentials, just move to the next dir ++ close(dir_fd); + continue; + } + } +- delete_dump_dir(dir_name); ++ ++ struct dump_dir *dd = dd_fdopendir(dir_fd, dir_name, /*flags:*/ 0); ++ if (dd) ++ { ++ if (dd_delete(dd) != 0) ++ { ++ error_msg("Failed to delete problem directory '%s'", dir_name); ++ dd_close(dd); ++ } ++ } + } + + g_dbus_method_invocation_return_value(invocation, NULL); +diff --git a/src/lib/problem_api.c b/src/lib/problem_api.c +index c2b4b1c..b343882 100644 +--- a/src/lib/problem_api.c ++++ b/src/lib/problem_api.c +@@ -46,7 +46,15 @@ int for_each_problem_in_dir(const char *path, + continue; /* skip "." and ".." */ + + char *full_name = concat_path_file(path, dent->d_name); +- if (caller_uid == -1 || dump_dir_accessible_by_uid(full_name, caller_uid)) ++ ++ int dir_fd = dd_openfd(full_name); ++ if (dir_fd < 0) ++ { ++ VERB2 perror_msg("can't open problem directory '%s'", full_name); ++ continue; ++ } ++ ++ if (caller_uid == -1 || fdump_dir_accessible_by_uid(dir_fd, caller_uid)) + { + /* Silently ignore *any* errors, not only EACCES. + * We saw "lock file is locked by process PID" error +@@ -54,7 +62,7 @@ int for_each_problem_in_dir(const char *path, + */ + int sv_logmode = logmode; + logmode = 0; +- struct dump_dir *dd = dd_opendir(full_name, DD_OPEN_READONLY | DD_FAIL_QUIETLY_EACCES | DD_DONT_WAIT_FOR_LOCK); ++ struct dump_dir *dd = dd_fdopendir(dir_fd, full_name, DD_OPEN_READONLY | DD_FAIL_QUIETLY_EACCES | DD_DONT_WAIT_FOR_LOCK); + logmode = sv_logmode; + if (dd) + { +@@ -62,6 +70,9 @@ int for_each_problem_in_dir(const char *path, + dd_close(dd); + } + } ++ else ++ close(dir_fd); ++ + free(full_name); + if (brk) + break; +-- +1.8.3.1 + diff --git a/SOURCES/0109-dbus-report-invalid-element-names.patch b/SOURCES/0109-dbus-report-invalid-element-names.patch new file mode 100644 index 0000000..d0a9394 --- /dev/null +++ b/SOURCES/0109-dbus-report-invalid-element-names.patch @@ -0,0 +1,49 @@ +From f3c2a6af3455b2882e28570e8a04f1c2d4500d5b Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 27 Apr 2015 07:52:00 +0200 +Subject: [ABRT PATCH] dbus: report invalid element names + +Return D-Bus error in case of invalid problem element name. + +Related: #1214451 + +Signed-off-by: Jakub Filak +--- + src/dbus/abrt-dbus.c | 14 +++++++++++++- + 1 file changed, 13 insertions(+), 1 deletion(-) + +diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c +index 9e1844a..6de15e9 100644 +--- a/src/dbus/abrt-dbus.c ++++ b/src/dbus/abrt-dbus.c +@@ -599,7 +599,7 @@ static void handle_method_call(GDBusConnection *connection, + + g_variant_get(parameters, "(&s&s&s)", &problem_id, &element, &value); + +- if (element == NULL || element[0] == '\0' || strlen(element) > 64) ++ if (!str_is_correct_filename(element)) + { + log_notice("'%s' is not a valid element name of '%s'", element, problem_id); + char *error = xasprintf(_("'%s' is not a valid element name"), element); +@@ -658,6 +658,18 @@ static void handle_method_call(GDBusConnection *connection, + + g_variant_get(parameters, "(&s&s)", &problem_id, &element); + ++ if (!str_is_correct_filename(element)) ++ { ++ log_notice("'%s' is not a valid element name of '%s'", element, problem_id); ++ char *error = xasprintf(_("'%s' is not a valid element name"), element); ++ g_dbus_method_invocation_return_dbus_error(invocation, ++ "org.freedesktop.problems.InvalidElement", ++ error); ++ ++ free(error); ++ return; ++ } ++ + struct dump_dir *dd = open_directory_for_modification_of_element( + invocation, caller_uid, problem_id, element); + if (!dd) +-- +1.8.3.1 + diff --git a/SOURCES/0110-a-a-i-d-t-a-cache-sanitize-arguments.patch b/SOURCES/0110-a-a-i-d-t-a-cache-sanitize-arguments.patch new file mode 100644 index 0000000..0939cc6 --- /dev/null +++ b/SOURCES/0110-a-a-i-d-t-a-cache-sanitize-arguments.patch @@ -0,0 +1,170 @@ +From 9943a77bca37a0829ccd3784d1dfab37f8c24e7b Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 29 Apr 2015 13:57:39 +0200 +Subject: [ABRT PATCH] a-a-i-d-t-a-cache: sanitize arguments + +Parse command lines arguments and use them to create new arguments for +exec(). No black listing algorithm would be safe enough. The only +allowed arguments are the following: +* v - verbose +* y - noninteractive +* repo - enable only repositories whose names match the pattern +* exact - download packages for the specified files +* ids - passed as magic proc fd path to the wrapped executable + +The wrapper opens the list of needed build ids passes /proc/self/fd/[fd] +to the wrapped process. This allows us to open the file with caller's +UID/GID in order to avoid information disclosures. + +Forbidden arguments: +* cache - allows regular users to create a user writable dump directory +* tmpdir - the same as above +* size_mb - no need to allow users to fiddle with the cache size + +Related: #1216962 + +Signed-off-by: Jakub Filak +--- + po/POTFILES.in | 1 + + .../abrt-action-install-debuginfo-to-abrt-cache.c | 106 ++++++++++++++++----- + 2 files changed, 85 insertions(+), 22 deletions(-) + +diff --git a/po/POTFILES.in b/po/POTFILES.in +index cbe89fa..1248c46 100644 +--- a/po/POTFILES.in ++++ b/po/POTFILES.in +@@ -31,6 +31,7 @@ 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 ++src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c + src/plugins/abrt-action-perform-ccpp-analysis.in + src/plugins/abrt-action-trim-files.c + src/plugins/abrt-action-ureport +diff --git a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +index e0eccc0..eb2f7c5 100644 +--- a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c ++++ b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +@@ -29,28 +29,90 @@ + */ + int main(int argc, char **argv) + { +- /* +- * We disallow passing of arguments which point to writable dirs +- * and other files possibly not accessible to calling user. +- * This way, the script will always use default values for these arguments. +- */ +- char **pp = argv; +- char *arg; +- while ((arg = *++pp) != NULL) ++ /* I18n */ ++ setlocale(LC_ALL, ""); ++#if ENABLE_NLS ++ bindtextdomain(PACKAGE, LOCALEDIR); ++ textdomain(PACKAGE); ++#endif ++ ++ abrt_init(argv); ++ ++ /* Can't keep these strings/structs static: _() doesn't support that */ ++ const char *program_usage_string = _( ++ "& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++ "\t[-r REPO]\n" ++ "\n" ++ "Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++ "ABRT system cache." ++ ); ++ ++ enum { ++ OPT_v = 1 << 0, ++ OPT_y = 1 << 1, ++ OPT_i = 1 << 2, ++ OPT_e = 1 << 3, ++ OPT_r = 1 << 4, ++ OPT_s = 1 << 5, ++ }; ++ ++ const char *build_ids = "build_ids"; ++ const char *exact = NULL; ++ const char *repo = NULL; ++ const char *size_mb = NULL; ++ ++ struct options program_options[] = { ++ OPT__VERBOSE(&g_verbose), ++ OPT_BOOL ('y', "yes", NULL, _("Noninteractive, assume 'Yes' to all questions")), ++ OPT_STRING('i', "ids", &build_ids, "BUILD_IDS_FILE", _("- means STDIN, default: build_ids")), ++ OPT_STRING('e', "exact", &exact, "EXACT", _("Download only specified files")), ++ OPT_STRING('r', "repo", &repo, "REPO", _("Pattern to use when searching for repos, default: *debug*")), ++ OPT_STRING('s', "size_mb", &size_mb, "SIZE_MB", _("Ignored option")), ++ OPT_END() ++ }; ++ const unsigned opts = parse_opts(argc, argv, program_options, program_usage_string); ++ ++ /* We need to open the build ids file under the caller's UID/GID to avoid ++ * information disclosures when reading files with changed UID. ++ * Unfortunately, we cannot replace STDIN with the new fd because ABRT uses ++ * STDIN to communicate with the caller. So, the following code opens a ++ * dummy file descriptor to the build ids file and passes the new fd's proc ++ * path to the wrapped program in the ids argument. ++ * The new fd remains opened, the OS will close it for us. */ ++ char *build_ids_self_fd = NULL; ++ if (strcmp("-", build_ids) != 0) ++ { ++ const int build_ids_fd = open(build_ids, O_RDONLY); ++ if (build_ids_fd < 0) ++ perror_msg_and_die("Failed to open file '%s'", build_ids); ++ ++ /* We are not going to free this memory. There is no place to do so. */ ++ build_ids_self_fd = xasprintf("/proc/self/fd/%d", build_ids_fd); ++ } ++ ++ /* name, -v, --ids, -, -y, -e, EXACT, -r, REPO, --, NULL */ ++ const char *args[11]; + { +- /* Allow taking ids from stdin */ +- if (strcmp(arg, "--ids=-") == 0) +- continue; +- +- if (strncmp(arg, "--exact", 7) == 0) +- continue; +- +- if (strncmp(arg, "--cache", 7) == 0) +- error_msg_and_die("bad option %s", arg); +- if (strncmp(arg, "--tmpdir", 8) == 0) +- error_msg_and_die("bad option %s", arg); +- if (strncmp(arg, "--ids", 5) == 0) +- error_msg_and_die("bad option %s", arg); ++ const char *verbs[] = { "", "-v", "-vv", "-vvv" }; ++ unsigned i = 0; ++ args[i++] = EXECUTABLE; ++ args[i++] = "--ids"; ++ args[i++] = (build_ids_self_fd != NULL) ? build_ids_self_fd : "-"; ++ args[i++] = verbs[g_verbose <= 3 ? g_verbose : 3]; ++ if ((opts & OPT_y)) ++ args[i++] = "-y"; ++ if ((opts & OPT_e)) ++ { ++ args[i++] = "--exact"; ++ args[i++] = exact; ++ } ++ if ((opts & OPT_r)) ++ { ++ args[i++] = "--repo"; ++ args[i++] = repo; ++ } ++ args[i++] = "--"; ++ args[i] = NULL; + } + + /* Switch real user/group to effective ones. +@@ -122,6 +184,6 @@ int main(int argc, char **argv) + putenv(path_env); + } + +- execvp(EXECUTABLE, argv); ++ execvp(EXECUTABLE, (char **)args); + error_msg_and_die("Can't execute %s", EXECUTABLE); + } +-- +1.8.3.1 + diff --git a/SOURCES/0111-a-a-i-d-t-a-cache-sanitize-umask.patch b/SOURCES/0111-a-a-i-d-t-a-cache-sanitize-umask.patch new file mode 100644 index 0000000..2037588 --- /dev/null +++ b/SOURCES/0111-a-a-i-d-t-a-cache-sanitize-umask.patch @@ -0,0 +1,31 @@ +From 9a4100678fea4d60ec93d35f4c5de2e9ad054f3a Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 29 Apr 2015 14:13:57 +0200 +Subject: [ABRT PATCH] a-a-i-d-t-a-cache: sanitize umask + +We cannot trust anything when running suided program. + +Related: #1216962 + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c | 3 +++ + 1 file changed, 3 insertions(+) + +diff --git a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +index eb2f7c5..cd9ee7a 100644 +--- a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c ++++ b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +@@ -182,6 +182,9 @@ int main(int argc, char **argv) + if (u != 0) + strcpy(path_env, "PATH=/usr/bin:/bin:"BIN_DIR); + putenv(path_env); ++ ++ /* Use safe umask */ ++ umask(0022); + } + + execvp(EXECUTABLE, (char **)args); +-- +1.8.3.1 + diff --git a/SOURCES/0112-ccpp-revert-the-UID-GID-changes-if-user-core-fails.patch b/SOURCES/0112-ccpp-revert-the-UID-GID-changes-if-user-core-fails.patch new file mode 100644 index 0000000..8b89567 --- /dev/null +++ b/SOURCES/0112-ccpp-revert-the-UID-GID-changes-if-user-core-fails.patch @@ -0,0 +1,102 @@ +From 7269a2cc88735aee0d1fa62491b9efe73ab5c6e8 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 4 May 2015 13:23:43 +0200 +Subject: [ABRT PATCH] ccpp: revert the UID/GID changes if user core fails + +Thanks Florian Weimer + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 58 ++++++++++++++++++++++++++++------------------ + 1 file changed, 36 insertions(+), 22 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 02f15d5..fdd9b06 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -351,9 +351,6 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + return -1; + } + +- xsetegid(get_fsgid()); +- xseteuid(fsuid); +- + if (strcmp(core_basename, "core") == 0) + { + /* Mimic "core.PID" if requested */ +@@ -446,36 +443,53 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + * and the description of the /proc/sys/fs/suid_dumpable file in proc(5).) + */ + +- /* Set SELinux context like kernel when creating core dump file */ +- if (newcon != NULL && setfscreatecon_raw(newcon) < 0) +- { +- perror_msg("setfscreatecon_raw(%s)", newcon); +- return -1; +- } ++ int user_core_fd = -1; ++ int selinux_fail = 1; + +- struct stat sb; +- errno = 0; +- /* Do not O_TRUNC: if later checks fail, we do not want to have file already modified here */ +- int user_core_fd = openat(dirfd(proc_cwd), core_basename, O_WRONLY | O_CREAT | O_NOFOLLOW | g_user_core_flags, 0600); /* kernel makes 0600 too */ ++ /* ++ * These calls must be reverted as soon as possible. ++ */ ++ xsetegid(get_fsgid()); ++ xseteuid(fsuid); + +- if (newcon != NULL && setfscreatecon_raw(NULL) < 0) ++ /* Set SELinux context like kernel when creating core dump file. ++ * This condition is TRUE if */ ++ if (/* SELinux is disabled */ newcon == NULL ++ || /* or the call succeeds */ setfscreatecon_raw(newcon) >= 0) + { +- error_msg("setfscreatecon_raw(NULL)"); +- goto user_core_fail; ++ /* Do not O_TRUNC: if later checks fail, we do not want to have file already modified here */ ++ user_core_fd = openat(dirfd(proc_cwd), core_basename, O_WRONLY | O_CREAT | O_NOFOLLOW | g_user_core_flags, 0600); /* kernel makes 0600 too */ ++ ++ /* Do the error check here and print the error message in order to ++ * avoid interference in 'errno' usage caused by SELinux functions */ ++ if (user_core_fd < 0) ++ perror_msg("Can't open '%s' at '%s'", core_basename, user_pwd); ++ ++ /* Fail if SELinux is enabled and the call fails */ ++ if (newcon != NULL && setfscreatecon_raw(NULL) < 0) ++ perror_msg("setfscreatecon_raw(NULL)"); ++ else ++ selinux_fail = 0; + } ++ else ++ perror_msg("setfscreatecon_raw(%s)", newcon); + ++ /* ++ * DON'T JUMP OVER THIS REVERT OF THE UID/GID CHANGES ++ */ + xsetegid(0); + xseteuid(0); +- if (user_core_fd < 0 +- || fstat(user_core_fd, &sb) != 0 ++ ++ if (user_core_fd < 0 || selinux_fail) ++ goto user_core_fail; ++ ++ struct stat sb; ++ if (fstat(user_core_fd, &sb) != 0 + || !S_ISREG(sb.st_mode) + || sb.st_nlink != 1 + || sb.st_uid != fsuid + ) { +- if (user_core_fd < 0) +- perror_msg("Can't open '%s' at '%s'", core_basename, user_pwd); +- else +- perror_msg("'%s' at '%s' is not a regular file with link count 1 owned by UID(%d)", core_basename, user_pwd, fsuid); ++ perror_msg("'%s' at '%s' is not a regular file with link count 1 owned by UID(%d)", core_basename, user_pwd, fsuid); + goto user_core_fail; + } + if (ftruncate(user_core_fd, 0) != 0) { +-- +1.8.3.1 + diff --git a/SOURCES/0113-upload-validate-and-sanitize-uploaded-dump-directori.patch b/SOURCES/0113-upload-validate-and-sanitize-uploaded-dump-directori.patch new file mode 100644 index 0000000..57b917a --- /dev/null +++ b/SOURCES/0113-upload-validate-and-sanitize-uploaded-dump-directori.patch @@ -0,0 +1,142 @@ +From a4e47c753e9d7988f4d938ed2e0fd690a909ce68 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 20 Apr 2015 15:15:40 +0200 +Subject: [ABRT PATCH] upload: validate and sanitize uploaded dump directories + +It was discovered that, when moving problem reports from +/var/spool/abrt-upload to /var/spool/abrt or /var/tmp/abrt, +abrt-handle-upload does not verify that the new problem directory +has appropriate permissions and does not contain symbolic links. A +crafted problem report exposes other parts of abrt to attack, and +the abrt-handle-upload script allows to overwrite arbitrary files. + +Acknowledgement: + +This issue was discovered by Florian Weimer of Red Hat Product Security. + +Related: #1212953 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-handle-upload.in | 78 +++++++++++++++++++++++++++++++++++----- + 1 file changed, 70 insertions(+), 8 deletions(-) + +diff --git a/src/daemon/abrt-handle-upload.in b/src/daemon/abrt-handle-upload.in +index dbc4534..7720da4 100755 +--- a/src/daemon/abrt-handle-upload.in ++++ b/src/daemon/abrt-handle-upload.in +@@ -10,6 +10,7 @@ import getopt + import tempfile + import shutil + import datetime ++import grp + + from reportclient import set_verbosity, error_msg_and_die, error_msg, log + +@@ -36,12 +37,77 @@ def init_gettext(): + + import problem + +-def write_str_to(filename, s): +- fd = os.open(filename, os.O_WRONLY | os.O_CREAT | os.O_TRUNC, @DEFAULT_DUMP_DIR_MODE@ | stat.S_IROTH) ++def write_str_to(filename, s, uid, gid, mode): ++ fd = os.open(filename, os.O_WRONLY | os.O_CREAT | os.O_TRUNC, mode) + if fd >= 0: ++ os.fchown(fd, uid, gid) + os.write(fd, s) + os.close(fd) + ++ ++def validate_transform_move_and_notify(uploaded_dir_path, problem_dir_path, dest=None): ++ fsuid = 0 ++ fsgid = 0 ++ ++ try: ++ gabrt = grp.getgrnam("abrt") ++ fsgid = gabrt.gr_gid ++ except KeyError as ex: ++ error_msg("Failed to get GID of 'abrt' (using 0 instead): {0}'".format(str(ex))) ++ ++ try: ++ # give the uploaded directory to 'root:abrt' or 'root:root' ++ os.chown(uploaded_dir_path, fsuid, fsgid) ++ # set the right permissions for this machine ++ # (allow the owner and the group to access problem elements, ++ # the default dump dir mode lacks x bit for both) ++ os.chmod(uploaded_dir_path, @DEFAULT_DUMP_DIR_MODE@ | stat.S_IXUSR | stat.S_IXGRP) ++ ++ # sanitize problem elements ++ for item in os.listdir(uploaded_dir_path): ++ apath = os.path.join(uploaded_dir_path, item) ++ if os.path.islink(apath): ++ # remove symbolic links ++ os.remove(apath) ++ elif os.path.isdir(apath): ++ # remove directories ++ shutil.rmtree(apath) ++ elif os.path.isfile(apath): ++ # set file ownership to 'root:abrt' or 'root:root' ++ os.chown(apath, fsuid, fsgid) ++ # set the right file permissions for this machine ++ os.chmod(apath, @DEFAULT_DUMP_DIR_MODE@) ++ else: ++ # remove things that are neither files, symlinks nor directories ++ os.remove(apath) ++ except OSError as ex: ++ error_msg("Removing uploaded dir '{0}': '{1}'".format(uploaded_dir_path, str(ex))) ++ try: ++ shutil.rmtree(uploaded_dir_path) ++ except OSError as ex2: ++ error_msg_and_die("Failed to clean up dir '{0}': '{1}'".format(uploaded_dir_path, str(ex2))) ++ return ++ ++ # overwrite remote if it exists ++ remote_path = os.path.join(uploaded_dir_path, "remote") ++ write_str_to(remote_path, "1", fsuid, fsgid, @DEFAULT_DUMP_DIR_MODE@) ++ ++ # abrtd would increment count value and abrt-server refuses to process ++ # problem directories containing 'count' element when PrivateReports is on. ++ count_path = os.path.join(uploaded_dir_path, "count") ++ if os.path.exists(count_path): ++ # overwrite remote_count if it exists ++ remote_count_path = os.path.join(uploaded_dir_path, "remote_count") ++ os.rename(count_path, remote_count_path) ++ ++ if not dest: ++ dest = problem_dir_path ++ ++ shutil.move(uploaded_dir_path, dest) ++ ++ problem.notify_new_path(problem_dir_path) ++ ++ + if __name__ == "__main__": + + # Helper: exit with cleanup +@@ -177,21 +243,17 @@ if __name__ == "__main__": + # or one or more complete problem data directories. + # Checking second possibility first. + if os.path.exists(tempdir+"/analyzer") and os.path.exists(tempdir+"/time"): +- write_str_to(tempdir+"/remote", "1") +- shutil.move(tempdir, abrt_dir) +- problem.notify_new_path(abrt_dir+"/"+os.path.basename(tempdir)) ++ validate_transform_move_and_notify(tempdir, abrt_dir+"/"+os.path.basename(tempdir), dest=abrt_dir) + else: + for d in os.listdir(tempdir): + if not os.path.isdir(tempdir+"/"+d): + continue +- write_str_to(tempdir+"/"+d+"/remote", "1") + dst = abrt_dir+"/"+d + if os.path.exists(dst): + dst += "."+str(os.getpid()) + if os.path.exists(dst): + continue +- shutil.move(tempdir+"/"+d, dst) +- problem.notify_new_path(dst) ++ validate_transform_move_and_notify(tempdir+"/"+d, dst) + + die_exitcode = 0 + # This deletes working_dir (== delete_on_exit) +-- +1.8.3.1 + diff --git a/SOURCES/0114-daemon-harden-against-race-conditions-in-DELETE.patch b/SOURCES/0114-daemon-harden-against-race-conditions-in-DELETE.patch new file mode 100644 index 0000000..7061feb --- /dev/null +++ b/SOURCES/0114-daemon-harden-against-race-conditions-in-DELETE.patch @@ -0,0 +1,58 @@ +From 10bea037a2ad82616b3698d07d07d287481e1bed Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 6 May 2015 14:04:42 +0200 +Subject: [ABRT PATCH] daemon: harden against race conditions in DELETE + +There is a race between checking dump dir accessibility and deleting it +in abrt-server. + +Related: #1214457. + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-server.c | 21 +++++++++++++++++++-- + 1 file changed, 19 insertions(+), 2 deletions(-) + +diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c +index 1030461..130c24a 100644 +--- a/src/daemon/abrt-server.c ++++ b/src/daemon/abrt-server.c +@@ -91,8 +91,16 @@ static int delete_path(const char *dump_dir_name) + error_msg("Problem directory '%s' isn't owned by root:abrt or others are not restricted from access", dump_dir_name); + return 400; /* */ + } +- if (!dump_dir_accessible_by_uid(dump_dir_name, client_uid)) ++ ++ int dir_fd = dd_openfd(dump_dir_name); ++ if (dir_fd < 0) ++ { ++ perror_msg("Can't open problem directory '%s'", dump_dir_name); ++ return 400; ++ } ++ if (!fdump_dir_accessible_by_uid(dir_fd, client_uid)) + { ++ close(dir_fd); + if (errno == ENOTDIR) + { + error_msg("Path '%s' isn't problem directory", dump_dir_name); +@@ -102,7 +110,16 @@ static int delete_path(const char *dump_dir_name) + return 403; /* Forbidden */ + } + +- delete_dump_dir(dump_dir_name); ++ struct dump_dir *dd = dd_fdopendir(dir_fd, dump_dir_name, /*flags:*/ 0); ++ if (dd) ++ { ++ if (dd_delete(dd) != 0) ++ { ++ error_msg("Failed to delete problem directory '%s'", dump_dir_name); ++ dd_close(dd); ++ return 400; ++ } ++ } + + return 0; /* success */ + } +-- +1.8.3.1 + diff --git a/SOURCES/0115-daemon-allow-only-root-user-to-trigger-the-post-crea.patch b/SOURCES/0115-daemon-allow-only-root-user-to-trigger-the-post-crea.patch new file mode 100644 index 0000000..f3dc626 --- /dev/null +++ b/SOURCES/0115-daemon-allow-only-root-user-to-trigger-the-post-crea.patch @@ -0,0 +1,65 @@ +From 3287aa12eb205cff95cdd00d6d6c5c9a4f8f0eca Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 6 May 2015 14:39:44 +0200 +Subject: [ABRT PATCH] daemon: allow only root user to trigger the post-create + +There is no reason to allow non-root users to trigger this +functionality. Regular users can create abrt problems only through +abrtd or abrt-dbus and both triggers the post-create. + +Other hooks run under root user (CCpp, Koops, VMCore, Xorg). + +Related: #1212861 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-server.c | 19 ++++++++----------- + 1 file changed, 8 insertions(+), 11 deletions(-) + +diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c +index 130c24a..d3fa1b5 100644 +--- a/src/daemon/abrt-server.c ++++ b/src/daemon/abrt-server.c +@@ -178,16 +178,6 @@ static int run_post_create(const char *dirname) + return 403; + } + } +- else if (!dump_dir_accessible_by_uid(dirname, client_uid)) +- { +- if (errno == ENOTDIR) +- { +- error_msg("Path '%s' isn't problem directory", dirname); +- return 404; /* Not Found */ +- } +- error_msg("Problem directory '%s' can't be accessed by user with uid %ld", dirname, (long)client_uid); +- return 403; /* Forbidden */ +- } + + int child_stdout_fd; + int child_pid = spawn_event_handler_child(dirname, "post-create", &child_stdout_fd); +@@ -741,14 +731,21 @@ static int perform_http_xact(void) + /* Body received, EOF was seen. Don't let alarm to interrupt after this. */ + alarm(0); + ++ int ret = 0; + if (url_type == CREATION_NOTIFICATION) + { ++ if (client_uid != 0) ++ { ++ error_msg("UID=%ld is not authorized to trigger post-create processing", (long)client_uid); ++ ret = 403; /* Forbidden */ ++ goto out; ++ } ++ + messagebuf_data[messagebuf_len] = '\0'; + return run_post_create(messagebuf_data); + } + + /* Save problem dir */ +- int ret = 0; + unsigned pid = convert_pid(problem_info); + die_if_data_is_missing(problem_info); + +-- +1.8.3.1 + diff --git a/SOURCES/0116-daemon-dbus-allow-only-root-to-create-CCpp-Koops-vmc.patch b/SOURCES/0116-daemon-dbus-allow-only-root-to-create-CCpp-Koops-vmc.patch new file mode 100644 index 0000000..24bd244 --- /dev/null +++ b/SOURCES/0116-daemon-dbus-allow-only-root-to-create-CCpp-Koops-vmc.patch @@ -0,0 +1,127 @@ +From 7417505e1d93cc95ec648b74e3c801bc67aacb9f Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 7 May 2015 11:07:12 +0200 +Subject: [ABRT PATCH] daemon, dbus: allow only root to create CCpp, Koops, + vmcore and xorg +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Florian Weimer : + This prevents users from feeding things that are not actually + coredumps and excerpts from /proc to these analyzers. + + For example, it should not be possible to trigger a rule with + “EVENT=post-create analyzer=CCpp” using NewProblem + +Related: #1212861 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-server.c | 2 +- + src/dbus/abrt-dbus.c | 10 +++++++++- + src/include/libabrt.h | 2 ++ + src/lib/hooklib.c | 24 ++++++++++++++++++++++++ + 4 files changed, 36 insertions(+), 2 deletions(-) + +diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c +index d3fa1b5..afd9fd3 100644 +--- a/src/daemon/abrt-server.c ++++ b/src/daemon/abrt-server.c +@@ -487,7 +487,7 @@ static gboolean key_value_ok(gchar *key, gchar *value) + } + } + +- return TRUE; ++ return allowed_new_user_problem_entry(client_uid, key, value); + } + + /* Handles a message received from client over socket. */ +diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c +index 6de15e9..bef95bd 100644 +--- a/src/dbus/abrt-dbus.c ++++ b/src/dbus/abrt-dbus.c +@@ -168,6 +168,7 @@ bool allowed_problem_dir(const char *dir_name) + + static char *handle_new_problem(GVariant *problem_info, uid_t caller_uid, char **error) + { ++ char *problem_id = NULL; + problem_data_t *pd = problem_data_new(); + + GVariantIter *iter; +@@ -175,6 +176,12 @@ static char *handle_new_problem(GVariant *problem_info, uid_t caller_uid, char * + gchar *key, *value; + while (g_variant_iter_loop(iter, "{ss}", &key, &value)) + { ++ if (allowed_new_user_problem_entry(caller_uid, key, value) == false) ++ { ++ *error = xasprintf("You are not allowed to create element '%s' containing '%s'", key, value); ++ goto finito; ++ } ++ + problem_data_add_text_editable(pd, key, value); + } + +@@ -189,12 +196,13 @@ static char *handle_new_problem(GVariant *problem_info, uid_t caller_uid, char * + /* At least it should generate local problem identifier UUID */ + problem_data_add_basics(pd); + +- char *problem_id = problem_data_save(pd); ++ problem_id = problem_data_save(pd); + if (problem_id) + notify_new_path(problem_id); + else if (error) + *error = xasprintf("Cannot create a new problem"); + ++finito: + problem_data_free(pd); + return problem_id; + } +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 5bf2397..3749a31 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -51,6 +51,8 @@ char *get_backtrace(const char *dump_dir_name, unsigned timeout_sec, const char + bool dir_is_in_dump_location(const char *dir_name); + #define dir_has_correct_permissions abrt_dir_has_correct_permissions + bool dir_has_correct_permissions(const char *dir_name); ++#define allowed_new_user_problem_entry abrt_allowed_new_user_problem_entry ++bool allowed_new_user_problem_entry(uid_t uid, const char *name, const char *value); + + #define g_settings_nMaxCrashReportsSize abrt_g_settings_nMaxCrashReportsSize + extern unsigned int g_settings_nMaxCrashReportsSize; +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index 4b20025..8e93663 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -483,3 +483,27 @@ bool dir_has_correct_permissions(const char *dir_name) + } + return true; + } ++ ++bool allowed_new_user_problem_entry(uid_t uid, const char *name, const char *value) ++{ ++ /* Allow root to create everything */ ++ if (uid == 0) ++ return true; ++ ++ /* Permit non-root users to create everything except: analyzer and type */ ++ if (strcmp(name, FILENAME_ANALYZER) != 0 ++ && strcmp(name, FILENAME_TYPE) != 0 ++ /* compatibility value used in abrt-server */ ++ && strcmp(name, "basename") != 0) ++ return true; ++ ++ /* Permit non-root users to create all types except: C/C++, Koops, vmcore and xorg */ ++ if (strcmp(value, "CCpp") != 0 ++ && strcmp(value, "Kerneloops") != 0 ++ && strcmp(value, "vmcore") != 0 ++ && strcmp(value, "xorg") != 0) ++ return true; ++ ++ error_msg("Only root is permitted to create element '%s' containing '%s'", name, value); ++ return false; ++} +-- +1.8.3.1 + diff --git a/SOURCES/0118-dbus-validate-parameters-of-all-calls.patch b/SOURCES/0118-dbus-validate-parameters-of-all-calls.patch new file mode 100644 index 0000000..18a3ea7 --- /dev/null +++ b/SOURCES/0118-dbus-validate-parameters-of-all-calls.patch @@ -0,0 +1,69 @@ +From 7a47f57975be0d285a2f20758e4572dca6d9cdd3 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 13 May 2015 11:10:23 +0200 +Subject: [ABRT PATCH] dbus: validate parameters of all calls + +SetElement and DeleteElement were missing check for valid dump directory +path. + +FindProblemByElementInTimeRange was not reporting invalid element names. + +Related: #1214451 + +Signed-off-by: Jakub Filak +--- + src/dbus/abrt-dbus.c | 24 ++++++++++++++++++++++++ + 1 file changed, 24 insertions(+) + +diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c +index bef95bd..f2f742b 100644 +--- a/src/dbus/abrt-dbus.c ++++ b/src/dbus/abrt-dbus.c +@@ -607,6 +607,12 @@ static void handle_method_call(GDBusConnection *connection, + + g_variant_get(parameters, "(&s&s&s)", &problem_id, &element, &value); + ++ if (!allowed_problem_dir(problem_id)) ++ { ++ return_InvalidProblemDir_error(invocation, problem_id); ++ return; ++ } ++ + if (!str_is_correct_filename(element)) + { + log_notice("'%s' is not a valid element name of '%s'", element, problem_id); +@@ -666,6 +672,12 @@ static void handle_method_call(GDBusConnection *connection, + + g_variant_get(parameters, "(&s&s)", &problem_id, &element); + ++ if (!allowed_problem_dir(problem_id)) ++ { ++ return_InvalidProblemDir_error(invocation, problem_id); ++ return; ++ } ++ + if (!str_is_correct_filename(element)) + { + log_notice("'%s' is not a valid element name of '%s'", element, problem_id); +@@ -783,6 +795,18 @@ static void handle_method_call(GDBusConnection *connection, + g_variant_get_child(parameters, 3, "x", ×tamp_to); + g_variant_get_child(parameters, 4, "b", &all); + ++ if (!str_is_correct_filename(element)) ++ { ++ log_notice("'%s' is not a valid element name", element); ++ char *error = xasprintf(_("'%s' is not a valid element name"), element); ++ g_dbus_method_invocation_return_dbus_error(invocation, ++ "org.freedesktop.problems.InvalidElement", ++ error); ++ ++ free(error); ++ return; ++ } ++ + if (all && polkit_check_authorization_dname(caller, "org.freedesktop.problems.getall") == PolkitYes) + caller_uid = 0; + +-- +1.8.3.1 + diff --git a/SOURCES/0119-ccpp-do-not-unlink-failed-and-big-user-cores.patch b/SOURCES/0119-ccpp-do-not-unlink-failed-and-big-user-cores.patch new file mode 100644 index 0000000..83c958b --- /dev/null +++ b/SOURCES/0119-ccpp-do-not-unlink-failed-and-big-user-cores.patch @@ -0,0 +1,167 @@ +From 7bd77a63f226a572946f30db3e76f23f971f46d5 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 20 May 2015 06:07:15 +0200 +Subject: [ABRT PATCH] ccpp: do not unlink failed and big user cores + +* We might end up deleting an already existing file. +* Kernel does not delete nor truncate core files. Admittedly, kernel + knows how process's memory is structured, dumps it per logical + segments and checks whether a next segment can be written. +* 'ulimit -c' does not seem to be a hard limit. Kernel wrote 8192 bytes + despite $(ulimit -c) == 6. + +Related: #1212818 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 70 +++++++++++++++++++--------------------------- + 1 file changed, 29 insertions(+), 41 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index fdd9b06..9b38ed7 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -129,8 +129,8 @@ static off_t copyfd_sparse(int src_fd, int dst_fd1, int dst_fd2, off_t size2) + size2 -= rd; + if (size2 < 0) + dst_fd2 = -1; +-//TODO: truncate to 0 or even delete the second file +-//(currently we delete the file later) ++// truncate to 0 or even delete the second file? ++// No, kernel does not delete nor truncate core files. + } + out: + +@@ -502,13 +502,20 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + + user_core_fail: + if (user_core_fd >= 0) +- { + close(user_core_fd); +- unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); +- } + return -1; + } + ++static int close_user_core(int user_core_fd, off_t core_size) ++{ ++ if (user_core_fd >= 0 && (fsync(user_core_fd) != 0 || close(user_core_fd) != 0 || core_size < 0)) ++ { ++ perror_msg("Error writing '%s' at '%s'", core_basename, user_pwd); ++ return -1; ++ } ++ return 0; ++} ++ + static bool dump_fd_info(const char *dest_filename, char *source_filename, int source_base_ofs, uid_t uid, gid_t gid) + { + FILE *fp = fopen(dest_filename, "wx"); +@@ -569,7 +576,7 @@ static int create_or_die(const char *filename) + if (dd) + dd_delete(dd); + if (user_core_fd >= 0) +- unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); ++ close(user_core_fd); + + errno = sv_errno; + perror_msg_and_die("Can't open '%s'", filename); +@@ -577,6 +584,7 @@ static int create_or_die(const char *filename) + + int main(int argc, char** argv) + { ++ int err = 1; + /* Kernel starts us with all fd's closed. + * But it's dangerous: + * fprintf(stderr) can dump messages into random fds, etc. +@@ -778,9 +786,8 @@ int main(int argc, char** argv) + error_msg_and_die("Error saving '%s'", path); + } + log("Saved core dump of pid %lu (%s) to %s (%llu bytes)", (long)pid, executable, path, (long long)core_size); +- if (proc_cwd != NULL) +- closedir(proc_cwd); +- return 0; ++ err = 0; ++ goto finito; + } + + unsigned path_len = snprintf(path, sizeof(path), "%s/ccpp-%s-%lu.new", +@@ -895,26 +902,17 @@ int main(int argc, char** argv) + * ls: cannot access core*: No such file or directory <=== BAD + */ + off_t core_size = copyfd_sparse(STDIN_FILENO, abrt_core_fd, user_core_fd, ulimit_c); ++ ++ close_user_core(user_core_fd, core_size); ++ + if (fsync(abrt_core_fd) != 0 || close(abrt_core_fd) != 0 || core_size < 0) + { + unlink(path); + dd_delete(dd); +- if (user_core_fd >= 0) +- unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); + /* copyfd_sparse logs the error including errno string, + * but it does not log file name */ + error_msg_and_die("Error writing '%s'", path); + } +- if (user_core_fd >= 0 +- /* error writing user coredump? */ +- && (fsync(user_core_fd) != 0 || close(user_core_fd) != 0 +- /* user coredump is too big? */ +- || (ulimit_c == 0 /* paranoia */ || core_size > ulimit_c) +- ) +- ) { +- /* nuke it (silently) */ +- unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); +- } + + /* Because of #1211835 and #1126850 */ + #if 0 +@@ -984,9 +982,9 @@ int main(int argc, char** argv) + } + + free(rootdir); +- if (proc_cwd != NULL) +- closedir(proc_cwd); +- return 0; ++ ++ err = 0; ++ goto finito; + } + + /* We didn't create abrt dump, but may need to create compat coredump */ +@@ -994,26 +992,16 @@ int main(int argc, char** argv) + if (user_core_fd >= 0) + { + off_t core_size = copyfd_size(STDIN_FILENO, user_core_fd, ulimit_c, COPYFD_SPARSE); +- if (fsync(user_core_fd) != 0 || close(user_core_fd) != 0 || core_size < 0) +- { +- /* perror first, otherwise unlink may trash errno */ +- perror_msg("Error writing '%s' at '%s'", core_basename, user_pwd); +- unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); +- if (proc_cwd != NULL) +- closedir(proc_cwd); +- return 1; +- } +- if (ulimit_c == 0 || core_size > ulimit_c) +- { +- unlinkat(dirfd(proc_cwd), core_basename, /*unlink file*/0); +- if (proc_cwd != NULL) +- closedir(proc_cwd); +- return 1; +- } ++ if (close_user_core(user_core_fd, core_size) != 0) ++ goto finito; ++ ++ err = 0; + log("Saved core dump of pid %lu to %s at %s (%llu bytes)", (long)pid, core_basename, user_pwd, (long long)core_size); + } + ++ finito: + if (proc_cwd != NULL) + closedir(proc_cwd); +- return 0; ++ ++ return err; + } +-- +1.8.3.1 + diff --git a/SOURCES/0120-a-a-i-d-t-a-cache-don-t-open-the-build_ids-file-as-a.patch b/SOURCES/0120-a-a-i-d-t-a-cache-don-t-open-the-build_ids-file-as-a.patch new file mode 100644 index 0000000..75d0737 --- /dev/null +++ b/SOURCES/0120-a-a-i-d-t-a-cache-don-t-open-the-build_ids-file-as-a.patch @@ -0,0 +1,82 @@ +From 3bdf6305f6a8501a692e1a98f98e0be9d3922a1d Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 20 May 2015 08:08:58 +0200 +Subject: [ABRT PATCH] a-a-i-d-t-a-cache: don't open the build_ids file as abrt + +Opening the build_ids file as abrt may lead to information disclosure. + +Related: #1216962 + +Signed-off-by: Jakub Filak +--- + .../abrt-action-install-debuginfo-to-abrt-cache.c | 30 +++++++++++++++++----- + 1 file changed, 23 insertions(+), 7 deletions(-) + +diff --git a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +index cd9ee7a..fafb0c4 100644 +--- a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c ++++ b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +@@ -72,6 +72,11 @@ int main(int argc, char **argv) + }; + const unsigned opts = parse_opts(argc, argv, program_options, program_usage_string); + ++ const gid_t egid = getegid(); ++ const gid_t rgid = getgid(); ++ const uid_t euid = geteuid(); ++ const gid_t ruid = getuid(); ++ + /* We need to open the build ids file under the caller's UID/GID to avoid + * information disclosures when reading files with changed UID. + * Unfortunately, we cannot replace STDIN with the new fd because ABRT uses +@@ -82,7 +87,20 @@ int main(int argc, char **argv) + char *build_ids_self_fd = NULL; + if (strcmp("-", build_ids) != 0) + { ++ if (setregid(egid, rgid) < 0) ++ perror_msg_and_die("setregid(egid, rgid)"); ++ ++ if (setreuid(euid, ruid) < 0) ++ perror_msg_and_die("setreuid(euid, ruid)"); ++ + const int build_ids_fd = open(build_ids, O_RDONLY); ++ ++ if (setregid(rgid, egid) < 0) ++ perror_msg_and_die("setregid(rgid, egid)"); ++ ++ if (setreuid(ruid, euid) < 0 ) ++ perror_msg_and_die("setreuid(ruid, euid)"); ++ + if (build_ids_fd < 0) + perror_msg_and_die("Failed to open file '%s'", build_ids); + +@@ -118,14 +136,12 @@ int main(int argc, char **argv) + /* Switch real user/group to effective ones. + * Otherwise yum library gets confused - gets EPERM (why??). + */ +- gid_t g = getegid(); + /* do setregid only if we have to, to not upset selinux needlessly */ +- if (g != getgid()) +- IGNORE_RESULT(setregid(g, g)); +- uid_t u = geteuid(); +- if (u != getuid()) ++ if (egid != rgid) ++ IGNORE_RESULT(setregid(egid, egid)); ++ if (euid != ruid) + { +- IGNORE_RESULT(setreuid(u, u)); ++ IGNORE_RESULT(setreuid(euid, euid)); + /* We are suid'ed! */ + /* Prevent malicious user from messing up with suid'ed process: */ + #if 1 +@@ -179,7 +195,7 @@ int main(int argc, char **argv) + // abrt-action-install-debuginfo doesn't fail when spawning + // abrt-action-trim-files + char path_env[] = "PATH=/usr/sbin:/sbin:/usr/bin:/bin:"BIN_DIR":"SBIN_DIR; +- if (u != 0) ++ if (euid != 0) + strcpy(path_env, "PATH=/usr/bin:/bin:"BIN_DIR); + putenv(path_env); + +-- +1.8.3.1 + diff --git a/SOURCES/0121-a-a-i-d-t-a-cache-fix-command-line-argument-generati.patch b/SOURCES/0121-a-a-i-d-t-a-cache-fix-command-line-argument-generati.patch new file mode 100644 index 0000000..6a04adc --- /dev/null +++ b/SOURCES/0121-a-a-i-d-t-a-cache-fix-command-line-argument-generati.patch @@ -0,0 +1,32 @@ +From ff67428ed1685b1d5b12e2893396d6acecf3a123 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 20 May 2015 15:22:58 +0200 +Subject: [ABRT PATCH] a-a-i-d-t-a-cache: fix command line argument generation + +Empty string in the list of arguments for execvp causes problems (-y +was ignored). + +Related: #1216962 + +Signed-off-by: Jakub Filak +--- + src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +index fafb0c4..81b1486 100644 +--- a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c ++++ b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +@@ -116,7 +116,8 @@ int main(int argc, char **argv) + args[i++] = EXECUTABLE; + args[i++] = "--ids"; + args[i++] = (build_ids_self_fd != NULL) ? build_ids_self_fd : "-"; +- args[i++] = verbs[g_verbose <= 3 ? g_verbose : 3]; ++ if (g_verbose > 0) ++ args[i++] = verbs[g_verbose <= 3 ? g_verbose : 3]; + if ((opts & OPT_y)) + args[i++] = "-y"; + if ((opts & OPT_e)) +-- +1.8.3.1 + diff --git a/SOURCES/0122-Do-not-use-bool-in-OPT_BOOL-macro-it-expects-int.patch b/SOURCES/0122-Do-not-use-bool-in-OPT_BOOL-macro-it-expects-int.patch new file mode 100644 index 0000000..8a73f01 --- /dev/null +++ b/SOURCES/0122-Do-not-use-bool-in-OPT_BOOL-macro-it-expects-int.patch @@ -0,0 +1,26 @@ +From 8b5ec646d59be4a52efd66a2331ee0ffbe6cd2bc Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 14 Jan 2015 11:51:59 +0100 +Subject: [PATCH] Do not use 'bool' in OPT_BOOL() macro : it expects 'int' + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-auto-reporting.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrt-auto-reporting.c b/src/daemon/abrt-auto-reporting.c +index f3b4ed0..573c1ae 100644 +--- a/src/daemon/abrt-auto-reporting.c ++++ b/src/daemon/abrt-auto-reporting.c +@@ -204,7 +204,7 @@ int main(int argc, char *argv[]) + OPT_c = 1 << 4, + }; + +- bool anonymous = false; ++ int anonymous = 0; + const char *username = NULL; + const char *password = NULL; + const char *certificate = NULL; +-- +2.4.3 + diff --git a/SOURCES/0123-abrt-auto-reporting-require-rhtsupport.conf-file-onl.patch b/SOURCES/0123-abrt-auto-reporting-require-rhtsupport.conf-file-onl.patch new file mode 100644 index 0000000..83cf061 --- /dev/null +++ b/SOURCES/0123-abrt-auto-reporting-require-rhtsupport.conf-file-onl.patch @@ -0,0 +1,589 @@ +From 42c35440205e0174af21315277dedac76fb9c8ae Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Fri, 24 Apr 2015 15:37:15 +0200 +Subject: [PATCH] abrt-auto-reporting: require rhtsupport.conf file only on + RHEL + +abrt-auto-reporting required the rhtsupport.conf on Fedora and CentOS but the conf +file do not exists in those systems. + +Resolves abrt/abrt#957 + +Signed-off-by: Matej Habrnal +--- + configure.ac | 11 +++ + doc/Makefile.am | 13 +++- + doc/abrt-auto-reporting-authenticated.txt | 106 ++++++++++++++++++++++++++++ + doc/abrt-auto-reporting-unauthenticated.txt | 71 +++++++++++++++++++ + doc/abrt-auto-reporting.txt | 106 ---------------------------- + src/daemon/abrt-auto-reporting.c | 71 ++++++++++++++----- + 6 files changed, 254 insertions(+), 124 deletions(-) + create mode 100644 doc/abrt-auto-reporting-authenticated.txt + create mode 100644 doc/abrt-auto-reporting-unauthenticated.txt + delete mode 100644 doc/abrt-auto-reporting.txt + +diff --git a/configure.ac b/configure.ac +index d95fc4a..d65bf54 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -207,6 +207,17 @@ AC_ARG_ENABLE(suggest-autoreporting, + + AM_CONDITIONAL(SUGGEST_AUTOREPORTING, test "$enable_suggest_autoreporting" = "yes") + ++# Authenticated autoreporting ++ ++AC_ARG_ENABLE(authenticated-autoreporting, ++ AS_HELP_STRING([--enable-authenticated-autoreporting], ++ [enable authenticated autoreporting]), ++ [enable_authenticated_autoreporting=$enableval], ++ [enable_authenticated_autoreporting=no] ++) ++ ++AM_CONDITIONAL(AUTHENTICATED_AUTOREPORTING, test "$enable_authenticated_autoreporting" = "yes") ++ + # Make satyr use GDB or elfutils/libunwind for unwinding? + + AC_ARG_ENABLE([native-unwinder], +diff --git a/doc/Makefile.am b/doc/Makefile.am +index 0480114..309a330 100644 +--- a/doc/Makefile.am ++++ b/doc/Makefile.am +@@ -71,6 +71,17 @@ man1_MANS = ${MAN1_TXT:%.txt=%.1} + man5_MANS = ${MAN5_TXT:%.txt=%.5} ${MAN5_PREFORMATTED} + man8_MANS = ${MAN8_TXT:%.txt=%.8} + ++MAN_SOURCE = ++MAN_SOURCE = abrt-auto-reporting-authenticated.txt ++MAN_SOURCE = abrt-auto-reporting-unauthenticated.txt ++ ++if AUTHENTICATED_AUTOREPORTING ++abrt-auto-reporting.txt: abrt-auto-reporting-authenticated.txt ++else ++abrt-auto-reporting.txt: abrt-auto-reporting-unauthenticated.txt ++endif ++ cp $< $@ ++ + %.1 %.5 %.8: %.xml + $(XMLTO_SILENT) xmlto man $< 2>&1 | sed '/Note/d' + +@@ -79,6 +90,6 @@ man8_MANS = ${MAN8_TXT:%.txt=%.8} + --conf-file ../asciidoc.conf \ + -aabrt_version=$(PACKAGE_VERSION) -o $@ $< + +-EXTRA_DIST = $(MAN1_TXT) $(MAN5_TXT) $(MAN8_TXT) $(MAN5_PREFORMATTED) ++EXTRA_DIST = $(MAN1_TXT) $(MAN5_TXT) $(MAN8_TXT) $(MAN5_PREFORMATTED) $(MAN_SOURCE) + + CLEANFILES = ${MAN1_TXT:%.txt=%.1} ${MAN5_TXT:%.txt=%.5} ${MAN8_TXT:%.txt=%.8} +diff --git a/doc/abrt-auto-reporting-authenticated.txt b/doc/abrt-auto-reporting-authenticated.txt +new file mode 100644 +index 0000000..2a27945 +--- /dev/null ++++ b/doc/abrt-auto-reporting-authenticated.txt +@@ -0,0 +1,106 @@ ++abrt-auto-reporting(1) ++====================== ++ ++NAME ++---- ++abrt-auto-reporting - Get or modify the auto reporting option values ++ ++SYNOPSIS ++-------- ++'abrt-auto-reporting' [-v] [ enabled | yes | 1 | on | disabled | no | 0 | off ] ++ [ [--anonymous] | ++ [--username USERNAME [--password PASSWORD] ] | ++ [--certificate SOURCE] ] ++ ++DESCRIPTION ++----------- ++Reads the configuration from abrt.conf and saves the changes to the same file. ++ ++The changes will take effect immediately without necessity to restart any ABRT ++process and will be persistent. ++ ++'disabled':: ++ User have to report the detect problems manually ++ ++'enabled':: ++ ABRT uploads an uReport which was generated for a detected problem ++ immediately after the detection phase. ++ ++Reads and saves the authentication configuration options in ++/etc/libreport/plugins/ureport.conf and /etc/libreport/plugins/rhtsupport.conf ++ ++uReport description ++~~~~~~~~~~~~~~~~~~~ ++ABRT supports uReports for four types of crashes: crashes of C/C++ programs ++that result in a core dump, uncaught Python exceptions, uncaught Java ++exceptions and kernel oopses. ++ ++Each uReport generally contains a stack trace, or multiple stack traces in the ++case of multi-threaded C/C++ and Java programs. The stack trace only describes ++the call stack of the program at the time of the crash and does not contain ++contents of any variables. ++ ++Every uReport also contains identification of the operating system, versions of ++the RPM packages involved in the crash, and whether the program ran under a ++root user. ++ ++There are also items specific to each crash type: ++ ++C/C++ crashes:: ++ these are path to the executable and signal delivered to the program, ++ ++Python exceptions:: ++ there is the type of the exception (without the error message, which may ++ contain sensitive data), ++ ++for kernel oopses:: ++ these are list of loaded kernel modules, list of taint flags, and full text ++ of the kernel oops. ++ ++The authenticated uReports also contains *hostname* and *machineid* to enable a ++server side filtering at https://access.redhat.com/. ++ ++The authenticated uReports have the benefit of rich server replies which may ++include a solution for the submitted crash. The authentication is done using ++either Red Hat Subscription Certificates or Red Hat Customer Portal ++credentials. ++ ++'Warning': ++The full text of a kernel oops might contain information like the ++identification of the host hardware type. You should disable the autoreporting ++feature if you do not want to share this information with Red Hat. ++ ++ ++OPTIONS ++------- ++-v, --verbose:: ++ Be more verbose. Can be given multiple times. ++ ++-a, --anonymous:: ++ Turns the authentication off by clearing both 'SSLClientAuth' and 'HTTPAuth' ++ configuration options in /etc/libreport/plugins/ureport.conf ++ ++-u, --username USERNAME:: ++ Turns HTTP Authentication on by setting 'HTTPAuth' configuration option to ++ *rhts-credentials* in /etc/libreport/plugins/ureport.conf and storing ++ USERNAME and PASSWORD in /etc/libreport/plugins/rhtsupport.conf ++ Also turns the SSL Client Authentication off, because these methods cannot ++ be used together. ++ ++-p, --password PASSWORD:: ++ Password for HTTP Authentication. If not provided, a prompt asking for it ++ will be issued. ++ ++-c, --certificate SOURCE:: ++ Turns SSL Client Authentication on by setting 'SSLClientAuth' configuration ++ option to SOURCE in /etc/libreport/plugins/ureport.conf. ++ Also turns the HTTP Authentication off, because these methods cannot ++ be used together. ++ ++SEE ALSO ++-------- ++abrt.conf(5), ureport.conf(5), rhtsupport.conf(5) ++ ++AUTHORS ++------- ++* ABRT team +diff --git a/doc/abrt-auto-reporting-unauthenticated.txt b/doc/abrt-auto-reporting-unauthenticated.txt +new file mode 100644 +index 0000000..320c803 +--- /dev/null ++++ b/doc/abrt-auto-reporting-unauthenticated.txt +@@ -0,0 +1,71 @@ ++abrt-auto-reporting(1) ++====================== ++ ++NAME ++---- ++abrt-auto-reporting - Get or modify the auto reporting option values ++ ++SYNOPSIS ++-------- ++'abrt-auto-reporting' [-v] [ enabled | yes | 1 | on | disabled | no | 0 | off ] ++ ++DESCRIPTION ++----------- ++Reads the configuration from abrt.conf and saves the changes to the same file. ++ ++The changes will take effect immediately without necessity to restart any ABRT ++process and will be persistent. ++ ++'disabled':: ++ User have to report the detect problems manually ++ ++'enabled':: ++ ABRT uploads an uReport which was generated for a detected problem ++ immediately after the detection phase. ++ ++uReport description ++~~~~~~~~~~~~~~~~~~~ ++ABRT supports uReports for four types of crashes: crashes of C/C++ programs ++that result in a core dump, uncaught Python exceptions, uncaught Java ++exceptions and kernel oopses. ++ ++Each uReport generally contains a stack trace, or multiple stack traces in the ++case of multi-threaded C/C++ and Java programs. The stack trace only describes ++the call stack of the program at the time of the crash and does not contain ++contents of any variables. ++ ++Every uReport also contains identification of the operating system, versions of ++the RPM packages involved in the crash, and whether the program ran under a ++root user. ++ ++There are also items specific to each crash type: ++ ++C/C++ crashes:: ++ these are path to the executable and signal delivered to the program, ++ ++Python exceptions:: ++ there is the type of the exception (without the error message, which may ++ contain sensitive data), ++ ++for kernel oopses:: ++ these are list of loaded kernel modules, list of taint flags, and full text ++ of the kernel oops. ++ ++'Warning': ++The full text of a kernel oops might contain information like the ++identification of the host hardware type. You should disable the autoreporting ++feature if you do not want to share this information with Red Hat. ++ ++ ++OPTIONS ++------- ++-v, --verbose:: ++ Be more verbose. Can be given multiple times. ++ ++SEE ALSO ++-------- ++abrt.conf(5) ++ ++AUTHORS ++------- ++* ABRT team +diff --git a/doc/abrt-auto-reporting.txt b/doc/abrt-auto-reporting.txt +deleted file mode 100644 +index 2a27945..0000000 +--- a/doc/abrt-auto-reporting.txt ++++ /dev/null +@@ -1,106 +0,0 @@ +-abrt-auto-reporting(1) +-====================== +- +-NAME +----- +-abrt-auto-reporting - Get or modify the auto reporting option values +- +-SYNOPSIS +--------- +-'abrt-auto-reporting' [-v] [ enabled | yes | 1 | on | disabled | no | 0 | off ] +- [ [--anonymous] | +- [--username USERNAME [--password PASSWORD] ] | +- [--certificate SOURCE] ] +- +-DESCRIPTION +------------ +-Reads the configuration from abrt.conf and saves the changes to the same file. +- +-The changes will take effect immediately without necessity to restart any ABRT +-process and will be persistent. +- +-'disabled':: +- User have to report the detect problems manually +- +-'enabled':: +- ABRT uploads an uReport which was generated for a detected problem +- immediately after the detection phase. +- +-Reads and saves the authentication configuration options in +-/etc/libreport/plugins/ureport.conf and /etc/libreport/plugins/rhtsupport.conf +- +-uReport description +-~~~~~~~~~~~~~~~~~~~ +-ABRT supports uReports for four types of crashes: crashes of C/C++ programs +-that result in a core dump, uncaught Python exceptions, uncaught Java +-exceptions and kernel oopses. +- +-Each uReport generally contains a stack trace, or multiple stack traces in the +-case of multi-threaded C/C++ and Java programs. The stack trace only describes +-the call stack of the program at the time of the crash and does not contain +-contents of any variables. +- +-Every uReport also contains identification of the operating system, versions of +-the RPM packages involved in the crash, and whether the program ran under a +-root user. +- +-There are also items specific to each crash type: +- +-C/C++ crashes:: +- these are path to the executable and signal delivered to the program, +- +-Python exceptions:: +- there is the type of the exception (without the error message, which may +- contain sensitive data), +- +-for kernel oopses:: +- these are list of loaded kernel modules, list of taint flags, and full text +- of the kernel oops. +- +-The authenticated uReports also contains *hostname* and *machineid* to enable a +-server side filtering at https://access.redhat.com/. +- +-The authenticated uReports have the benefit of rich server replies which may +-include a solution for the submitted crash. The authentication is done using +-either Red Hat Subscription Certificates or Red Hat Customer Portal +-credentials. +- +-'Warning': +-The full text of a kernel oops might contain information like the +-identification of the host hardware type. You should disable the autoreporting +-feature if you do not want to share this information with Red Hat. +- +- +-OPTIONS +-------- +--v, --verbose:: +- Be more verbose. Can be given multiple times. +- +--a, --anonymous:: +- Turns the authentication off by clearing both 'SSLClientAuth' and 'HTTPAuth' +- configuration options in /etc/libreport/plugins/ureport.conf +- +--u, --username USERNAME:: +- Turns HTTP Authentication on by setting 'HTTPAuth' configuration option to +- *rhts-credentials* in /etc/libreport/plugins/ureport.conf and storing +- USERNAME and PASSWORD in /etc/libreport/plugins/rhtsupport.conf +- Also turns the SSL Client Authentication off, because these methods cannot +- be used together. +- +--p, --password PASSWORD:: +- Password for HTTP Authentication. If not provided, a prompt asking for it +- will be issued. +- +--c, --certificate SOURCE:: +- Turns SSL Client Authentication on by setting 'SSLClientAuth' configuration +- option to SOURCE in /etc/libreport/plugins/ureport.conf. +- Also turns the HTTP Authentication off, because these methods cannot +- be used together. +- +-SEE ALSO +--------- +-abrt.conf(5), ureport.conf(5), rhtsupport.conf(5) +- +-AUTHORS +-------- +-* ABRT team +diff --git a/src/daemon/abrt-auto-reporting.c b/src/daemon/abrt-auto-reporting.c +index 573c1ae..46f8923 100644 +--- a/src/daemon/abrt-auto-reporting.c ++++ b/src/daemon/abrt-auto-reporting.c +@@ -66,6 +66,7 @@ set_abrt_reporting(map_string_t *conf, const char *opt_value) + return 1; + } + ++#if AUTHENTICATED_AUTOREPORTING != 0 + static int + set_ureport_http_auth(map_string_t *conf, const char *opt_value) + { +@@ -136,6 +137,7 @@ set_rhts_credentials(map_string_t *conf, const char *username, const char *passw + /* No changes needed -> success */ + return 1; + } ++#endif + + static const char * + get_abrt_reporting(map_string_t *conf) +@@ -145,6 +147,7 @@ get_abrt_reporting(map_string_t *conf) + return REPORTING_STATES[index][0]; + } + ++#if AUTHENTICATED_AUTOREPORTING != 0 + static const char * + get_ureport_http_auth(map_string_t *conf) + { +@@ -156,6 +159,7 @@ get_ureport_client_auth(map_string_t *conf) + { + return get_map_string_item_or_NULL(conf, UREPORT_CLIENT_AUTH_OPTION); + } ++#endif + + int main(int argc, char *argv[]) + { +@@ -173,57 +177,78 @@ int main(int argc, char *argv[]) + textdomain(PACKAGE); + #endif + ++#define PROGRAM_USAGE_MIDDLE_PART \ ++ "\n" \ ++ "Get or modify a value of the auto-reporting option. The changes will take\n" \ ++ "effect immediately and will be persistent.\n" \ ++ "\n" \ ++ ""STATE_MANUAL":\n" \ ++ "User have to report the detect problems manually\n" \ ++ "\n" \ ++ ""STATE_AUTO":\n" \ ++ "ABRT uploads an uReport which was generated for a detected problem\n" \ ++ "immediately after the detection phase. uReport generally contains a stack\n" \ ++ "trace which only describes the call stack of the program at the time of the\n" \ ++ "crash and does not contain contents of any variables. Every uReport also\n" \ ++ "contains identification of the operating system, versions of the RPM packages\n" \ ++ "involved in the crash, and whether the program ran under a root user.\n" \ ++ "\n" ++ + abrt_init(argv); ++#if AUTHENTICATED_AUTOREPORTING != 0 + const char *program_usage_string = _( + "& [ "STATE_MANUAL" | "STATE_AUTO" | yes | no | 1 | 0 ] \\\n" + " [[--anonymous] | [--username USERNAME [--password PASSWORD]] | [--certificate SOURCE]]\n" +- "\n" +- "Get or modify a value of the auto-reporting option. The changes will take\n" +- "effect immediately and will be persistent.\n" +- "\n" +- ""STATE_MANUAL":\n" +- "User have to report the detect problems manually\n" +- "\n" +- ""STATE_AUTO":\n" +- "ABRT uploads an uReport which was generated for a detected problem\n" +- "immediately after the detection phase. uReport generally contains a stack\n" +- "trace which only describes the call stack of the program at the time of the\n" +- "crash and does not contain contents of any variables. Every uReport also\n" +- "contains identification of the operating system, versions of the RPM packages\n" +- "involved in the crash, and whether the program ran under a root user.\n" +- "\n" ++ PROGRAM_USAGE_MIDDLE_PART + "See abrt-auto-reporting(1), reporter-ureport(1) and reporter-rhtsupport(1)\n" + "for more details.\n" + ); ++#else ++ const char *program_usage_string = _( ++ "& [ "STATE_MANUAL" | "STATE_AUTO" | yes | no | 1 | 0 ]\n" ++ PROGRAM_USAGE_MIDDLE_PART ++ "See abrt-auto-reporting(1) and reporter-ureport(1) for more details.\n" ++ ); ++#endif + + enum { + OPT_v = 1 << 0, ++#if AUTHENTICATED_AUTOREPORTING != 0 + OPT_a = 1 << 1, + OPT_u = 1 << 2, + OPT_p = 1 << 3, + OPT_c = 1 << 4, ++#endif + }; + ++#if AUTHENTICATED_AUTOREPORTING != 0 + int anonymous = 0; + const char *username = NULL; + const char *password = NULL; + const char *certificate = NULL; ++#endif + + /* Keep enum above and order of options below in sync! */ + struct options program_options[] = { + OPT__VERBOSE(&g_verbose), ++#if AUTHENTICATED_AUTOREPORTING != 0 + OPT_BOOL ( 'a', "anonymous", &anonymous, _("Turns the authentication off")), + OPT_STRING( 'u', "username", &username, "USERNAME", _("Red Hat Support user name")), + OPT_STRING( 'p', "password", &password, "PASSWORD", _("Red Hat Support password, if not given, a prompt for it will be issued")), + OPT_STRING( 'c', "certificate", &certificate, "SOURCE", _("uReport SSL certificate paths or certificate type")), ++#endif + OPT_END() + }; + +- const unsigned opts = parse_opts(argc, argv, program_options, program_usage_string); ++#if AUTHENTICATED_AUTOREPORTING != 0 ++ const unsigned opts = ++#endif ++ parse_opts(argc, argv, program_options, program_usage_string); + + argv += optind; + argc -= optind; + ++#if AUTHENTICATED_AUTOREPORTING != 0 + if ((opts & OPT_p) && !(opts & OPT_u)) + { + error_msg(_("You also need to specify --username for --password")); +@@ -248,6 +273,7 @@ int main(int argc, char *argv[]) + show_usage_and_die(program_usage_string, program_options); + } + ++#endif + if (argc > 1) + { + error_msg(_("Invalid number of arguments")); +@@ -277,20 +303,25 @@ int main(int argc, char *argv[]) + int exit_code = EXIT_FAILURE; + + map_string_t *conf = new_map_string(); ++#if AUTHENTICATED_AUTOREPORTING != 0 + map_string_t *rhts_conf = new_map_string(); + map_string_t *rhts_conf_bck = NULL; ++#endif + map_string_t *ureport_conf = new_map_string(); + map_string_t *ureport_conf_bck = NULL; + + if (!load_abrt_conf_file(CONF_NAME, conf)) + goto finito; + ++#if AUTHENTICATED_AUTOREPORTING != 0 + if (!load_plugin_conf_file(RHTS_NAME, rhts_conf, false)) + goto finito; ++#endif + + if (!load_plugin_conf_file(UREPORT_NAME, ureport_conf, false)) + goto finito; + ++#if AUTHENTICATED_AUTOREPORTING != 0 + if ((opts & OPT_a)) + { + ureport_conf_bck = clone_map_string(ureport_conf); +@@ -336,11 +367,13 @@ int main(int argc, char *argv[]) + goto finito; + } + ++#endif + if (argc == 0) + { + printf("%s", get_abrt_reporting(conf)); + exit_code = EXIT_SUCCESS; + ++#if AUTHENTICATED_AUTOREPORTING != 0 + if (g_verbose >= 1) + { + const char *tmp = get_ureport_http_auth(ureport_conf); +@@ -352,7 +385,7 @@ int main(int argc, char *argv[]) + else + printf(" %s", _("anonymous auto reporting")); + } +- ++#endif + putchar('\n'); + + goto finito; +@@ -371,16 +404,20 @@ int main(int argc, char *argv[]) + if (ureport_conf_bck != NULL) + save_plugin_conf_file(UREPORT_NAME, ureport_conf_bck); + ++#if AUTHENTICATED_AUTOREPORTING != 0 + if (rhts_conf_bck != NULL) + save_plugin_conf_file(RHTS_NAME, rhts_conf_bck); ++#endif + } + + + finito: + free_map_string(ureport_conf); + free_map_string(ureport_conf_bck); ++#if AUTHENTICATED_AUTOREPORTING != 0 + free_map_string(rhts_conf); + free_map_string(rhts_conf_bck); ++#endif + free_map_string(conf); + return exit_code; + } +-- +2.4.3 + diff --git a/SOURCES/0126-doc-fix-in-Makefile.patch b/SOURCES/0126-doc-fix-in-Makefile.patch new file mode 100644 index 0000000..b1579bb --- /dev/null +++ b/SOURCES/0126-doc-fix-in-Makefile.patch @@ -0,0 +1,31 @@ +From d90593f43f30a291337e2ad1eb2790e981d8028a Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Fri, 29 May 2015 13:37:11 +0200 +Subject: [PATCH] doc: fix in Makefile + +There was forgotten '+' when the list of manpages (related to +'abrt-auto-reporting') was created. + +Signed-off-by: Matej Habrnal +--- + doc/Makefile.am | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/doc/Makefile.am b/doc/Makefile.am +index 309a330..8aac85e 100644 +--- a/doc/Makefile.am ++++ b/doc/Makefile.am +@@ -72,8 +72,8 @@ man5_MANS = ${MAN5_TXT:%.txt=%.5} ${MAN5_PREFORMATTED} + man8_MANS = ${MAN8_TXT:%.txt=%.8} + + MAN_SOURCE = +-MAN_SOURCE = abrt-auto-reporting-authenticated.txt +-MAN_SOURCE = abrt-auto-reporting-unauthenticated.txt ++MAN_SOURCE += abrt-auto-reporting-authenticated.txt ++MAN_SOURCE += abrt-auto-reporting-unauthenticated.txt + + if AUTHENTICATED_AUTOREPORTING + abrt-auto-reporting.txt: abrt-auto-reporting-authenticated.txt +-- +2.4.3 + diff --git a/SOURCES/0127-sosreport-add-processor-information-to-sosreport.patch b/SOURCES/0127-sosreport-add-processor-information-to-sosreport.patch new file mode 100644 index 0000000..aaa31ba --- /dev/null +++ b/SOURCES/0127-sosreport-add-processor-information-to-sosreport.patch @@ -0,0 +1,27 @@ +From 472d45eaaae90263aa26172d4f1ec671b1d5f9c5 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 28 May 2015 11:40:08 +0200 +Subject: [PATCH] sosreport: add processor information to sosreport + +Related to rhbz#1221118 + +Signed-off-by: Matej Habrnal +--- + src/daemon/abrt_event.conf | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/daemon/abrt_event.conf b/src/daemon/abrt_event.conf +index 54e1b3f..ec41653 100644 +--- a/src/daemon/abrt_event.conf ++++ b/src/daemon/abrt_event.conf +@@ -76,6 +76,7 @@ EVENT=post-create + --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 \ ++ --only=processor \ + >sosreport.log 2>&1 \ + && { + rm sosreport.log +-- +2.4.3 + diff --git a/SOURCES/0128-dbus-add-a-new-method-GetProblemData.patch b/SOURCES/0128-dbus-add-a-new-method-GetProblemData.patch new file mode 100644 index 0000000..9c16086 --- /dev/null +++ b/SOURCES/0128-dbus-add-a-new-method-GetProblemData.patch @@ -0,0 +1,117 @@ +From 5f765f63193a0f13af2b7c31b466f0f207e0b4e0 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 16 Mar 2015 08:58:58 +0100 +Subject: [PATCH] dbus: add a new method GetProblemData + +The method returns serialized problem_data_t for a given problem id. + +The method is needed by cockpit-abrt which is supposed to have a page +showing comprehensive problem details. + +Related: #1224984 + +Signed-off-by: Jakub Filak +--- + src/dbus/abrt-dbus.c | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++-- + 1 file changed, 70 insertions(+), 2 deletions(-) + +diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c +index f2f742b..335c234 100644 +--- a/src/dbus/abrt-dbus.c ++++ b/src/dbus/abrt-dbus.c +@@ -49,6 +49,10 @@ static const gchar introspection_xml[] = + " " + " " + " " ++ " " ++ " " ++ " " ++ " " + " " + " " + " " +@@ -599,6 +603,68 @@ static void handle_method_call(GDBusConnection *connection, + return; + } + ++ if (g_strcmp0(method_name, "GetProblemData") == 0) ++ { ++ /* Parameter tuple is (s) */ ++ const char *problem_id; ++ ++ g_variant_get(parameters, "(&s)", &problem_id); ++ ++ int ddstat = dump_dir_stat_for_uid(problem_id, caller_uid); ++ if ((ddstat & DD_STAT_ACCESSIBLE_BY_UID) == 0 && ++ polkit_check_authorization_dname(caller, "org.freedesktop.problems.getall") != PolkitYes) ++ { ++ log_notice("Unauthorized access : '%s'", problem_id); ++ g_dbus_method_invocation_return_dbus_error(invocation, ++ "org.freedesktop.problems.AuthFailure", ++ _("Not Authorized")); ++ return; ++ } ++ ++ struct dump_dir *dd = dd_opendir(problem_id, DD_OPEN_READONLY); ++ if (dd == NULL) ++ { ++ log_notice("Can't access the problem '%s' for reading", problem_id); ++ g_dbus_method_invocation_return_dbus_error(invocation, ++ "org.freedesktop.problems.Failure", ++ _("Can't access the problem for reading")); ++ return; ++ } ++ ++ problem_data_t *pd = create_problem_data_from_dump_dir(dd); ++ dd_close(dd); ++ ++ GVariantBuilder *response_builder = g_variant_builder_new(G_VARIANT_TYPE_ARRAY); ++ ++ GHashTableIter pd_iter; ++ char *element_name; ++ struct problem_item *element_info; ++ g_hash_table_iter_init(&pd_iter, pd); ++ while (g_hash_table_iter_next(&pd_iter, (void**)&element_name, (void**)&element_info)) ++ { ++ unsigned long size = 0; ++ if (problem_item_get_size(element_info, &size) != 0) ++ { ++ log_notice("Can't get stat of : '%s'", element_info->content); ++ continue; ++ } ++ ++ g_variant_builder_add(response_builder, "{s(its)}", ++ element_name, ++ element_info->flags, ++ size, ++ element_info->content); ++ } ++ ++ GVariant *response = g_variant_new("(a{s(its)})", response_builder); ++ g_variant_builder_unref(response_builder); ++ ++ problem_data_free(pd); ++ ++ g_dbus_method_invocation_return_value(invocation, response); ++ return; ++ } ++ + if (g_strcmp0(method_name, "SetElement") == 0) + { + const char *problem_id; +@@ -923,8 +989,10 @@ int main(int argc, char *argv[]) + * the introspection data structures - so we just build + * them from XML. + */ +- introspection_data = g_dbus_node_info_new_for_xml(introspection_xml, NULL); +- g_assert(introspection_data != NULL); ++ GError *err = NULL; ++ introspection_data = g_dbus_node_info_new_for_xml(introspection_xml, &err); ++ if (err != NULL) ++ error_msg_and_die("Invalid D-Bus interface: %s", err->message); + + owner_id = g_bus_own_name(G_BUS_TYPE_SYSTEM, + ABRT_DBUS_NAME, +-- +2.4.3 + diff --git a/SOURCES/0129-libabrt-add-new-function-fetching-full-problem-data-.patch b/SOURCES/0129-libabrt-add-new-function-fetching-full-problem-data-.patch new file mode 100644 index 0000000..a0d8c96 --- /dev/null +++ b/SOURCES/0129-libabrt-add-new-function-fetching-full-problem-data-.patch @@ -0,0 +1,90 @@ +From 10bc280ed5fe1de3cca8dc9d61cd364de4a93807 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 24 Mar 2015 19:03:52 +0100 +Subject: [PATCH] libabrt: add new function fetching full problem data over + DBus + +This function is required because users may not have direct file system +access to the problem data. + +Related: #1224984 + +Signed-off-by: Jakub Filak +--- + src/include/libabrt.h | 7 +++++++ + src/lib/problem_api_dbus.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ + 2 files changed, 51 insertions(+) + +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 3749a31..6a51c80 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -156,6 +156,13 @@ int delete_problem_dirs_over_dbus(const GList *problem_dir_paths); + problem_data_t *get_problem_data_dbus(const char *problem_dir_path); + + /** ++ @brief Fetches full problem data for specified problem id ++ ++ @return problem_data_t or ERR_PTR on failure ++*/ ++problem_data_t *get_full_problem_data_over_dbus(const char *problem_dir_path); ++ ++/** + @brief Fetches all problems from problem database + + @param authorize If set to true will try to fetch even problems owned by other users (will require root authorization over policy kit) +diff --git a/src/lib/problem_api_dbus.c b/src/lib/problem_api_dbus.c +index 2d77898..549175c 100644 +--- a/src/lib/problem_api_dbus.c ++++ b/src/lib/problem_api_dbus.c +@@ -183,3 +183,47 @@ GList *get_problems_over_dbus(bool authorize) + + return list; + } ++ ++problem_data_t *get_full_problem_data_over_dbus(const char *problem_dir_path) ++{ ++ INITIALIZE_LIBABRT(); ++ ++ GDBusProxy *proxy = get_dbus_proxy(); ++ if (!proxy) ++ return ERR_PTR; ++ ++ GError *error = NULL; ++ GVariant *result = g_dbus_proxy_call_sync(proxy, ++ "GetProblemData", ++ g_variant_new("(s)", problem_dir_path), ++ G_DBUS_CALL_FLAGS_NONE, ++ -1, ++ NULL, ++ &error); ++ ++ if (error) ++ { ++ error_msg(_("Can't get problem data from abrt-dbus: %s"), error->message); ++ g_error_free(error); ++ return ERR_PTR; ++ } ++ ++ GVariantIter *iter = NULL; ++ g_variant_get(result, "(a{s(its)})", &iter); ++ ++ gchar *name = NULL; ++ gint flags; ++ gulong size; ++ gchar *value = NULL; ++ ++ problem_data_t *pd = problem_data_new(); ++ while (g_variant_iter_loop(iter, "{&s(it&s)}", &name, &flags, &size, &value)) ++ problem_data_add_ext(pd, name, value, flags, size); ++ ++ problem_data_add(pd, CD_DUMPDIR, problem_dir_path, ++ CD_FLAG_TXT + CD_FLAG_ISNOTEDITABLE + CD_FLAG_LIST); ++ ++ g_variant_unref(result); ++ ++ return pd; ++} +-- +2.4.3 + diff --git a/SOURCES/0130-dbus-add-new-method-to-test-existence-of-an-element.patch b/SOURCES/0130-dbus-add-new-method-to-test-existence-of-an-element.patch new file mode 100644 index 0000000..0c13851 --- /dev/null +++ b/SOURCES/0130-dbus-add-new-method-to-test-existence-of-an-element.patch @@ -0,0 +1,127 @@ +From 736efc6b1ba8e7aabba96b5dc726aad61c2781ba Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 24 Mar 2015 20:48:33 +0100 +Subject: [PATCH] dbus: add new method to test existence of an element + +It is sometimes necessary to check if some elemen exist, so this method +should be fast as much as it is possible to do this task over DBus. + +I was thinking about calling the GetInfo method with a single element +but I refused this idea as it is inherently overcomplicated and error +prone. + +Related: #1224984 + +Signed-off-by: Jakub Filak + +Conflicts: + doc/problems-service/org.freedesktop.Problems.xml.in +--- + .../org.freedesktop.Problems.xml.in | 28 ++++++++++++++ + src/dbus/abrt-dbus.c | 44 ++++++++++++++++++++++ + 2 files changed, 72 insertions(+) + +diff --git a/doc/problems-service/org.freedesktop.Problems.xml.in b/doc/problems-service/org.freedesktop.Problems.xml.in +index 705b286..2bf8c32 100644 +--- a/doc/problems-service/org.freedesktop.Problems.xml.in ++++ b/doc/problems-service/org.freedesktop.Problems.xml.in +@@ -253,6 +253,34 @@ for prblmid in problems.GetProblems(): + + + ++ ++ Checks whether the element exists. ++ ++ ++ An identifier of problem. ++ ++ ++ ++ A name of checked element. ++ ++ ++ ++ True if the element exists; otherwise false. ++ ++ ++ ++ " ++ Returns problem's data. ++ ++ ++ An identifier of problem. ++ ++ ++ ++ A dictionary where keys are element names and values are triplets (element libreport flags, element size, element contents). ++ ++ ++ + + Assures ownership of a specified problem for the caller. + +diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c +index 335c234..173cec4 100644 +--- a/src/dbus/abrt-dbus.c ++++ b/src/dbus/abrt-dbus.c +@@ -49,6 +49,11 @@ static const gchar introspection_xml[] = + " " + " " + " " ++ " " ++ " " ++ " " ++ " " ++ " " + " " + " " + " " +@@ -781,6 +786,45 @@ static void handle_method_call(GDBusConnection *connection, + return; + } + ++ if (g_strcmp0(method_name, "TestElementExists") == 0) ++ { ++ const char *problem_id; ++ const char *element; ++ ++ g_variant_get(parameters, "(&s&s)", &problem_id, &element); ++ ++ ++ struct dump_dir *dd = dd_opendir(problem_id, DD_OPEN_READONLY); ++ if (!dd) ++ { ++ log_notice("Can't access the problem '%s'", problem_id); ++ g_dbus_method_invocation_return_dbus_error(invocation, ++ "org.freedesktop.problems.Failure", ++ _("Can't access the problem")); ++ return; ++ } ++ ++ int ddstat = dump_dir_stat_for_uid(problem_id, caller_uid); ++ if ((ddstat & DD_STAT_ACCESSIBLE_BY_UID) == 0 && ++ polkit_check_authorization_dname(caller, "org.freedesktop.problems.getall") != PolkitYes) ++ { ++ dd_close(dd); ++ log_notice("Unauthorized access : '%s'", problem_id); ++ g_dbus_method_invocation_return_dbus_error(invocation, ++ "org.freedesktop.problems.AuthFailure", ++ _("Not Authorized")); ++ return; ++ } ++ ++ int ret = dd_exist(dd, element); ++ dd_close(dd); ++ ++ GVariant *response = g_variant_new("(b)", ret); ++ g_dbus_method_invocation_return_value(invocation, response); ++ ++ return; ++ } ++ + if (g_strcmp0(method_name, "DeleteProblem") == 0) + { + /* Dbus parameters are always tuples. +-- +2.4.3 + diff --git a/SOURCES/0131-libabrt-add-wrappers-TestElemeExists-and-GetInfo-for.patch b/SOURCES/0131-libabrt-add-wrappers-TestElemeExists-and-GetInfo-for.patch new file mode 100644 index 0000000..7793b5a --- /dev/null +++ b/SOURCES/0131-libabrt-add-wrappers-TestElemeExists-and-GetInfo-for.patch @@ -0,0 +1,131 @@ +From fcdd55f0dd8fb7ffbf1bfaf3f701a0ffa005bf00 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 24 Mar 2015 20:54:40 +0100 +Subject: [PATCH] libabrt: add wrappers TestElemeExists and GetInfo for one + element + +To conveniently use the DBus methods. + +Related: #1224984 + +Signed-off-by: Jakub Filak +--- + src/include/libabrt.h | 18 +++++++++++ + src/lib/problem_api_dbus.c | 75 ++++++++++++++++++++++++++++++++++++++++++++++ + 2 files changed, 93 insertions(+) + +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 6a51c80..5d74aa3 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -140,6 +140,24 @@ void koops_print_suspicious_strings_filtered(const regex_t **filterout); + int chown_dir_over_dbus(const char *problem_dir_path); + + /** ++ @brief Checks whether the given element name exists ++ ++ Might require authorization ++ ++ @return Positive number if such an element exist, 0 if doesn't and negative number if an error occurs. ++ */ ++int test_exist_over_dbus(const char *problem_id, const char *element_name); ++ ++/** ++ @ Returns value of the given element name ++ ++ Might require authorization ++ ++ @return malloced string or NULL if no such an element exists; ERR_PTR in case of any error. ++ */ ++char *load_text_over_dbus(const char *problem_id, const char *element_name); ++ ++/** + @brief Delets multiple problems specified by their id (as returned from problem_data_save) + + @param problem_dir_paths List of problem ids +diff --git a/src/lib/problem_api_dbus.c b/src/lib/problem_api_dbus.c +index 549175c..5148932 100644 +--- a/src/lib/problem_api_dbus.c ++++ b/src/lib/problem_api_dbus.c +@@ -227,3 +227,78 @@ problem_data_t *get_full_problem_data_over_dbus(const char *problem_dir_path) + + return pd; + } ++ ++int test_exist_over_dbus(const char *problem_id, const char *element_name) ++{ ++ INITIALIZE_LIBABRT(); ++ ++ GDBusProxy *proxy = get_dbus_proxy(); ++ if (!proxy) ++ return -1; ++ ++ GError *error = NULL; ++ GVariant *result = g_dbus_proxy_call_sync(proxy, ++ "TestElementExists", ++ g_variant_new("(ss)", problem_id, element_name), ++ G_DBUS_CALL_FLAGS_NONE, ++ -1, ++ NULL, ++ &error); ++ ++ if (error) ++ { ++ error_msg(_("Can't test whether the element exists over abrt-dbus: %s"), error->message); ++ g_error_free(error); ++ return -1; ++ } ++ ++ gboolean retval; ++ g_variant_get(result, "(b)", &retval); ++ g_variant_unref(result); ++ ++ return retval; ++} ++ ++char *load_text_over_dbus(const char *problem_id, const char *element_name) ++{ ++ INITIALIZE_LIBABRT(); ++ ++ GDBusProxy *proxy = get_dbus_proxy(); ++ if (!proxy) ++ return ERR_PTR; ++ ++ GVariantBuilder *builder = g_variant_builder_new(G_VARIANT_TYPE("as")); ++ g_variant_builder_add(builder, "s", element_name); ++ GVariant *params = g_variant_new("(sas)", problem_id, builder); ++ g_variant_builder_unref(builder); ++ ++ GError *error = NULL; ++ GVariant *result = g_dbus_proxy_call_sync(proxy, ++ "GetInfo", ++ params, ++ G_DBUS_CALL_FLAGS_NONE, ++ -1, ++ NULL, ++ &error); ++ ++ if (error) ++ { ++ error_msg(_("Can't get problem data from abrt-dbus: %s"), error->message); ++ g_error_free(error); ++ return ERR_PTR; ++ } ++ ++ GVariant *values = g_variant_get_child_value(result, 0); ++ g_variant_unref(result); ++ ++ char *retval = NULL; ++ if (g_variant_n_children(values) == 1) ++ { ++ GVariant *contents = g_variant_get_child_value(values, 0); ++ gchar *key; ++ g_variant_get(contents, "{&ss}", &key, &retval); ++ } ++ ++ g_variant_unref(values); ++ return retval; ++} +-- +2.4.3 + diff --git a/SOURCES/0132-cli-use-the-DBus-methods-for-getting-problem-informa.patch b/SOURCES/0132-cli-use-the-DBus-methods-for-getting-problem-informa.patch new file mode 100644 index 0000000..766164a --- /dev/null +++ b/SOURCES/0132-cli-use-the-DBus-methods-for-getting-problem-informa.patch @@ -0,0 +1,349 @@ +From 5560ca0e51919bc5aeccb22584e24219040dc78b Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 24 Mar 2015 20:57:34 +0100 +Subject: [PATCH] cli: use the DBus methods for getting problem information + +The dump directory is no longer accessible by non-root users and we also +want to get rid of direct access to allow administrators (wheel members) +see problem data without the need to ChownProblem directory before. + +Related: #1224984 + +Signed-off-by: Jakub Filak +--- + src/cli/abrt-cli-core.c | 74 ++++++++++++++++++++++++------------------------- + src/cli/abrt-cli-core.h | 4 ++- + src/cli/list.c | 45 +++++++++++------------------- + src/cli/process.c | 6 +--- + src/cli/status.c | 66 +++++++++++++------------------------------ + 5 files changed, 77 insertions(+), 118 deletions(-) + +diff --git a/src/cli/abrt-cli-core.c b/src/cli/abrt-cli-core.c +index 23a74a8..77a37f7 100644 +--- a/src/cli/abrt-cli-core.c ++++ b/src/cli/abrt-cli-core.c +@@ -39,24 +39,22 @@ vector_of_problem_data_t *new_vector_of_problem_data(void) + return g_ptr_array_new_with_free_func((void (*)(void*)) &problem_data_free); + } + +-static int +-append_problem_data(struct dump_dir *dd, void *arg) ++vector_of_problem_data_t *fetch_crash_infos(void) + { +- vector_of_problem_data_t *vpd = arg; +- +- problem_data_t *problem_data = create_problem_data_from_dump_dir(dd); +- problem_data_add(problem_data, CD_DUMPDIR, dd->dd_dirname, +- CD_FLAG_TXT + CD_FLAG_ISNOTEDITABLE + CD_FLAG_LIST); +- g_ptr_array_add(vpd, problem_data); +- return 0; +-} ++ GList *problems = get_problems_over_dbus(/*don't authorize*/false); ++ if (problems == ERR_PTR) ++ return NULL; + +-vector_of_problem_data_t *fetch_crash_infos(GList *dir_list) +-{ + vector_of_problem_data_t *vpd = new_vector_of_problem_data(); + +- for (GList *li = dir_list; li; li = li->next) +- for_each_problem_in_dir(li->data, getuid(), append_problem_data, vpd); ++ for (GList *iter = problems; iter; iter = g_list_next(iter)) ++ { ++ problem_data_t *problem_data = get_full_problem_data_over_dbus((const char *)(iter->data)); ++ if (problem_data == ERR_PTR) ++ continue; ++ ++ g_ptr_array_add(vpd, problem_data); ++ } + + return vpd; + } +@@ -74,36 +72,38 @@ static bool isxdigit_str(const char *str) + return true; + } + +-struct name_resolution_param { +- const char *shortcut; +- unsigned strlen_shortcut; +- char *found_name; +-}; +- +-static int find_dir_by_hash(struct dump_dir *dd, void *arg) ++char *find_problem_by_hash(const char *hash, GList *problems) + { +- struct name_resolution_param *param = arg; +- char hash_str[SHA1_RESULT_LEN*2 + 1]; +- str_to_sha1str(hash_str, dd->dd_dirname); +- if (strncasecmp(param->shortcut, hash_str, param->strlen_shortcut) == 0) ++ unsigned hash_len = strlen(hash); ++ if (!isxdigit_str(hash) || hash_len < 5) ++ return NULL; ++ ++ char *found_name = NULL; ++ for (GList *iter = problems; iter; iter = g_list_next(iter)) + { +- if (param->found_name) +- error_msg_and_die(_("'%s' identifies more than one problem directory"), param->shortcut); +- param->found_name = xstrdup(dd->dd_dirname); ++ char hash_str[SHA1_RESULT_LEN*2 + 1]; ++ str_to_sha1str(hash_str, (const char *)(iter->data)); ++ if (strncasecmp(hash, hash_str, hash_len) == 0) ++ { ++ if (found_name) ++ error_msg_and_die(_("'%s' identifies more than one problem directory"), hash); ++ found_name = xstrdup((const char *)(iter->data)); ++ } + } +- return 0; ++ ++ return found_name; + } + + char *hash2dirname(const char *hash) + { +- unsigned hash_len = strlen(hash); +- if (!isxdigit_str(hash) || hash_len < 5) ++ /* Try loading by dirname hash */ ++ GList *problems = get_problems_over_dbus(/*don't authorize*/false); ++ if (problems == ERR_PTR) + return NULL; + +- /* Try loading by dirname hash */ +- struct name_resolution_param param = { hash, hash_len, NULL }; +- GList *dir_list = get_problem_storages(); +- for (GList *li = dir_list; li; li = li->next) +- for_each_problem_in_dir(li->data, getuid(), find_dir_by_hash, ¶m); +- return param.found_name; ++ char *found_name = find_problem_by_hash(hash, problems); ++ ++ g_list_free_full(problems, free); ++ ++ return found_name; + } +diff --git a/src/cli/abrt-cli-core.h b/src/cli/abrt-cli-core.h +index 83d0b5d..33b2ea6 100644 +--- a/src/cli/abrt-cli-core.h ++++ b/src/cli/abrt-cli-core.h +@@ -28,9 +28,11 @@ problem_data_t *get_problem_data(vector_of_problem_data_t *vector, unsigned i); + + void free_vector_of_problem_data(vector_of_problem_data_t *vector); + vector_of_problem_data_t *new_vector_of_problem_data(void); +-vector_of_problem_data_t *fetch_crash_infos(GList *dir_list); ++vector_of_problem_data_t *fetch_crash_infos(void); + + /* Returns malloced string, or NULL if not found: */ ++char *find_problem_by_hash(const char *hash, GList *problems); ++/* Returns malloced string, or NULL if not found: */ + char *hash2dirname(const char *hash); + + +diff --git a/src/cli/list.c b/src/cli/list.c +index ccb5f3b..1594906 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -30,33 +30,28 @@ + * ~/.abrt/spool and /var/tmp/abrt? needs more _meditation_. + */ + +-static problem_data_t *load_problem_data(const char *dump_dir_name) ++static problem_data_t *load_problem_data(const char *problem_id) + { +- /* First, try loading by dirname */ +- int sv_logmode = logmode; +- logmode = 0; /* suppress EPERM/EACCES errors in opendir */ +- struct dump_dir *dd = dd_opendir(dump_dir_name, /*flags:*/ DD_OPEN_READONLY); +- logmode = sv_logmode; ++ char *name2 = NULL; ++ ++ /* First, check if there is a problem with the passed id */ ++ GList *problems = get_problems_over_dbus(/*don't authorize*/false); ++ GList *item = g_list_find_custom(problems, problem_id, (GCompareFunc)strcmp); + + /* (git requires at least 5 char hash prefix, we do the same) */ +- if (!dd && errno == ENOENT) ++ if (item == NULL) + { + /* Try loading by dirname hash */ +- char *name2 = hash2dirname(dump_dir_name); +- if (name2) +- dd = dd_opendir(name2, /*flags:*/ DD_OPEN_READONLY); +- free(name2); +- } ++ name2 = find_problem_by_hash(problem_id, problems); ++ if (name2 == NULL) ++ return NULL; + +- if (!dd) +- return NULL; ++ problem_id = name2; ++ } + +- problem_data_t *problem_data = create_problem_data_from_dump_dir(dd); +- problem_data_add(problem_data, CD_DUMPDIR, dd->dd_dirname, +- CD_FLAG_TXT + CD_FLAG_ISNOTEDITABLE + CD_FLAG_LIST); +- dd_close(dd); ++ problem_data_t *problem_data = get_full_problem_data_over_dbus(problem_id); + +- return problem_data; ++ return (problem_data == ERR_PTR ? NULL : problem_data); + } + + /** Prints basic information about a crash to stdout. */ +@@ -176,7 +171,7 @@ static bool print_crash_list(vector_of_problem_data_t *crash_list, int detailed, + int cmd_list(int argc, const char **argv) + { + const char *program_usage_string = _( +- "& list [options] [DIR]..." ++ "& list [options]" + ); + + int opt_not_reported = 0; +@@ -194,15 +189,8 @@ int cmd_list(int argc, const char **argv) + }; + + parse_opts(argc, (char **)argv, program_options, program_usage_string); +- argv += optind; +- +- GList *D_list = NULL; +- while (*argv) +- D_list = g_list_append(D_list, xstrdup(*argv++)); +- if (!D_list) +- D_list = get_problem_storages(); + +- vector_of_problem_data_t *ci = fetch_crash_infos(D_list); ++ vector_of_problem_data_t *ci = fetch_crash_infos(); + + g_ptr_array_sort_with_data(ci, &cmp_problem_data, (char *) FILENAME_LAST_OCCURRENCE); + +@@ -212,7 +200,6 @@ int cmd_list(int argc, const char **argv) + print_crash_list(ci, opt_detailed, opt_not_reported, opt_since, opt_until, CD_TEXT_ATT_SIZE_BZ); + + free_vector_of_problem_data(ci); +- list_free_with_free(D_list); + + #if SUGGEST_AUTOREPORTING != 0 + load_abrt_conf(); +diff --git a/src/cli/process.c b/src/cli/process.c +index 7f4fff5..39462f9 100644 +--- a/src/cli/process.c ++++ b/src/cli/process.c +@@ -152,18 +152,14 @@ int cmd_process(int argc, const char **argv) + }; + + parse_opts(argc, (char **)argv, program_options, program_usage_string); +- argv += optind; + +- GList *D_list = get_problem_storages(); +- +- vector_of_problem_data_t *ci = fetch_crash_infos(D_list); ++ vector_of_problem_data_t *ci = fetch_crash_infos(); + + g_ptr_array_sort_with_data(ci, &cmp_problem_data, (char *) FILENAME_LAST_OCCURRENCE); + + process_crashes(ci, opt_since); + + free_vector_of_problem_data(ci); +- list_free_with_free(D_list); + + return 0; + } +diff --git a/src/cli/status.c b/src/cli/status.c +index 1de2d41..68bdd0e 100644 +--- a/src/cli/status.c ++++ b/src/cli/status.c +@@ -21,53 +21,36 @@ + #include + #include "problem_api.h" + +-struct time_range { +- unsigned count; +- unsigned long since; +-}; +- +-static int count_dir_if_newer_than(struct dump_dir *dd, void *arg) +-{ +- struct time_range *me = arg; +- +- if (dd_exist(dd, FILENAME_REPORTED_TO)) +- return 0; +- +- char *time_str = dd_load_text(dd, FILENAME_LAST_OCCURRENCE); +- long val = atol(time_str); +- free(time_str); +- if (val < me->since) +- return 0; +- +- me->count++; +- return 0; +-} +- +-static void count_problems_in_dir(gpointer data, gpointer arg) ++static unsigned int count_problem_dirs(unsigned long since) + { +- char *path = data; +- struct time_range *me = arg; ++ unsigned count = 0; + +- log_info("scanning '%s' for problems since %lu", path, me->since); ++ GList *problems = get_problems_over_dbus(/*don't authorize*/false); ++ for (GList *iter = problems; iter != NULL; iter = g_list_next(iter)) ++ { ++ const char *problem_id = (const char *)iter->data; ++ if (test_exist_over_dbus(problem_id, FILENAME_REPORTED_TO)) ++ continue; + +- for_each_problem_in_dir(path, getuid(), count_dir_if_newer_than, me); +-} ++ char *time_str = load_text_over_dbus(problem_id, FILENAME_LAST_OCCURRENCE); ++ if (time_str == NULL) ++ continue; + +-static unsigned int count_problem_dirs(GList *paths, unsigned long since) +-{ +- struct time_range me; +- me.count = 0; +- me.since = since; ++ long val = atol(time_str); ++ free(time_str); ++ if (val < since) ++ return 0; + +- g_list_foreach(paths, count_problems_in_dir, &me); ++ count++; ++ } + +- return me.count; ++ return count; + } + + int cmd_status(int argc, const char **argv) + { + const char *program_usage_string = _( +- "& status [DIR]..." ++ "& status" + ); + + int opt_bare = 0; /* must be _int_, OPT_BOOL expects that! */ +@@ -81,17 +64,8 @@ int cmd_status(int argc, const char **argv) + }; + + parse_opts(argc, (char **)argv, program_options, program_usage_string); +- argv += optind; +- +- GList *problem_dir_list = NULL; +- while (*argv) +- problem_dir_list = g_list_append(problem_dir_list, xstrdup(*argv++)); +- if (!problem_dir_list) +- problem_dir_list = get_problem_storages(); +- +- unsigned int problem_count = count_problem_dirs(problem_dir_list, opt_since); + +- list_free_with_free(problem_dir_list); ++ unsigned int problem_count = count_problem_dirs(opt_since); + + /* show only if there is at least 1 problem or user set the -v */ + if (problem_count > 0 || g_verbose > 0) +-- +2.4.3 + diff --git a/SOURCES/0133-cli-status-don-t-return-0-if-there-is-a-problem-olde.patch b/SOURCES/0133-cli-status-don-t-return-0-if-there-is-a-problem-olde.patch new file mode 100644 index 0000000..f7ee329 --- /dev/null +++ b/SOURCES/0133-cli-status-don-t-return-0-if-there-is-a-problem-olde.patch @@ -0,0 +1,51 @@ +From ff8155d284dac74ae776d08de064e1cea17675be Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 8 Apr 2015 09:47:08 +0200 +Subject: [PATCH] cli-status: don't return 0 if there is a problem older than + limit + +The loop should skip such a problem and not return from the counting +function with 0. This is an obvious bug introduced in +commit 58d8e83f58afb32db3bdfd5170e65dc0ef2d2ce0 + +Related: #1224984 + +Signed-off-by: Jakub Filak +--- + src/cli/status.c | 11 ++++++++++- + 1 file changed, 10 insertions(+), 1 deletion(-) + +diff --git a/src/cli/status.c b/src/cli/status.c +index 68bdd0e..a65ba05 100644 +--- a/src/cli/status.c ++++ b/src/cli/status.c +@@ -30,16 +30,25 @@ static unsigned int count_problem_dirs(unsigned long since) + { + const char *problem_id = (const char *)iter->data; + if (test_exist_over_dbus(problem_id, FILENAME_REPORTED_TO)) ++ { ++ log_debug("Not counting problem %s: already reported", problem_id); + continue; ++ } + + char *time_str = load_text_over_dbus(problem_id, FILENAME_LAST_OCCURRENCE); + if (time_str == NULL) ++ { ++ log_debug("Not counting problem %s: failed to get time element", problem_id); + continue; ++ } + + long val = atol(time_str); + free(time_str); + if (val < since) +- return 0; ++ { ++ log_debug("Not counting problem %s: older tham limit (%ld < %ld)", problem_id, val, since); ++ continue; ++ } + + count++; + } +-- +2.4.3 + diff --git a/SOURCES/0134-cli-do-not-exit-with-segfault-if-dbus-fails.patch b/SOURCES/0134-cli-do-not-exit-with-segfault-if-dbus-fails.patch new file mode 100644 index 0000000..75790bd --- /dev/null +++ b/SOURCES/0134-cli-do-not-exit-with-segfault-if-dbus-fails.patch @@ -0,0 +1,32 @@ +From 3270f452485f737c12f63bab11c3f1f62339f098 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 4 May 2015 10:35:25 +0200 +Subject: [PATCH] cli: do not exit with segfault if dbus fails + +There was a segfault when we ran 'abrt-cli list' and dbus failed. + +Related to rhbz#1217901 + +Related: #1224984 + +Signed-off-by: Matej Habrnal +--- + src/cli/list.c | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/src/cli/list.c b/src/cli/list.c +index 1594906..b3b9066 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -191,6 +191,8 @@ int cmd_list(int argc, const char **argv) + parse_opts(argc, (char **)argv, program_options, program_usage_string); + + vector_of_problem_data_t *ci = fetch_crash_infos(); ++ if (ci == NULL) ++ return 1; + + g_ptr_array_sort_with_data(ci, &cmp_problem_data, (char *) FILENAME_LAST_OCCURRENCE); + +-- +2.4.3 + diff --git a/SOURCES/0135-cli-chown-before-reporting.patch b/SOURCES/0135-cli-chown-before-reporting.patch new file mode 100644 index 0000000..944b489 --- /dev/null +++ b/SOURCES/0135-cli-chown-before-reporting.patch @@ -0,0 +1,97 @@ +From 5e288cf2d54f6b3e67745f71db836f37901d2ad5 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 3 Jun 2015 05:40:41 +0200 +Subject: [PATCH] cli: chown before reporting + +User must have write access to the reported directory to be able to +report it but abrt-dbus allows the user to read data of problems that +belongs to him which may not be accessible in file system. + +The GUI does the same and make sures the user can write to the reported +directory by chowning it before reporting. + +Related: #1224984 + +Signed-off-by: Jakub Filak +--- + src/cli/abrt-cli-core.c | 5 +++++ + src/cli/abrt-cli-core.h | 3 +++ + src/cli/report.c | 24 +++++++++++++++--------- + 3 files changed, 23 insertions(+), 9 deletions(-) + +diff --git a/src/cli/abrt-cli-core.c b/src/cli/abrt-cli-core.c +index 77a37f7..46acd01 100644 +--- a/src/cli/abrt-cli-core.c ++++ b/src/cli/abrt-cli-core.c +@@ -107,3 +107,8 @@ char *hash2dirname(const char *hash) + + return found_name; + } ++ ++char *hash2dirname_if_necessary(const char *input) ++{ ++ return isxdigit_str(input) ? hash2dirname(input) : xstrdup(input); ++} +diff --git a/src/cli/abrt-cli-core.h b/src/cli/abrt-cli-core.h +index 33b2ea6..d69d463 100644 +--- a/src/cli/abrt-cli-core.h ++++ b/src/cli/abrt-cli-core.h +@@ -34,6 +34,9 @@ vector_of_problem_data_t *fetch_crash_infos(void); + char *find_problem_by_hash(const char *hash, GList *problems); + /* Returns malloced string, or NULL if not found: */ + char *hash2dirname(const char *hash); ++/* If input looks like a hash, returns malloced string, or NULL if not found. ++ * Otherwise returns a copy of the input. */ ++char *hash2dirname_if_necessary(const char *input); + + + #endif /* ABRT_CLI_CORE_H_ */ +diff --git a/src/cli/report.c b/src/cli/report.c +index 33d8b44..6af9769 100644 +--- a/src/cli/report.c ++++ b/src/cli/report.c +@@ -53,26 +53,32 @@ int cmd_report(int argc, const char **argv) + while (*argv) + { + const char *dir_name = *argv++; ++ char *const real_problem_id = hash2dirname_if_necessary(dir_name); ++ if (real_problem_id == NULL) ++ { ++ error_msg(_("Can't find problem '%s'"), dir_name); ++ continue; ++ } + +- char *free_me = NULL; +- if (access(dir_name, F_OK) != 0 && errno == ENOENT) ++ const int res = chown_dir_over_dbus(real_problem_id); ++ if (res != 0) + { +- free_me = hash2dirname(dir_name); +- if (free_me) +- dir_name = free_me; ++ error_msg(_("Can't take ownership of '%s'"), real_problem_id); ++ free(real_problem_id); ++ continue; + } +- int status = report_problem_in_dir(dir_name, ++ int status = report_problem_in_dir(real_problem_id, + LIBREPORT_WAIT + | LIBREPORT_RUN_CLI); + + /* the problem was successfully reported and option is -d */ + if((opts & OPT_d) && (status == 0 || status == EXIT_STOP_EVENT_RUN)) + { +- log(_("Deleting '%s'"), dir_name); +- delete_dump_dir_possibly_using_abrtd(dir_name); ++ log(_("Deleting '%s'"), real_problem_id); ++ delete_dump_dir_possibly_using_abrtd(real_problem_id); + } + +- free(free_me); ++ free(real_problem_id); + + if (status) + exit(status); +-- +2.4.3 + diff --git a/SOURCES/0136-cli-exit-with-the-number-of-unreported-problems.patch b/SOURCES/0136-cli-exit-with-the-number-of-unreported-problems.patch new file mode 100644 index 0000000..d695755 --- /dev/null +++ b/SOURCES/0136-cli-exit-with-the-number-of-unreported-problems.patch @@ -0,0 +1,52 @@ +From 7cd921326a2cdba7fa268cd373477149b7118bff Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 4 Jun 2015 10:22:33 +0200 +Subject: [PATCH] cli: exit with the number of unreported problems + +This patch fixes the broken cli-sanity. + +Related: #1224984 + +Signed-off-by: Jakub Filak +--- + src/cli/report.c | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/src/cli/report.c b/src/cli/report.c +index 6af9769..194f7c9 100644 +--- a/src/cli/report.c ++++ b/src/cli/report.c +@@ -50,6 +50,7 @@ int cmd_report(int argc, const char **argv) + load_abrt_conf(); + free_abrt_conf_data(); + ++ int ret = 0; + while (*argv) + { + const char *dir_name = *argv++; +@@ -57,6 +58,7 @@ int cmd_report(int argc, const char **argv) + if (real_problem_id == NULL) + { + error_msg(_("Can't find problem '%s'"), dir_name); ++ ++ret; + continue; + } + +@@ -65,6 +67,7 @@ int cmd_report(int argc, const char **argv) + { + error_msg(_("Can't take ownership of '%s'"), real_problem_id); + free(real_problem_id); ++ ++ret; + continue; + } + int status = report_problem_in_dir(real_problem_id, +@@ -84,5 +87,5 @@ int cmd_report(int argc, const char **argv) + exit(status); + } + +- return 0; ++ return ret; + } +-- +2.4.3 + diff --git a/SOURCES/0137-cli-remove-dead-code.patch b/SOURCES/0137-cli-remove-dead-code.patch new file mode 100644 index 0000000..d53002c --- /dev/null +++ b/SOURCES/0137-cli-remove-dead-code.patch @@ -0,0 +1,45 @@ +From 660d3a6f150a59433f78a1ca330e446b7846d4b8 Mon Sep 17 00:00:00 2001 +From: Richard Marko +Date: Wed, 20 May 2015 14:36:28 +0200 +Subject: [PATCH] cli: remove dead code + +Related: #1224984 + +Signed-off-by: Richard Marko +--- + src/cli/abrt-cli.c | 19 ------------------- + 1 file changed, 19 deletions(-) + +diff --git a/src/cli/abrt-cli.c b/src/cli/abrt-cli.c +index bc11c7f..8e19081 100644 +--- a/src/cli/abrt-cli.c ++++ b/src/cli/abrt-cli.c +@@ -75,25 +75,6 @@ static unsigned handle_internal_options(int argc, const char **argv, const char + { + return skip + argc; + } +-#if 0 +- if (prefixcmp(cmd, "--base-dir=") == 0) +- D_list = g_list_append(D_list, xstrdup(cmd + strlen("--base-dir="))); +- else if (prefixcmp(cmd, "--list-events") == 0) +- { +- const char *pfx = cmd + strlen("--list-events"); +- if (pfx && *pfx) +- pfx += 1; /* skip '=' */ +- +- char *events = list_possible_events(NULL, dump_dir_name, pfx); +- if (!events) +- exit(1); /* error msg is already logged */ +- +- fputs(events, stdout); +- free(events); +- +- exit(0); +- } +-#endif + else + error_msg_and_die("%s", usage); + +-- +2.4.3 + diff --git a/SOURCES/0138-doc-update-abrt-cli-man-page.patch b/SOURCES/0138-doc-update-abrt-cli-man-page.patch new file mode 100644 index 0000000..998c2d3 --- /dev/null +++ b/SOURCES/0138-doc-update-abrt-cli-man-page.patch @@ -0,0 +1,73 @@ +From 5c1cd1425d358d70bdd00a1b9efcac60f8189bd1 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 21 May 2015 11:52:35 +0200 +Subject: [PATCH] doc: update abrt-cli man page + +Related to rhbz#1179752 + +Related: #1224984 + +Signed-off-by: Matej Habrnal +--- + doc/abrt-cli.txt | 28 +++++++++++++++++++++------- + 1 file changed, 21 insertions(+), 7 deletions(-) + +diff --git a/doc/abrt-cli.txt b/doc/abrt-cli.txt +index cd14bc9..399b5fd 100644 +--- a/doc/abrt-cli.txt ++++ b/doc/abrt-cli.txt +@@ -7,30 +7,44 @@ abrt-cli - List, remove, print, analyze, report problems + + SYNOPSIS + -------- +-'abrt-cli' list [-vdf] [DIR]... ++'abrt-cli' list [-vn] [--detailed] [--since NUM] [--until NUM] [DIR]... + +-'abrt-cli' remove [-v] DIR... ++'abrt-cli' remove [-v] DIR... + +-'abrt-cli' report [-v] DIR... ++'abrt-cli' report [-v] [--delete] DIR... + +-'abrt-cli' info [-vd] [-s SIZE] DIR... ++'abrt-cli' info [-v] [--detailed] [-s SIZE] DIR... + +-'abrt-cli' process [-v] DIR... ++'abrt-cli' status [-vb] [--since NUM] ++ ++'abrt-cli' process [-v] [--since NUM] DIR... + + OPTIONS + ------- + -v,--verbose:: + Be more verbose. Can be given multiple times. + +--d,--detailed:: ++-b, --bare:: ++ Print only the problem count without any message ++ ++--detailed:: + Show detailed report + ++--delete:: ++ Remove PROBLEM_DIR after reporting ++ + -n,--not-reported:: + List only not-reported problems + +--s,--size SIZE: ++--size SIZE:: + Text larger than SIZE bytes will be shown abridged + ++--since NUM:: ++ Selects only problems detected after timestamp ++ ++--until NUM:: ++ Selects only the problems older than specified timestamp ++ + AUTHORS + ------- + * ABRT team +-- +2.4.3 + diff --git a/SOURCES/0139-cli-enable-polkit-authentication-on-command-line.patch b/SOURCES/0139-cli-enable-polkit-authentication-on-command-line.patch new file mode 100644 index 0000000..bd42d30 --- /dev/null +++ b/SOURCES/0139-cli-enable-polkit-authentication-on-command-line.patch @@ -0,0 +1,247 @@ +From d2dcaeddfe015d3fee3817737e1bae72f1ad3316 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 1 Jul 2015 13:38:57 +0200 +Subject: [PATCH] cli: enable polkit authentication on command line + +This patch will allow users to work with all problems without the need +to run abrt-cli under root account. + +The polkit aget will run in a separate thread and will interact with a +user via STDOUT and STDIN, so we should not introduce new threads using +STDIN or STDOUT and all D-Bus calls should be synchronous. + +http://www.freedesktop.org/software/polkit/docs/latest/ref-authentication-agent-api.html + +Related: #1224984 + +Signed-off-by: Jakub Filak + +Conflicts: + src/cli/Makefile.am +--- + configure.ac | 1 + + doc/abrt-cli.txt | 11 +++++++++-- + src/cli/Makefile.am | 2 ++ + src/cli/abrt-cli-core.c | 50 +++++++++++++++++++++++++++++++++++++++++++++++-- + src/cli/abrt-cli-core.h | 9 ++++++++- + src/cli/abrt-cli.c | 15 ++++++++++++++- + 6 files changed, 82 insertions(+), 6 deletions(-) + +diff --git a/configure.ac b/configure.ac +index d65bf54..56b8ad8 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -104,6 +104,7 @@ PKG_CHECK_MODULES([NSS], [nss]) + PKG_CHECK_MODULES([LIBREPORT], [libreport]) + PKG_CHECK_MODULES([LIBREPORT_GTK], [libreport-gtk]) + PKG_CHECK_MODULES([POLKIT], [polkit-gobject-1]) ++PKG_CHECK_MODULES([POLKIT_AGENT], [polkit-agent-1]) + PKG_CHECK_MODULES([GIO], [gio-2.0]) + PKG_CHECK_MODULES([SATYR], [satyr]) + PKG_CHECK_MODULES([LIBSELINUX], [libselinux]) +diff --git a/doc/abrt-cli.txt b/doc/abrt-cli.txt +index 399b5fd..0f18784 100644 +--- a/doc/abrt-cli.txt ++++ b/doc/abrt-cli.txt +@@ -7,6 +7,8 @@ abrt-cli - List, remove, print, analyze, report problems + + SYNOPSIS + -------- ++'abrt-cli' [--authenticate] COMMAND [COMMAND OPTIONS] ++ + 'abrt-cli' list [-vn] [--detailed] [--since NUM] [--until NUM] [DIR]... + + 'abrt-cli' remove [-v] DIR... +@@ -19,8 +21,13 @@ SYNOPSIS + + 'abrt-cli' process [-v] [--since NUM] DIR... + +-OPTIONS +-------- ++GLOBAL OPTIONS ++-------------- ++-a,--authenticate:: ++ Enable PolicyKit authentication to be able to work with the system problems ++ ++COMMAND OPTIONS ++--------------- + -v,--verbose:: + Be more verbose. Can be given multiple times. + +diff --git a/src/cli/Makefile.am b/src/cli/Makefile.am +index 9fff5b3..a7c76ef 100644 +--- a/src/cli/Makefile.am ++++ b/src/cli/Makefile.am +@@ -17,6 +17,7 @@ abrt_cli_CFLAGS = \ + -I$(srcdir)/../include \ + -I$(srcdir)/../lib \ + $(LIBREPORT_CFLAGS) \ ++ $(POLKIT_AGENT_CFLAGS) \ + -DWORKFLOWS_DIR=\"${WORKFLOWS_DIR}\" + + if SUGGEST_AUTOREPORTING +@@ -24,6 +25,7 @@ abrt_cli_CFLAGS += -DSUGGEST_AUTOREPORTING=1 + endif + + abrt_cli_LDADD = \ ++ $(POLKIT_AGENT_LIBS) \ + $(LIBREPORT_LIBS) \ + ../lib/libabrt.la + +diff --git a/src/cli/abrt-cli-core.c b/src/cli/abrt-cli-core.c +index 46acd01..ca49dbd 100644 +--- a/src/cli/abrt-cli-core.c ++++ b/src/cli/abrt-cli-core.c +@@ -20,6 +20,17 @@ + #include "libabrt.h" + #include "abrt-cli-core.h" + ++/* It is not possible to include polkitagent.h without the following define. ++ * Check out the included header file. ++ */ ++#define POLKIT_AGENT_I_KNOW_API_IS_SUBJECT_TO_CHANGE ++#include ++ ++int g_cli_authenticate; ++ ++static PolkitAgentListener *s_local_polkit_agent = NULL; ++static gpointer s_local_agent_handle = NULL; ++ + /* Vector of problems: */ + /* problem_data_vector[i] = { "name" = { "content", CD_FLAG_foo_bits } } */ + +@@ -41,7 +52,7 @@ vector_of_problem_data_t *new_vector_of_problem_data(void) + + vector_of_problem_data_t *fetch_crash_infos(void) + { +- GList *problems = get_problems_over_dbus(/*don't authorize*/false); ++ GList *problems = get_problems_over_dbus(g_cli_authenticate); + if (problems == ERR_PTR) + return NULL; + +@@ -97,7 +108,7 @@ char *find_problem_by_hash(const char *hash, GList *problems) + char *hash2dirname(const char *hash) + { + /* Try loading by dirname hash */ +- GList *problems = get_problems_over_dbus(/*don't authorize*/false); ++ GList *problems = get_problems_over_dbus(g_cli_authenticate); + if (problems == ERR_PTR) + return NULL; + +@@ -112,3 +123,38 @@ char *hash2dirname_if_necessary(const char *input) + { + return isxdigit_str(input) ? hash2dirname(input) : xstrdup(input); + } ++ ++void initialize_polkit_agent(void) ++{ ++ GError *error = NULL; ++ PolkitSubject *subject = polkit_unix_process_new_for_owner( ++ getpid(), ++ /*start time from /proc*/0, ++ getuid()); ++ ++ s_local_polkit_agent = polkit_agent_text_listener_new(NULL, &error); ++ if (s_local_polkit_agent == NULL) ++ { ++ error_msg_and_die("polkit_agent_text_listener_new: %s (%s, %d)\n", ++ error->message, g_quark_to_string (error->domain), error->code); ++ } ++ ++ s_local_agent_handle = polkit_agent_listener_register(s_local_polkit_agent, ++ POLKIT_AGENT_REGISTER_FLAGS_RUN_IN_THREAD, subject, NULL, NULL, &error); ++ if (s_local_agent_handle == NULL) ++ { ++ error_msg_and_die("polkit_agent_listener_register: %s (%s, %d)\n", ++ error->message, g_quark_to_string (error->domain), error->code); ++ } ++ ++ g_object_unref(subject); ++} ++ ++void uninitialize_polkit_agent(void) ++{ ++ if (s_local_agent_handle != NULL) ++ polkit_agent_listener_unregister(s_local_agent_handle); ++ ++ if (s_local_polkit_agent != NULL) ++ g_object_unref(s_local_polkit_agent); ++} +diff --git a/src/cli/abrt-cli-core.h b/src/cli/abrt-cli-core.h +index d69d463..e2456e6 100644 +--- a/src/cli/abrt-cli-core.h ++++ b/src/cli/abrt-cli-core.h +@@ -22,6 +22,10 @@ + + #include "problem_api.h" + ++/* Use authenticate D-Bus methods. The authentication requires a polkit agent ++ * to finish an authenticated method successfully. */ ++extern int g_cli_authenticate; ++ + typedef GPtrArray vector_of_problem_data_t; + + problem_data_t *get_problem_data(vector_of_problem_data_t *vector, unsigned i); +@@ -37,6 +41,9 @@ char *hash2dirname(const char *hash); + /* If input looks like a hash, returns malloced string, or NULL if not found. + * Otherwise returns a copy of the input. */ + char *hash2dirname_if_necessary(const char *input); +- ++/* Initialize a new polkit text agent in a new thread */ ++void initialize_polkit_agent(void); ++/* Uninitialize the polkit text agent */ ++void uninitialize_polkit_agent(void); + + #endif /* ABRT_CLI_CORE_H_ */ +diff --git a/src/cli/abrt-cli.c b/src/cli/abrt-cli.c +index 8e19081..f45523e 100644 +--- a/src/cli/abrt-cli.c ++++ b/src/cli/abrt-cli.c +@@ -19,6 +19,7 @@ + + #include "libabrt.h" + #include "builtin-cmd.h" ++#include "abrt-cli-core.h" + + #define USAGE_OPTS_WIDTH 16 + #define USAGE_GAP 2 +@@ -75,6 +76,10 @@ static unsigned handle_internal_options(int argc, const char **argv, const char + { + return skip + argc; + } ++ else if (strcmp(cmd, "-a") == 0 || strcmp(cmd, "--authenticate") == 0) ++ { ++ g_cli_authenticate = 1; ++ } + else + error_msg_and_die("%s", usage); + +@@ -122,7 +127,7 @@ int main(int argc, const char **argv) + argc--; + + const char *abrt_cli_usage_string = _( +- "Usage: abrt-cli [--version] COMMAND [DIR]..." ++ "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + ); + + const struct cmd_struct commands[] = { +@@ -141,8 +146,16 @@ int main(int argc, const char **argv) + argc -= skip; + argv += skip; + if (argc > 0) ++ { ++ if (g_cli_authenticate) ++ initialize_polkit_agent(); ++ + handle_internal_command(argc, argv, commands); + ++ if (g_cli_authenticate) ++ uninitialize_polkit_agent(); ++ } ++ + /* user didn't specify command; print out help */ + printf("%s\n\n", abrt_cli_usage_string); + list_cmds_help(commands); +-- +2.4.3 + diff --git a/SOURCES/0140-dbus-keep-the-polkit-authorization-for-all-clients.patch b/SOURCES/0140-dbus-keep-the-polkit-authorization-for-all-clients.patch new file mode 100644 index 0000000..51eb753 --- /dev/null +++ b/SOURCES/0140-dbus-keep-the-polkit-authorization-for-all-clients.patch @@ -0,0 +1,69 @@ +From 9c807b4f4d808201118f15182e12a9e68e12dc36 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 2 Jul 2015 12:19:30 +0200 +Subject: [PATCH] dbus: keep the polkit authorization for all clients + +I played with the defaults and I've found out that: + - allow_any == clients like ssh + - allow_active == for local console (X, terminal) + - allow_inactive had no effect + +Anyway, I do not find any reason to prevent any client from getting +access to all ABRT problems and I also think we should use +'auth_admin_keep' until we implement the new abrt dbus service. + +auth_admin_keep - requires authorization for the first request and the +authorization is kept for a brief period (polkit(8)). + +commit e98c8766655216db3d9a08b1fa52ba7decf57c46 +Author: Stef Walter +Date: Mon May 5 08:41:00 2014 +0200 + +dbus: Fix desktop centric polkit policy file + +In order to allow use of ABRT's DBus API on servers, the polkit +policy should allow admin usage even when not logged in an active +seat (ie: monitor and keyboard). Otherwise use from ssh logins and +Cockpit is prevented. + +Related: #1224984 + +Signed-off-by: Jakub Filak + +Conflicts: + src/dbus/abrt_polkit.policy +--- + src/dbus/abrt_polkit.policy | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/src/dbus/abrt_polkit.policy b/src/dbus/abrt_polkit.policy +index 06008b4..beb615f 100644 +--- a/src/dbus/abrt_polkit.policy ++++ b/src/dbus/abrt_polkit.policy +@@ -19,9 +19,9 @@ Copyright (c) 2012 ABRT Team + Get problems from all users + Reading others problems requires authentication + +- no ++ auth_admin_keep + auth_admin_keep +- no ++ auth_admin_keep + + + +@@ -30,9 +30,9 @@ Copyright (c) 2012 ABRT Team + Set value of configuration properties + Update configuration values reuquires authentication + +- no ++ auth_admin_keep + auth_admin_keep +- no ++ auth_admin_keep + + + +-- +2.4.3 + diff --git a/SOURCES/0141-cli-get-list-of-possible-workflows-for-problem_data_.patch b/SOURCES/0141-cli-get-list-of-possible-workflows-for-problem_data_.patch new file mode 100644 index 0000000..609a902 --- /dev/null +++ b/SOURCES/0141-cli-get-list-of-possible-workflows-for-problem_data_.patch @@ -0,0 +1,31 @@ +From f2055f8c6469b590172d94e9ea530243af89f028 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 2 Jul 2015 15:26:29 +0200 +Subject: [PATCH] cli: get list of possible workflows for problem_data_t + +File system access is not possible, so we have to rely on the data +transfered via D-Bus. + +Related: #1224984 + +Signed-off-by: Jakub Filak +--- + src/cli/list.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/cli/list.c b/src/cli/list.c +index b3b9066..483e9de 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -97,7 +97,7 @@ static void print_crash(problem_data_t *problem_data, int detailed, int text_siz + * 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"); ++ GList *const wf_names = list_possible_events_problem_data_glist(problem_data, 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); + +-- +2.4.3 + diff --git a/SOURCES/0142-cli-warn-users-about-Private-Reports.patch b/SOURCES/0142-cli-warn-users-about-Private-Reports.patch new file mode 100644 index 0000000..ef2c9ed --- /dev/null +++ b/SOURCES/0142-cli-warn-users-about-Private-Reports.patch @@ -0,0 +1,31 @@ +From 287977c966225108008effbe7eeae1d454836386 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 2 Jul 2015 15:34:38 +0200 +Subject: [PATCH] cli: warn users about Private Reports + +We should not make '--authenticate' default but we must inform users +about it. + +Related: #1224984 + +Signed-off-by: Jakub Filak +--- + src/cli/abrt-cli.c | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/src/cli/abrt-cli.c b/src/cli/abrt-cli.c +index f45523e..2e9e155 100644 +--- a/src/cli/abrt-cli.c ++++ b/src/cli/abrt-cli.c +@@ -149,6 +149,8 @@ int main(int argc, const char **argv) + { + if (g_cli_authenticate) + initialize_polkit_agent(); ++ else if (g_settings_privatereports) ++ log(_("Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected problems.")); + + handle_internal_command(argc, argv, commands); + +-- +2.4.3 + diff --git a/SOURCES/0143-cli-enable-authetication-for-all-commands.patch b/SOURCES/0143-cli-enable-authetication-for-all-commands.patch new file mode 100644 index 0000000..899c644 --- /dev/null +++ b/SOURCES/0143-cli-enable-authetication-for-all-commands.patch @@ -0,0 +1,116 @@ +From 7fc5bd1851d9b1b3f18eb8037432edbd7f7b7e66 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 8 Jul 2015 14:16:39 +0200 +Subject: [PATCH] cli: enable authetication for all commands + +I forgot to test the info, rm and status commands when I was working on +commit cb770e507f247476651b84ebbef63a5cd4c41d11 and later on I found out +that these commands must be updated to work with the system problems. + +Related: #1224984 + +Signed-off-by: Jakub Filak +--- + src/cli/list.c | 2 +- + src/cli/rm.c | 41 ++++++++++++++++++++++++++++------------- + src/cli/status.c | 3 ++- + 3 files changed, 31 insertions(+), 15 deletions(-) + +diff --git a/src/cli/list.c b/src/cli/list.c +index 483e9de..909d36d 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -35,7 +35,7 @@ static problem_data_t *load_problem_data(const char *problem_id) + char *name2 = NULL; + + /* First, check if there is a problem with the passed id */ +- GList *problems = get_problems_over_dbus(/*don't authorize*/false); ++ GList *problems = get_problems_over_dbus(g_cli_authenticate); + GList *item = g_list_find_custom(problems, problem_id, (GCompareFunc)strcmp); + + /* (git requires at least 5 char hash prefix, we do the same) */ +diff --git a/src/cli/rm.c b/src/cli/rm.c +index fe458ff..37d50e2 100644 +--- a/src/cli/rm.c ++++ b/src/cli/rm.c +@@ -19,12 +19,39 @@ + + #include "libabrt.h" + #include "builtin-cmd.h" ++#include "abrt-cli-core.h" + + /* TODO npajkovs: + * add -n, --dry-run + * add -q, --quite + */ + ++static int remove_using_dbus(const char **dirs_strv) ++{ ++ GList *dirs = NULL; ++ while (*dirs_strv) ++ dirs = g_list_prepend(dirs, (void *)*dirs_strv++); ++ const int ret = delete_problem_dirs_over_dbus(dirs); ++ g_list_free(dirs); ++ return ret; ++} ++ ++static int remove_using_abrtd_or_fs(const char **dirs_strv) ++{ ++ int errs = 0; ++ while (*dirs_strv) ++ { ++ int status; ++ const char *rm_dir = *dirs_strv++; ++ status = delete_dump_dir_possibly_using_abrtd(rm_dir); ++ if (!status) ++ log("rm '%s'", rm_dir); ++ else ++ errs++; ++ } ++ return errs; ++} ++ + int cmd_remove(int argc, const char **argv) + { + const char *program_usage_string = _( +@@ -42,17 +69,5 @@ int cmd_remove(int argc, const char **argv) + if (!argv[0]) + show_usage_and_die(program_usage_string, program_options); + +- int errs = 0; +- while (*argv) +- { +- int status; +- const char *rm_dir = *argv++; +- status = delete_dump_dir_possibly_using_abrtd(rm_dir); +- if (!status) +- log("rm '%s'", rm_dir); +- else +- errs++; +- } +- +- return errs; ++ return (g_cli_authenticate ? remove_using_dbus : remove_using_abrtd_or_fs)(argv); + } +diff --git a/src/cli/status.c b/src/cli/status.c +index a65ba05..0635289 100644 +--- a/src/cli/status.c ++++ b/src/cli/status.c +@@ -20,12 +20,13 @@ + #include + #include + #include "problem_api.h" ++#include "abrt-cli-core.h" + + static unsigned int count_problem_dirs(unsigned long since) + { + unsigned count = 0; + +- GList *problems = get_problems_over_dbus(/*don't authorize*/false); ++ GList *problems = get_problems_over_dbus(g_cli_authenticate); + for (GList *iter = problems; iter != NULL; iter = g_list_next(iter)) + { + const char *problem_id = (const char *)iter->data; +-- +2.4.3 + diff --git a/SOURCES/0144-cli-do-not-notify-root-about-Private-Reports.patch b/SOURCES/0144-cli-do-not-notify-root-about-Private-Reports.patch new file mode 100644 index 0000000..350dda1 --- /dev/null +++ b/SOURCES/0144-cli-do-not-notify-root-about-Private-Reports.patch @@ -0,0 +1,30 @@ +From c8973dcbf5048369f8e69bed23f4417cc0aba8cf Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 8 Jul 2015 15:52:42 +0200 +Subject: [PATCH] cli: do not notify root about Private Reports + +The root user already sees all detected problems. + +Related: #1224984 + +Signed-off-by: Jakub Filak +--- + src/cli/abrt-cli.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/cli/abrt-cli.c b/src/cli/abrt-cli.c +index 2e9e155..360e475 100644 +--- a/src/cli/abrt-cli.c ++++ b/src/cli/abrt-cli.c +@@ -149,7 +149,7 @@ int main(int argc, const char **argv) + { + if (g_cli_authenticate) + initialize_polkit_agent(); +- else if (g_settings_privatereports) ++ else if (geteuid() != 0 && g_settings_privatereports) + log(_("Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected problems.")); + + handle_internal_command(argc, argv, commands); +-- +2.4.3 + diff --git a/SOURCES/0145-cli-remove-useless-code-from-print_crash.patch b/SOURCES/0145-cli-remove-useless-code-from-print_crash.patch new file mode 100644 index 0000000..cedc916 --- /dev/null +++ b/SOURCES/0145-cli-remove-useless-code-from-print_crash.patch @@ -0,0 +1,34 @@ +From bb703d67bbb82ab0b71c9fc7560754f943dc86be Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 9 Jul 2015 11:54:15 +0200 +Subject: [PATCH] cli: remove useless code from print_crash() + +Revealed by coverity. + +Related: #1224984 + +Signed-off-by: Jakub Filak +--- + src/cli/list.c | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/src/cli/list.c b/src/cli/list.c +index 909d36d..49c3e30 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -63,11 +63,10 @@ static void print_crash(problem_data_t *problem_data, int detailed, int text_siz + char *desc; + if (detailed) + { +- int show_multiline = (detailed ? MAKEDESC_SHOW_MULTILINE : 0); + desc = make_description(problem_data, + /*names_to_skip:*/ NULL, + /*max_text_size:*/ text_size, +- MAKEDESC_SHOW_FILES | show_multiline); ++ MAKEDESC_SHOW_FILES | MAKEDESC_SHOW_MULTILINE); + } + else + { +-- +2.4.3 + diff --git a/SOURCES/0146-cli-use-internal-command-impl-in-the-command-process.patch b/SOURCES/0146-cli-use-internal-command-impl-in-the-command-process.patch new file mode 100644 index 0000000..19f2323 --- /dev/null +++ b/SOURCES/0146-cli-use-internal-command-impl-in-the-command-process.patch @@ -0,0 +1,218 @@ +From 408a012dabf4c43cfb34dfb9547f9d908a521fec Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 9 Jul 2015 11:54:36 +0200 +Subject: [PATCH] cli: use internal command impl in the command process + +It did not seem to be a good idea to add wrappers for the internal +commands, because the wrappers would be one line functions. Now, we need +to do more sophisticated processing (authenticate, chown), so adding the +wrappers is the best choice to provide the same functionality in the +command process. + +Related: #1224984 + +Signed-off-by: Jakub Filak +--- + src/cli/builtin-cmd.h | 3 +++ + src/cli/list.c | 8 ++++++- + src/cli/process.c | 16 ++++--------- + src/cli/report.c | 65 +++++++++++++++++++++++++++------------------------ + src/cli/rm.c | 7 +++++- + 5 files changed, 56 insertions(+), 43 deletions(-) + +diff --git a/src/cli/builtin-cmd.h b/src/cli/builtin-cmd.h +index bc80479..c6cd691 100644 +--- a/src/cli/builtin-cmd.h ++++ b/src/cli/builtin-cmd.h +@@ -22,8 +22,11 @@ + + extern int cmd_list(int argc, const char **argv); + extern int cmd_remove(int argc, const char **argv); ++extern int _cmd_remove(const char **dirs_strv); + extern int cmd_report(int argc, const char **argv); ++extern int _cmd_report(const char **dirs_strv, int remove); + extern int cmd_info(int argc, const char **argv); ++extern int _cmd_info(problem_data_t *problem_data, int detailed, int text_size); + extern int cmd_status(int argc, const char **argv); + extern int cmd_process(int argc, const char **argv); + +diff --git a/src/cli/list.c b/src/cli/list.c +index 49c3e30..c76e4fb 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -217,6 +217,12 @@ int cmd_list(int argc, const char **argv) + return 0; + } + ++int _cmd_info(problem_data_t *problem_data, int detailed, int text_size) ++{ ++ print_crash(problem_data, detailed, text_size); ++ return 0; ++} ++ + int cmd_info(int argc, const char **argv) + { + const char *program_usage_string = _( +@@ -254,7 +260,7 @@ int cmd_info(int argc, const char **argv) + continue; + } + +- print_crash(problem, opt_detailed, text_size); ++ _cmd_info(problem, opt_detailed, text_size); + problem_data_free(problem); + if (*argv) + printf("\n"); +diff --git a/src/cli/process.c b/src/cli/process.c +index 39462f9..401ef60 100644 +--- a/src/cli/process.c ++++ b/src/cli/process.c +@@ -68,28 +68,22 @@ static int process_one_crash(problem_data_t *problem_data) + if(strcmp(action, "rm") == 0 || strcmp(action, "remove") == 0 ) + { + log(_("Deleting '%s'"), dir_name); +- delete_dump_dir_possibly_using_abrtd(dir_name); ++ const char *dirs_strv[] = {dir_name, NULL}; ++ _cmd_remove(dirs_strv); + + ret_val = ACT_REMOVE; + } + else if (not_reportable == NULL && (strcmp(action, "e") == 0 || strcmp(action, "report") == 0)) + { + log(_("Reporting '%s'"), dir_name); +- report_problem_in_dir(dir_name, +- LIBREPORT_WAIT +- | LIBREPORT_RUN_CLI); ++ const char *dirs_strv[] = {dir_name, NULL}; ++ _cmd_report(dirs_strv, /*do not delete*/0); + + ret_val = ACT_REPORT; + } + else if (strcmp(action, "i") == 0 || strcmp(action, "info") == 0) + { +- char *desc = make_description(problem_data, +- /*names_to_skip:*/ NULL, +- /*max_text_size:*/ CD_TEXT_ATT_SIZE_BZ, +- MAKEDESC_SHOW_FILES | MAKEDESC_SHOW_MULTILINE); +- +- fputs(desc, stdout); +- free(desc); ++ _cmd_info(problem_data, /*detailed*/1, CD_TEXT_ATT_SIZE_BZ); + + ret_val = ACT_INFO; + } +diff --git a/src/cli/report.c b/src/cli/report.c +index 194f7c9..19b4c51 100644 +--- a/src/cli/report.c ++++ b/src/cli/report.c +@@ -22,38 +22,12 @@ + #include "abrt-cli-core.h" + #include "builtin-cmd.h" + +-int cmd_report(int argc, const char **argv) ++int _cmd_report(const char **dirs_strv, int remove) + { +- const char *program_usage_string = _( +- "& report [options] DIR..." +- ); +- +- enum { +- OPT_v = 1 << 0, +- OPT_d = 1 << 1, +- }; +- +- struct options program_options[] = { +- OPT__VERBOSE(&g_verbose), +- OPT_BOOL('d', "delete", NULL, _("Remove PROBLEM_DIR after reporting")), +- OPT_END() +- }; +- +- unsigned opts = parse_opts(argc, (char **)argv, program_options, program_usage_string); +- argv += optind; +- +- if (!argv[0]) +- show_usage_and_die(program_usage_string, program_options); +- +- export_abrt_envvars(/*prog_prefix:*/ 0); +- +- load_abrt_conf(); +- free_abrt_conf_data(); +- + int ret = 0; +- while (*argv) ++ while (*dirs_strv) + { +- const char *dir_name = *argv++; ++ const char *dir_name = *dirs_strv++; + char *const real_problem_id = hash2dirname_if_necessary(dir_name); + if (real_problem_id == NULL) + { +@@ -75,7 +49,7 @@ int cmd_report(int argc, const char **argv) + | LIBREPORT_RUN_CLI); + + /* the problem was successfully reported and option is -d */ +- if((opts & OPT_d) && (status == 0 || status == EXIT_STOP_EVENT_RUN)) ++ if(remove && (status == 0 || status == EXIT_STOP_EVENT_RUN)) + { + log(_("Deleting '%s'"), real_problem_id); + delete_dump_dir_possibly_using_abrtd(real_problem_id); +@@ -89,3 +63,34 @@ int cmd_report(int argc, const char **argv) + + return ret; + } ++ ++int cmd_report(int argc, const char **argv) ++{ ++ const char *program_usage_string = _( ++ "& report [options] DIR..." ++ ); ++ ++ enum { ++ OPT_v = 1 << 0, ++ OPT_d = 1 << 1, ++ }; ++ ++ struct options program_options[] = { ++ OPT__VERBOSE(&g_verbose), ++ OPT_BOOL('d', "delete", NULL, _("Remove PROBLEM_DIR after reporting")), ++ OPT_END() ++ }; ++ ++ unsigned opts = parse_opts(argc, (char **)argv, program_options, program_usage_string); ++ argv += optind; ++ ++ if (!argv[0]) ++ show_usage_and_die(program_usage_string, program_options); ++ ++ export_abrt_envvars(/*prog_prefix:*/ 0); ++ ++ load_abrt_conf(); ++ free_abrt_conf_data(); ++ ++ return _cmd_report(argv, opts & OPT_d); ++} +diff --git a/src/cli/rm.c b/src/cli/rm.c +index 37d50e2..95ae097 100644 +--- a/src/cli/rm.c ++++ b/src/cli/rm.c +@@ -52,6 +52,11 @@ static int remove_using_abrtd_or_fs(const char **dirs_strv) + return errs; + } + ++int _cmd_remove(const char **dirs_strv) ++{ ++ return (g_cli_authenticate ? remove_using_dbus : remove_using_abrtd_or_fs)(dirs_strv); ++} ++ + int cmd_remove(int argc, const char **argv) + { + const char *program_usage_string = _( +@@ -69,5 +74,5 @@ int cmd_remove(int argc, const char **argv) + if (!argv[0]) + show_usage_and_die(program_usage_string, program_options); + +- return (g_cli_authenticate ? remove_using_dbus : remove_using_abrtd_or_fs)(argv); ++ return _cmd_remove(argv); + } +-- +2.4.3 + diff --git a/SOURCES/0147-abrt-hook-ccpp-minor-refactoring.patch b/SOURCES/0147-abrt-hook-ccpp-minor-refactoring.patch new file mode 100644 index 0000000..4b11d72 --- /dev/null +++ b/SOURCES/0147-abrt-hook-ccpp-minor-refactoring.patch @@ -0,0 +1,247 @@ +From 09dcb3af839ee80b3e7faf35a621d0ff0dcc9ebf Mon Sep 17 00:00:00 2001 +From: Martin Milata +Date: Mon, 1 Dec 2014 11:47:55 +0100 +Subject: [PATCH] abrt-hook-ccpp: minor refactoring + +Related to #829. + +Signed-off-by: Martin Milata + +Conflicts: + src/hooks/abrt-hook-ccpp.c +--- + src/hooks/abrt-hook-ccpp.c | 83 ++++++++++++++++++++++++++++------------------ + 1 file changed, 50 insertions(+), 33 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 9b38ed7..2dd9ac6 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -143,12 +143,10 @@ static off_t copyfd_sparse(int src_fd, int dst_fd1, int dst_fd2, off_t size2) + + + /* Global data */ +- + static char *user_pwd; + static DIR *proc_cwd; +-static char *proc_pid_status; + static struct dump_dir *dd; +-static int user_core_fd = -1; ++ + /* + * %s - signal number + * %c - ulimit -c value +@@ -219,7 +217,7 @@ static char* get_rootdir(pid_t pid) + return malloc_readlink(buf); + } + +-static int get_proc_fs_id(char type) ++static int get_proc_fs_id(char type, char *proc_pid_status) + { + const char *scanf_format = "%*cid:\t%d\t%d\t%d\t%d\n"; + char id_type[] = "_id"; +@@ -250,14 +248,14 @@ static int get_proc_fs_id(char type) + perror_msg_and_die("Failed to get file system %cID of the crashed process", type); + } + +-static int get_fsuid(void) ++static int get_fsuid(char *proc_pid_status) + { +- return get_proc_fs_id(/*UID*/'U'); ++ return get_proc_fs_id(/*UID*/'U', proc_pid_status); + } + +-static int get_fsgid(void) ++static int get_fsgid(char *proc_pid_status) + { +- return get_proc_fs_id(/*GID*/'G'); ++ return get_proc_fs_id(/*GID*/'G', proc_pid_status); + } + + static int dump_suid_policy() +@@ -335,7 +333,7 @@ static int compute_selinux_con_for_new_file(pid_t pid, int dir_fd, security_cont + return 0; + } + +-static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_values) ++static int open_user_core(uid_t uid, uid_t fsuid, gid_t fsgid, pid_t pid, char **percent_values) + { + proc_cwd = open_cwd(pid); + if (proc_cwd == NULL) +@@ -449,7 +447,7 @@ static int open_user_core(uid_t uid, uid_t fsuid, pid_t pid, char **percent_valu + /* + * These calls must be reverted as soon as possible. + */ +- xsetegid(get_fsgid()); ++ xsetegid(fsgid); + xseteuid(fsuid); + + /* Set SELinux context like kernel when creating core dump file. +@@ -563,7 +561,7 @@ static bool dump_fd_info(const char *dest_filename, char *source_filename, int s + } + + /* Like xopen, but on error, unlocks and deletes dd and user core */ +-static int create_or_die(const char *filename) ++static int create_or_die(const char *filename, int user_core_fd) + { + int fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, DEFAULT_DUMP_DIR_MODE); + if (fd >= 0) +@@ -582,6 +580,29 @@ static int create_or_die(const char *filename) + perror_msg_and_die("Can't open '%s'", filename); + } + ++static int create_user_core(int user_core_fd, pid_t pid, off_t ulimit_c) ++{ ++ int err = 1; ++ if (user_core_fd >= 0) ++ { ++ off_t core_size = copyfd_size(STDIN_FILENO, user_core_fd, ulimit_c, COPYFD_SPARSE); ++ if (close_user_core(user_core_fd, core_size) != 0) ++ goto finito; ++ ++ err = 0; ++ log("Saved core dump of pid %lu to %s at %s (%llu bytes)", (long)pid, core_basename, user_pwd, (long long)core_size); ++ } ++ ++finito: ++ if (proc_cwd != NULL) ++ { ++ closedir(proc_cwd); ++ proc_cwd = NULL; ++ } ++ ++ return err; ++} ++ + int main(int argc, char** argv) + { + int err = 1; +@@ -686,10 +707,12 @@ int main(int argc, char** argv) + log_notice("user_pwd:'%s'", user_pwd); + + sprintf(path, "/proc/%lu/status", (long)pid); +- proc_pid_status = xmalloc_xopen_read_close(path, /*maxsz:*/ NULL); ++ char *proc_pid_status = xmalloc_xopen_read_close(path, /*maxsz:*/ NULL); + + uid_t fsuid = uid; +- uid_t tmp_fsuid = get_fsuid(); ++ uid_t tmp_fsuid = get_fsuid(proc_pid_status); ++ const int fsgid = get_fsgid(proc_pid_status); ++ + int suid_policy = dump_suid_policy(); + if (tmp_fsuid != uid) + { +@@ -708,15 +731,16 @@ int main(int argc, char** argv) + const uid_t dduid = g_settings_privatereports ? 0 : fsuid; + + /* Open a fd to compat coredump, if requested and is possible */ ++ int user_core_fd = -1; + if (setting_MakeCompatCore && ulimit_c != 0) + /* note: checks "user_pwd == NULL" inside; updates core_basename */ +- user_core_fd = open_user_core(uid, fsuid, pid, &argv[1]); ++ user_core_fd = open_user_core(uid, fsuid, fsgid, pid, &argv[1]); + + if (executable == NULL) + { + /* readlink on /proc/$PID/exe failed, don't create abrt dump dir */ + error_msg("Can't read /proc/%lu/exe link", (long)pid); +- goto create_user_core; ++ return create_user_core(user_core_fd, pid, ulimit_c); + } + + const char *signame = NULL; +@@ -735,7 +759,7 @@ int main(int argc, char** argv) + //case SIGSYS : signame = "SYS" ; break; //Bad argument to routine (SVr4) + //case SIGXCPU: signame = "XCPU"; break; //CPU time limit exceeded (4.2BSD) + //case SIGXFSZ: signame = "XFSZ"; break; //File size limit exceeded (4.2BSD) +- default: goto create_user_core; // not a signal we care about ++ default: return create_user_core(user_core_fd, pid, ulimit_c); // not a signal we care about + } + + if (!daemon_is_ok()) +@@ -745,14 +769,14 @@ int main(int argc, char** argv) + "/proc/sys/kernel/core_pattern contains a stale value, " + "consider resetting it to 'core'" + ); +- goto create_user_core; ++ return create_user_core(user_core_fd, pid, ulimit_c); + } + + if (g_settings_nMaxCrashReportsSize > 0) + { + /* If free space is less than 1/4 of MaxCrashReportsSize... */ + if (low_free_space(g_settings_nMaxCrashReportsSize, g_settings_dump_location)) +- goto create_user_core; ++ return create_user_core(user_core_fd, pid, ulimit_c); + } + + /* Check /var/tmp/abrt/last-ccpp marker, do not dump repeated crashes +@@ -762,7 +786,7 @@ int main(int argc, char** argv) + if (check_recent_crash_file(path, executable)) + { + /* It is a repeating crash */ +- goto create_user_core; ++ return create_user_core(user_core_fd, pid, ulimit_c); + } + + const char *last_slash = strrchr(executable, '/'); +@@ -794,7 +818,7 @@ int main(int argc, char** argv) + g_settings_dump_location, iso_date_string(NULL), (long)pid); + if (path_len >= (sizeof(path) - sizeof("/"FILENAME_COREDUMP))) + { +- goto create_user_core; ++ return create_user_core(user_core_fd, pid, ulimit_c); + } + + /* use dduid (either fsuid or 0) instead of uid, so we don't expose any +@@ -878,7 +902,7 @@ int main(int argc, char** argv) + if (src_fd_binary > 0) + { + strcpy(path + path_len, "/"FILENAME_BINARY); +- int dst_fd = create_or_die(path); ++ int dst_fd = create_or_die(path, user_core_fd); + off_t sz = copyfd_eof(src_fd_binary, dst_fd, COPYFD_SPARSE); + if (fsync(dst_fd) != 0 || close(dst_fd) != 0 || sz < 0) + { +@@ -889,7 +913,7 @@ int main(int argc, char** argv) + } + + strcpy(path + path_len, "/"FILENAME_COREDUMP); +- int abrt_core_fd = create_or_die(path); ++ int abrt_core_fd = create_or_die(path, user_core_fd); + + /* We write both coredumps at once. + * We can't write user coredump first, since it might be truncated +@@ -938,7 +962,7 @@ int main(int argc, char** argv) + if (src_fd >= 0) + { + strcpy(path + path_len, "/hs_err.log"); +- int dst_fd = create_or_die(path); ++ int dst_fd = create_or_die(path, user_core_fd); + off_t sz = copyfd_eof(src_fd, dst_fd, COPYFD_SPARSE); + if (close(dst_fd) != 0 || sz < 0) + { +@@ -986,17 +1010,10 @@ int main(int argc, char** argv) + err = 0; + goto finito; + } +- +- /* We didn't create abrt dump, but may need to create compat coredump */ +- create_user_core: +- if (user_core_fd >= 0) ++ else + { +- off_t core_size = copyfd_size(STDIN_FILENO, user_core_fd, ulimit_c, COPYFD_SPARSE); +- if (close_user_core(user_core_fd, core_size) != 0) +- goto finito; +- +- err = 0; +- log("Saved core dump of pid %lu to %s at %s (%llu bytes)", (long)pid, core_basename, user_pwd, (long long)core_size); ++ /* We didn't create abrt dump, but may need to create compat coredump */ ++ return create_user_core(user_core_fd, pid, ulimit_c); + } + + finito: +-- +2.4.3 + diff --git a/SOURCES/0148-Create-core-backtrace-in-unwind-hook.patch b/SOURCES/0148-Create-core-backtrace-in-unwind-hook.patch new file mode 100644 index 0000000..702723b --- /dev/null +++ b/SOURCES/0148-Create-core-backtrace-in-unwind-hook.patch @@ -0,0 +1,322 @@ +From 8eefbac3b67756f0dfe9d68741d70015023b5216 Mon Sep 17 00:00:00 2001 +From: Martin Milata +Date: Fri, 17 Jul 2015 12:52:49 +0200 +Subject: [PATCH] Create core backtrace in unwind hook + +Related to #829. + +We need to implement #882 in order for this to work. This change +requires (yet unreleased) satyr-0.16. + +The feature is turned off by default, you need to pass +--enable-dump-time-unwind to configure in order to enable it. + +Signed-off-by: Martin Milata + +Conflicts: + src/hooks/abrt-hook-ccpp.c +--- + configure.ac | 12 ++++ + doc/abrt-CCpp.conf.txt | 18 ++++++ + src/hooks/CCpp.conf | 15 +++++ + src/hooks/abrt-hook-ccpp.c | 108 ++++++++++++++++++++++++------------ + src/hooks/abrt-install-ccpp-hook.in | 4 +- + 5 files changed, 121 insertions(+), 36 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 56b8ad8..330dd9c 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -232,6 +232,18 @@ AC_ARG_ENABLE([native-unwinder], + [fi] + + ++# Perform stack unwind on live/dying process in the core handler? ++ ++AC_ARG_ENABLE([dump-time-unwind], ++ AS_HELP_STRING([--enable-dump-time-unwind], ++ [create core stack trace while the crashed process is still in memory (default is no)]), ++ [], [enable_dump_time_unwind=no]) ++ ++[if test "$enable_native_unwinder" = "yes" -a "$enable_dump_time_unwind" = "yes"] ++[then] ++ AC_DEFINE([ENABLE_DUMP_TIME_UNWIND], [1], [Create core stacktrace while the process is still in memory.]) ++[fi] ++ + AC_SUBST(CONF_DIR) + AC_SUBST(DEFAULT_CONF_DIR) + AC_SUBST(VAR_RUN) +diff --git a/doc/abrt-CCpp.conf.txt b/doc/abrt-CCpp.conf.txt +index ad3830b..498d53d 100644 +--- a/doc/abrt-CCpp.conf.txt ++++ b/doc/abrt-CCpp.conf.txt +@@ -19,12 +19,30 @@ SaveBinaryImage = 'yes' / 'no' ...:: + Useful, for example, when _deleted binary_ segfaults. + Default is 'no'. + ++CreateCoreBacktrace = 'yes' / 'no' ...:: ++ When this option is set to 'yes', core backtrace is generated ++ from the memory image of the crashing process. Only the crash ++ thread is present in the backtrace. This feature requires ++ kernel 3.18 or newer, otherwise the core backtrace is not ++ created. ++ Default is 'yes'. ++ ++SaveFullCore = 'yes' / 'no' ...:: ++ Save full coredump? If set to 'no', coredump won't be saved ++ and you won't be able to report the crash to Bugzilla. Only ++ useful with 'CreateCoreBacktrace' set to 'yes'. Please ++ note that if this option is set to 'no' and MakeCompatCore ++ is set to 'yes', the core is still written to the current ++ directory. ++ Default is 'yes'. ++ + VerboseLog = NUM:: + Used to make the hook more verbose + + SEE ALSO + -------- + abrt.conf(5) ++abrt-action-generate-core-backtrace(1) + + AUTHORS + ------- +diff --git a/src/hooks/CCpp.conf b/src/hooks/CCpp.conf +index d199116..b1a0a22 100644 +--- a/src/hooks/CCpp.conf ++++ b/src/hooks/CCpp.conf +@@ -8,6 +8,21 @@ MakeCompatCore = yes + # (useful, for example, when _deleted binary_ segfaults) + SaveBinaryImage = no + ++# When this option is set to 'yes', core backtrace is generated ++# from the memory image of the crashing process. Only the crash ++# thread is present in the backtrace. This feature requires ++# kernel 3.18 or newer, otherwise the core backtrace is not ++# created. ++CreateCoreBacktrace = yes ++ ++# Save full coredump? If set to 'no', coredump won't be saved ++# and you won't be able to report the crash to Bugzilla. Only ++# useful with CreateCoreBacktrace set to 'yes'. Please ++# note that if this option is set to 'no' and MakeCompatCore ++# is set to 'yes', the core is still written to the current ++# directory. ++SaveFullCore = yes ++ + # Used for debugging the hook + #VerboseLog = 2 + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 2dd9ac6..b5f00f6 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -22,6 +22,11 @@ + #include "libabrt.h" + #include + ++#ifdef ENABLE_DUMP_TIME_UNWIND ++#include ++#include ++#endif /* ENABLE_DUMP_TIME_UNWIND */ ++ + #define DUMP_SUID_UNSAFE 1 + #define DUMP_SUID_SAFE 2 + +@@ -155,13 +160,13 @@ static struct dump_dir *dd; + * %g - gid + * %t - UNIX time of dump + * %e - executable filename +- * %h - hostname ++ * %i - crash thread tid + * %% - output one "%" + */ + /* Hook must be installed with exactly the same sequence of %c specifiers. + * Last one, %h, may be omitted (we can find it out). + */ +-static const char percent_specifiers[] = "%scpugteh"; ++static const char percent_specifiers[] = "%scpugtei"; + static char *core_basename = (char*) "core"; + + static char* get_executable(pid_t pid, int *fd_p) +@@ -580,6 +585,24 @@ static int create_or_die(const char *filename, int user_core_fd) + perror_msg_and_die("Can't open '%s'", filename); + } + ++static void create_core_backtrace(pid_t tid, const char *executable, int signal_no, const char *dd_path) ++{ ++#ifdef ENABLE_DUMP_TIME_UNWIND ++ if (g_verbose > 1) ++ sr_debug_parser = true; ++ ++ char *error_message = NULL; ++ bool success = sr_abrt_create_core_stacktrace_from_core_hook(dd_path, tid, executable, ++ signal_no, &error_message); ++ ++ if (!success) ++ { ++ log("Failed to create core_backtrace: %s", error_message); ++ free(error_message); ++ } ++#endif /* ENABLE_DUMP_TIME_UNWIND */ ++} ++ + static int create_user_core(int user_core_fd, pid_t pid, off_t ulimit_c) + { + int err = 1; +@@ -619,9 +642,9 @@ int main(int argc, char** argv) + + if (argc < 8) + { +- /* percent specifier: %s %c %p %u %g %t %e %h */ ++ /* percent specifier: %s %c %p %u %g %t %e %i */ + /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8]*/ +- error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME BINARY_NAME [HOSTNAME]", argv[0]); ++ error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME BINARY_NAME [TID]", argv[0]); + } + + /* Not needed on 2.6.30. +@@ -646,6 +669,8 @@ int main(int argc, char** argv) + /* ... and plugins/CCpp.conf */ + bool setting_MakeCompatCore; + bool setting_SaveBinaryImage; ++ bool setting_SaveFullCore; ++ bool setting_CreateCoreBacktrace; + { + map_string_t *settings = new_map_string(); + load_abrt_plugin_conf_file("CCpp.conf", settings); +@@ -654,6 +679,10 @@ int main(int argc, char** argv) + setting_MakeCompatCore = value && string_to_bool(value); + value = get_map_string_item_or_NULL(settings, "SaveBinaryImage"); + setting_SaveBinaryImage = value && string_to_bool(value); ++ value = get_map_string_item_or_NULL(settings, "SaveFullCore"); ++ setting_SaveFullCore = value ? string_to_bool(value) : true; ++ value = get_map_string_item_or_NULL(settings, "CreateCoreBacktrace"); ++ setting_CreateCoreBacktrace = value ? string_to_bool(value) : true; + value = get_map_string_item_or_NULL(settings, "VerboseLog"); + if (value) + g_verbose = xatoi_positive(value); +@@ -686,11 +715,10 @@ int main(int argc, char** argv) + free(s); + } + +- struct utsname uts; +- if (!argv[8]) /* no HOSTNAME? */ ++ pid_t tid = 0; ++ if (argv[8]) + { +- uname(&uts); +- argv[8] = uts.nodename; ++ tid = xatoi_positive(argv[8]); + } + + char path[PATH_MAX]; +@@ -906,36 +934,42 @@ int main(int argc, char** argv) + off_t sz = copyfd_eof(src_fd_binary, dst_fd, COPYFD_SPARSE); + if (fsync(dst_fd) != 0 || close(dst_fd) != 0 || sz < 0) + { +- dd_delete(dd); +- error_msg_and_die("Error saving '%s'", path); ++ dd_delete(dd); error_msg_and_die("Error saving '%s'", path); + } + close(src_fd_binary); + } + +- strcpy(path + path_len, "/"FILENAME_COREDUMP); +- int abrt_core_fd = create_or_die(path, user_core_fd); +- +- /* We write both coredumps at once. +- * We can't write user coredump first, since it might be truncated +- * and thus can't be copied and used as abrt coredump; +- * and if we write abrt coredump first and then copy it as user one, +- * then we have a race when process exits but coredump does not exist yet: +- * $ echo -e '#include\nmain(){raise(SIGSEGV);}' | gcc -o test -x c - +- * $ rm -f core*; ulimit -c unlimited; ./test; ls -l core* +- * 21631 Segmentation fault (core dumped) ./test +- * ls: cannot access core*: No such file or directory <=== BAD +- */ +- off_t core_size = copyfd_sparse(STDIN_FILENO, abrt_core_fd, user_core_fd, ulimit_c); +- +- close_user_core(user_core_fd, core_size); +- +- if (fsync(abrt_core_fd) != 0 || close(abrt_core_fd) != 0 || core_size < 0) ++ off_t core_size = 0; ++ if (setting_SaveFullCore) + { +- unlink(path); +- dd_delete(dd); +- /* copyfd_sparse logs the error including errno string, +- * but it does not log file name */ +- error_msg_and_die("Error writing '%s'", path); ++ strcpy(path + path_len, "/"FILENAME_COREDUMP); ++ int abrt_core_fd = create_or_die(path, user_core_fd); ++ ++ /* We write both coredumps at once. ++ * We can't write user coredump first, since it might be truncated ++ * and thus can't be copied and used as abrt coredump; ++ * and if we write abrt coredump first and then copy it as user one, ++ * then we have a race when process exits but coredump does not exist yet: ++ * $ echo -e '#include\nmain(){raise(SIGSEGV);}' | gcc -o test -x c - ++ * $ rm -f core*; ulimit -c unlimited; ./test; ls -l core* ++ * 21631 Segmentation fault (core dumped) ./test ++ * ls: cannot access core*: No such file or directory <=== BAD ++ */ ++ core_size = copyfd_sparse(STDIN_FILENO, abrt_core_fd, user_core_fd, ulimit_c); ++ close_user_core(user_core_fd, core_size); ++ if (fsync(abrt_core_fd) != 0 || close(abrt_core_fd) != 0 || core_size < 0) ++ { ++ unlink(path); ++ dd_delete(dd); ++ /* copyfd_sparse logs the error including errno string, ++ * but it does not log file name */ ++ error_msg_and_die("Error writing '%s'", path); ++ } ++ } ++ else ++ { ++ /* User core is created even if WriteFullCore is off. */ ++ create_user_core(user_core_fd, pid, ulimit_c); + } + + /* Because of #1211835 and #1126850 */ +@@ -977,6 +1011,10 @@ int main(int argc, char** argv) + /* And finally set the right uid and gid */ + dd_reset_ownership(dd); + ++ /* Perform crash-time unwind of the guilty thread. */ ++ if (tid > 0 && setting_CreateCoreBacktrace) ++ create_core_backtrace(tid, executable, signal_no, dd->dd_dirname); ++ + /* We close dumpdir before we start catering for crash storm case. + * Otherwise, delete_dump_dir's from other concurrent + * CCpp's won't be able to delete our dump (their delete_dump_dir +@@ -990,7 +1028,9 @@ int main(int argc, char** argv) + strcpy(path, newpath); + free(newpath); + +- log("Saved core dump of pid %lu (%s) to %s (%llu bytes)", (long)pid, executable, path, (long long)core_size); ++ if (core_size > 0) ++ log_notice("Saved core dump of pid %lu (%s) to %s (%llu bytes)", ++ (long)pid, executable, path, (long long)core_size); + + notify_new_path(path); + +diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in +index aa01231..d4ed4a5 100755 +--- a/src/hooks/abrt-install-ccpp-hook.in ++++ b/src/hooks/abrt-install-ccpp-hook.in +@@ -11,9 +11,9 @@ SAVED_PATTERN_DIR="@VAR_RUN@/abrt" + SAVED_PATTERN_FILE="@VAR_RUN@/abrt/saved_core_pattern" + HOOK_BIN="@libexecdir@/abrt-hook-ccpp" + # Must match percent_specifiers[] order in abrt-hook-ccpp.c: +-PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e" ++PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %i" + # Same, but with bogus "executable name" parameter +-PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e" ++PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %i" + + # core_pipe_limit specifies how many dump_helpers can run at the same time + # 0 - means unlimited, but it's not guaranteed that /proc/ of crashing +-- +2.4.3 + diff --git a/SOURCES/0149-abrt-install-ccpp-hook-check-configuration.patch b/SOURCES/0149-abrt-install-ccpp-hook-check-configuration.patch new file mode 100644 index 0000000..263f4ba --- /dev/null +++ b/SOURCES/0149-abrt-install-ccpp-hook-check-configuration.patch @@ -0,0 +1,124 @@ +From fb05144fada665ac319b0d9fa1af7bc9f42e8c26 Mon Sep 17 00:00:00 2001 +From: Martin Milata +Date: Thu, 16 Jul 2015 16:10:49 +0200 +Subject: [PATCH] abrt-install-ccpp-hook check configuration + +Check that either full coredump or core backtrace are configured to be +saved, fail init script if neither is. + +Related to #829. + +Signed-off-by: Martin Milata +--- + src/hooks/abrt-hook-ccpp.c | 63 +++++++++++++++++++++++-------------- + src/hooks/abrt-install-ccpp-hook.in | 5 +++ + 2 files changed, 44 insertions(+), 24 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index b5f00f6..d95228f 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -626,6 +626,18 @@ finito: + return err; + } + ++static int test_configuration(bool setting_SaveFullCore, bool setting_CreateCoreBacktrace) ++{ ++ if (!setting_SaveFullCore && !setting_CreateCoreBacktrace) ++ { ++ fprintf(stderr, "Both SaveFullCore and CreateCoreBacktrace are disabled - " ++ "at least one of them is needed for useful report.\n"); ++ return 1; ++ } ++ ++ return 0; ++} ++ + int main(int argc, char** argv) + { + int err = 1; +@@ -636,31 +648,9 @@ int main(int argc, char** argv) + */ + int fd = xopen("/dev/null", O_RDWR); + while (fd < 2) +- fd = xdup(fd); ++ fd = xdup(fd); + if (fd > 2) +- close(fd); +- +- if (argc < 8) +- { +- /* percent specifier: %s %c %p %u %g %t %e %i */ +- /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8]*/ +- error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME BINARY_NAME [TID]", argv[0]); +- } +- +- /* Not needed on 2.6.30. +- * At least 2.6.18 has a bug where +- * argv[1] = "SIGNO CORE_SIZE_LIMIT PID ..." +- * argv[2] = "CORE_SIZE_LIMIT PID ..." +- * and so on. Fixing it: +- */ +- if (strchr(argv[1], ' ')) +- { +- int i; +- for (i = 1; argv[i]; i++) +- { +- strchrnul(argv[i], ' ')[0] = '\0'; +- } +- } ++ close(fd); + + logmode = LOGMODE_JOURNAL; + +@@ -689,6 +679,31 @@ int main(int argc, char** argv) + free_map_string(settings); + } + ++ if (argc == 2 && strcmp(argv[1], "--config-test")) ++ return test_configuration(setting_SaveFullCore, setting_CreateCoreBacktrace); ++ ++ if (argc < 8) ++ { ++ /* percent specifier: %s %c %p %u %g %t %e %i */ ++ /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8]*/ ++ error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME BINARY_NAME [TID]", argv[0]); ++ } ++ ++ /* Not needed on 2.6.30. ++ * At least 2.6.18 has a bug where ++ * argv[1] = "SIGNO CORE_SIZE_LIMIT PID ..." ++ * argv[2] = "CORE_SIZE_LIMIT PID ..." ++ * and so on. Fixing it: ++ */ ++ if (strchr(argv[1], ' ')) ++ { ++ int i; ++ for (i = 1; argv[i]; i++) ++ { ++ strchrnul(argv[i], ' ')[0] = '\0'; ++ } ++ } ++ + errno = 0; + const char* signal_str = argv[1]; + int signal_no = xatoi_positive(signal_str); +diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in +index d4ed4a5..fff0a33 100755 +--- a/src/hooks/abrt-install-ccpp-hook.in ++++ b/src/hooks/abrt-install-ccpp-hook.in +@@ -31,6 +31,11 @@ CORE_PIPE_LIMIT_FILE="/proc/sys/kernel/core_pipe_limit" + CORE_PIPE_LIMIT="4" + + start() { ++ if ! $HOOK_BIN --test-config; then ++ echo "Invalid configuration." ++ exit 1 ++ fi ++ + cur=`cat "$PATTERN_FILE"` + cur_first=`printf "%s" "$cur" | sed 's/ .*//'` + +-- +2.4.3 + diff --git a/SOURCES/0151-disable-CreateCoreBacktrace-by-default.patch b/SOURCES/0151-disable-CreateCoreBacktrace-by-default.patch new file mode 100644 index 0000000..44079c1 --- /dev/null +++ b/SOURCES/0151-disable-CreateCoreBacktrace-by-default.patch @@ -0,0 +1,47 @@ +From f99278d0e37174039047120347c66069baaa46cb Mon Sep 17 00:00:00 2001 +From: Richard Marko +Date: Thu, 16 Jul 2015 16:14:37 +0200 +Subject: [PATCH] disable CreateCoreBacktrace by default + +--- + doc/abrt-CCpp.conf.txt | 6 ++---- + src/hooks/CCpp.conf | 6 ++---- + 2 files changed, 4 insertions(+), 8 deletions(-) + +diff --git a/doc/abrt-CCpp.conf.txt b/doc/abrt-CCpp.conf.txt +index 498d53d..f8085d6 100644 +--- a/doc/abrt-CCpp.conf.txt ++++ b/doc/abrt-CCpp.conf.txt +@@ -22,10 +22,8 @@ SaveBinaryImage = 'yes' / 'no' ...:: + CreateCoreBacktrace = 'yes' / 'no' ...:: + When this option is set to 'yes', core backtrace is generated + from the memory image of the crashing process. Only the crash +- thread is present in the backtrace. This feature requires +- kernel 3.18 or newer, otherwise the core backtrace is not +- created. +- Default is 'yes'. ++ thread is present in the backtrace. ++ Default is 'no'. + + SaveFullCore = 'yes' / 'no' ...:: + Save full coredump? If set to 'no', coredump won't be saved +diff --git a/src/hooks/CCpp.conf b/src/hooks/CCpp.conf +index b1a0a22..d2f8adb 100644 +--- a/src/hooks/CCpp.conf ++++ b/src/hooks/CCpp.conf +@@ -10,10 +10,8 @@ SaveBinaryImage = no + + # When this option is set to 'yes', core backtrace is generated + # from the memory image of the crashing process. Only the crash +-# thread is present in the backtrace. This feature requires +-# kernel 3.18 or newer, otherwise the core backtrace is not +-# created. +-CreateCoreBacktrace = yes ++# thread is present in the backtrace. ++CreateCoreBacktrace = no + + # Save full coredump? If set to 'no', coredump won't be saved + # and you won't be able to report the crash to Bugzilla. Only +-- +2.4.3 + diff --git a/SOURCES/0152-abrt-hook-ccpp-save-core_backtrace-from-hook.patch b/SOURCES/0152-abrt-hook-ccpp-save-core_backtrace-from-hook.patch new file mode 100644 index 0000000..5cdabea --- /dev/null +++ b/SOURCES/0152-abrt-hook-ccpp-save-core_backtrace-from-hook.patch @@ -0,0 +1,58 @@ +From 48c53164aebf9c07606e08f7108d0f7272d48d70 Mon Sep 17 00:00:00 2001 +From: Richard Marko +Date: Fri, 17 Jul 2015 13:52:35 +0200 +Subject: [PATCH] abrt-hook-ccpp: save core_backtrace from hook + +Don't use satyr for saving the file. + +Signed-off-by: Richard Marko +--- + src/hooks/abrt-hook-ccpp.c | 14 +++++++++----- + 1 file changed, 9 insertions(+), 5 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index d95228f..6759fc0 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -585,21 +585,25 @@ static int create_or_die(const char *filename, int user_core_fd) + perror_msg_and_die("Can't open '%s'", filename); + } + +-static void create_core_backtrace(pid_t tid, const char *executable, int signal_no, const char *dd_path) ++static void create_core_backtrace(pid_t tid, const char *executable, int signal_no, struct dump_dir *dd) + { + #ifdef ENABLE_DUMP_TIME_UNWIND + if (g_verbose > 1) + sr_debug_parser = true; + + char *error_message = NULL; +- bool success = sr_abrt_create_core_stacktrace_from_core_hook(dd_path, tid, executable, +- signal_no, &error_message); ++ char *core_bt = sr_abrt_get_core_stacktrace_from_core_hook(tid, executable, ++ signal_no, &error_message); + +- if (!success) ++ if (core_bt == NULL) + { + log("Failed to create core_backtrace: %s", error_message); + free(error_message); ++ return; + } ++ ++ dd_save_text(dd, FILENAME_CORE_BACKTRACE, core_bt); ++ free(core_bt); + #endif /* ENABLE_DUMP_TIME_UNWIND */ + } + +@@ -1028,7 +1032,7 @@ int main(int argc, char** argv) + + /* Perform crash-time unwind of the guilty thread. */ + if (tid > 0 && setting_CreateCoreBacktrace) +- create_core_backtrace(tid, executable, signal_no, dd->dd_dirname); ++ create_core_backtrace(tid, executable, signal_no, dd); + + /* We close dumpdir before we start catering for crash storm case. + * Otherwise, delete_dump_dir's from other concurrent +-- +2.4.3 + diff --git a/SOURCES/0153-abrt-hook-ccpp-reset-ownership-after-saving-core-bac.patch b/SOURCES/0153-abrt-hook-ccpp-reset-ownership-after-saving-core-bac.patch new file mode 100644 index 0000000..bbb2e45 --- /dev/null +++ b/SOURCES/0153-abrt-hook-ccpp-reset-ownership-after-saving-core-bac.patch @@ -0,0 +1,34 @@ +From 277ffd77b9ce6eaee007d72139b81804cb12f327 Mon Sep 17 00:00:00 2001 +From: Richard Marko +Date: Fri, 17 Jul 2015 14:19:34 +0200 +Subject: [PATCH] abrt-hook-ccpp: reset ownership after saving core backtrace + +Signed-off-by: Richard Marko +--- + src/hooks/abrt-hook-ccpp.c | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 6759fc0..5b277af 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -1027,13 +1027,13 @@ int main(int argc, char** argv) + } + #endif + +- /* And finally set the right uid and gid */ +- dd_reset_ownership(dd); +- + /* Perform crash-time unwind of the guilty thread. */ + if (tid > 0 && setting_CreateCoreBacktrace) + create_core_backtrace(tid, executable, signal_no, dd); + ++ /* And finally set the right uid and gid */ ++ dd_reset_ownership(dd); ++ + /* We close dumpdir before we start catering for crash storm case. + * Otherwise, delete_dump_dir's from other concurrent + * CCpp's won't be able to delete our dump (their delete_dump_dir +-- +2.4.3 + diff --git a/SOURCES/0154-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch b/SOURCES/0154-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch new file mode 100644 index 0000000..081c78f --- /dev/null +++ b/SOURCES/0154-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch @@ -0,0 +1,35 @@ +From ed68fcd4d3c8ef4ed3def66e3a237715567ac358 Mon Sep 17 00:00:00 2001 +From: "knoha@redhat.com" +Date: Fri, 24 Jul 2015 07:56:02 +0200 +Subject: [PATCH] abrt-merge-pstoreoops: merge files in descending order + +fs/pstore reads the data from kmsg_dump_get_buffer(), which starts at +the end of the kmsg buffer, in a while loop and increases Part no. in +each iteration. + +Related: rhbz#1233662 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-merge-pstoreoops.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/hooks/abrt-merge-pstoreoops.c b/src/hooks/abrt-merge-pstoreoops.c +index 6fc3109..36f1e0b 100644 +--- a/src/hooks/abrt-merge-pstoreoops.c ++++ b/src/hooks/abrt-merge-pstoreoops.c +@@ -64,9 +64,9 @@ int compare_oops_texts(const void *a, const void *b) + return -1; + if (aa->panic_no > bb->panic_no) + return 1; +- if (aa->part_no < bb->part_no) ++ if (aa->part_no > bb->part_no) + return -1; +- return (aa->part_no > bb->part_no); ++ return (aa->part_no < bb->part_no); + } + + int main(int argc, char **argv) +-- +2.4.3 + diff --git a/SOURCES/0155-abrt-auto-reporting-fix-related-to-conditional-compi.patch b/SOURCES/0155-abrt-auto-reporting-fix-related-to-conditional-compi.patch new file mode 100644 index 0000000..18e265d --- /dev/null +++ b/SOURCES/0155-abrt-auto-reporting-fix-related-to-conditional-compi.patch @@ -0,0 +1,33 @@ +From 5da022d3f1e6e54067dc265a6f6a37b9214daa6d Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 28 Jul 2015 13:17:25 +0200 +Subject: [PATCH] abrt-auto-reporting: fix related to conditional compilation + +We discovered that conditional compilation in abrt-auto-reporting does not +work. We forgot add -DAUTHENTICATED_AUTOREPORTING=1 flag if +AUTHENTICATED_AUTOREPORTING is enabled. + +Related to rhbz#1191572 +--- + src/daemon/Makefile.am | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/src/daemon/Makefile.am b/src/daemon/Makefile.am +index 7211216..8cbc2bc 100644 +--- a/src/daemon/Makefile.am ++++ b/src/daemon/Makefile.am +@@ -107,6 +107,11 @@ abrt_auto_reporting_CPPFLAGS = \ + -I$(srcdir)/../lib \ + $(LIBREPORT_CFLAGS) \ + -D_GNU_SOURCE ++ ++if AUTHENTICATED_AUTOREPORTING ++abrt_auto_reporting_CPPFLAGS += -DAUTHENTICATED_AUTOREPORTING=1 ++endif ++ + abrt_auto_reporting_LDADD = \ + ../lib/libabrt.la \ + $(LIBREPORT_LIBS) +-- +2.4.3 + diff --git a/SOURCES/0156-Update-translations.patch b/SOURCES/0156-Update-translations.patch new file mode 100644 index 0000000..2998a99 --- /dev/null +++ b/SOURCES/0156-Update-translations.patch @@ -0,0 +1,65642 @@ +From f71dac9346fd76b0d9988ea96759d4eded6e8db5 Mon Sep 17 00:00:00 2001 +From: Richard Marko +Date: Wed, 29 Jul 2015 11:59:04 +0200 +Subject: [PATCH] Update translations + +Related: #1181248 + +Signed-off-by: Richard Marko +--- + po/af.po | 281 ++++++++++++-------- + po/am.po | 281 ++++++++++++-------- + po/ar.po | 281 ++++++++++++-------- + po/as.po | 287 ++++++++++++-------- + po/ast.po | 281 ++++++++++++-------- + po/bal.po | 281 ++++++++++++-------- + po/be.po | 281 ++++++++++++-------- + po/bg.po | 285 ++++++++++++-------- + po/bn.po | 285 ++++++++++++-------- + po/bn_IN.po | 290 ++++++++++++-------- + po/bo.po | 281 ++++++++++++-------- + po/br.po | 281 ++++++++++++-------- + po/brx.po | 281 ++++++++++++-------- + po/bs.po | 281 ++++++++++++-------- + po/ca.po | 648 ++++++++++++++++++++++++++------------------ + po/cs.po | 827 ++++++++++++++++++++++++++++++++++++++++----------------- + po/cy.po | 281 ++++++++++++-------- + po/da.po | 281 ++++++++++++-------- + po/de.po | 333 ++++++++++++++--------- + po/de_CH.po | 281 ++++++++++++-------- + po/el.po | 281 ++++++++++++-------- + po/en_GB.po | 287 ++++++++++++-------- + po/en_US.po | 281 ++++++++++++-------- + po/eo.po | 281 ++++++++++++-------- + po/es.po | 604 +++++++++++++++++++++++------------------ + po/et.po | 285 ++++++++++++-------- + po/eu.po | 283 ++++++++++++-------- + po/fa.po | 281 ++++++++++++-------- + po/fi.po | 285 ++++++++++++-------- + po/fr.po | 326 ++++++++++++++--------- + po/gl.po | 281 ++++++++++++-------- + po/gu.po | 287 ++++++++++++-------- + po/he.po | 281 ++++++++++++-------- + po/hi.po | 287 ++++++++++++-------- + po/hr.po | 281 ++++++++++++-------- + po/hu.po | 320 +++++++++++++--------- + po/ia.po | 281 ++++++++++++-------- + po/id.po | 281 ++++++++++++-------- + po/ilo.po | 281 ++++++++++++-------- + po/is.po | 281 ++++++++++++-------- + po/it.po | 298 +++++++++++++-------- + po/ja.po | 296 +++++++++++++-------- + po/ka.po | 281 ++++++++++++-------- + po/kk.po | 281 ++++++++++++-------- + po/km.po | 281 ++++++++++++-------- + po/kn.po | 287 ++++++++++++-------- + po/ko.po | 324 +++++++++++++--------- + po/ky.po | 281 ++++++++++++-------- + po/lt.po | 287 ++++++++++++-------- + po/lv.po | 281 ++++++++++++-------- + po/mai.po | 281 ++++++++++++-------- + po/mk.po | 281 ++++++++++++-------- + po/ml.po | 294 ++++++++++++-------- + po/mn.po | 281 ++++++++++++-------- + po/mr.po | 287 ++++++++++++-------- + po/ms.po | 281 ++++++++++++-------- + po/nb.po | 382 +++++++++++++++----------- + po/nds.po | 281 ++++++++++++-------- + po/ne.po | 281 ++++++++++++-------- + po/nl.po | 322 +++++++++++++--------- + po/nn.po | 281 ++++++++++++-------- + po/nso.po | 281 ++++++++++++-------- + po/or.po | 287 ++++++++++++-------- + po/pa.po | 287 ++++++++++++-------- + po/pl.po | 329 ++++++++++++++--------- + po/pt.po | 296 +++++++++++++-------- + po/pt_BR.po | 337 +++++++++++++---------- + po/ro.po | 281 ++++++++++++-------- + po/ru.po | 390 ++++++++++++++++----------- + po/si.po | 281 ++++++++++++-------- + po/sk.po | 287 ++++++++++++-------- + po/sl.po | 281 ++++++++++++-------- + po/sq.po | 281 ++++++++++++-------- + po/sr.po | 717 +++++++++++++++++++++++++++++++++---------------- + po/sr@latin.po | 281 ++++++++++++-------- + po/sv.po | 328 ++++++++++++++--------- + po/ta.po | 287 ++++++++++++-------- + po/te.po | 287 ++++++++++++-------- + po/tg.po | 281 ++++++++++++-------- + po/th.po | 281 ++++++++++++-------- + po/tr.po | 299 +++++++++++++-------- + po/uk.po | 337 ++++++++++++++--------- + po/ur.po | 281 ++++++++++++-------- + po/vi.po | 281 ++++++++++++-------- + po/zh_CN.po | 303 ++++++++++++--------- + po/zh_HK.po | 281 ++++++++++++-------- + po/zh_TW.po | 301 ++++++++++++--------- + po/zu.po | 281 ++++++++++++-------- + 88 files changed, 16494 insertions(+), 10762 deletions(-) + +diff --git a/po/af.po b/po/af.po +index 37c03b3..659b79f 100644 +--- a/po/af.po ++++ b/po/af.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/af/)\n" + "Language: af\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/am.po b/po/am.po +index 8fadc26..25a673f 100644 +--- a/po/am.po ++++ b/po/am.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/am/)\n" + "Language: am\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/ar.po b/po/ar.po +index ae79445..3fc54c1 100644 +--- a/po/ar.po ++++ b/po/ar.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "Language: ar\n" + "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " + "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -55,7 +55,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -303,14 +303,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -321,90 +321,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -466,73 +476,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -544,68 +555,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -629,7 +640,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -639,6 +651,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -862,6 +879,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1081,69 +1127,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1692,71 +1738,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1764,49 +1816,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1815,21 +1872,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/as.po b/po/as.po +index 15b4548..ea497a2 100644 +--- a/po/as.po ++++ b/po/as.po +@@ -11,7 +11,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -21,7 +21,7 @@ msgstr "" + "language/as/)\n" + "Language: as\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -61,7 +61,7 @@ msgstr "DBus ৰ সহায়ত NetworkManager ৰ সৈতে সংযোগ + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager ৰ সহায়ত নেটৱাৰ্কৰ অৱস্থা নিৰ্ধাৰণ কৰিব নোৱাৰি: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ৰ অধিকাৰী হব নোৱাৰি" +@@ -343,7 +343,7 @@ msgstr "বিষয়ে" + msgid "Quit" + msgstr "প্ৰস্থান কৰক" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -353,7 +353,7 @@ msgstr "" + "\n" + "পেকেইজ ডাটাবেইচ প্ৰশ্ন কৰক আৰু পেকেইজ আৰু উপাদান নাম সঞ্চয় কৰক" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -364,80 +364,90 @@ msgstr "" + msgid "Problem directory" + msgstr "সমস্যা ডাইৰেকটৰি" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "সংৰূপ ফাইল" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "NUM k ক্লাএন্ট uid হিচাপে ব্যৱহাৰ কৰক" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "syslog -লে লগ কৰক" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "লগলে প্ৰগ্ৰাম নামসমূহ যোগ কৰক" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "অজ্ঞাত ত্ৰুটি" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' এটা বৈধ সমস্যা ডাইৰেকটৰি নহয়" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "প্ৰমাণীত নহয়" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "পৰিবৰ্তনৰ বাবে সমস্যাক অভিগম কৰিব নোৱাৰি" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "ডাইৰেকটৰি Chowning কৰোতে ব্যৰ্থ হল। অধিক বিৱৰণসমূহৰ বাবে চিস্টেম লগসমূহ " + "নীৰিক্ষণ কৰক।" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' এটা বৈধ উপাদানৰ নাম নহয়" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' ৰ আকাৰ প্ৰাপ্ত কৰিব পৰা নগল" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "কোনো সমস্যা স্থান অৱশিষ্ট নাই" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "সমস্যা ডাইৰেকটৰি '%s' ৰ পৰা উপাদান '%s' মচিব নোৱাৰি" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -445,12 +455,12 @@ msgid "" + msgstr "" + "নাম '%s' হেৰাইছে, অনুগ্ৰহ কৰি নীৰিক্ষণ কৰক একে নামৰ অন্য সেৱা চলি থকা নাই।\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "নিষ্ক্ৰিয়তাৰ NUM ছেকেণ্ডসমূহ পিছত প্ৰস্থান কৰিব" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "এই প্ৰগ্ৰামক ৰুট হিচাপে চলাব লাগিব।" + +@@ -526,74 +536,75 @@ msgstr "সমসাময়িক কৰমি সংখ্যা। অবিক + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB ত সৰ্বাধিক ক্যাশ আকাৰ। অবিকল্পিত হল" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "তৰ্কৰ অবৈধ সংখ্যা" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "অজ্ঞাত বিকল্প মান: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + #, fuzzy + msgid "SSL Client Authenticated auto reporting" + msgstr "নিঃশব্দ সমু সংবাদন" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -612,68 +623,68 @@ msgstr "" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "এটা ডাইৰেকটৰি নহয়: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "বাদ দিয়া হৈছে: '{0}' (স্লেশৰ সৈতে আৰম্ভ হয়)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "বাদ দিয়া হৈছে: '{0}' (ডটৰ সৈতে আৰম্ভ হয়)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "বাদ দিয়া হৈছে: '{0}' (অন্তৰ্ভুক্ত কৰে ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "বাদ দিয়া হৈছে: '{0}' (স্পেইচ অন্তৰ্ভুক্ত কৰে)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "বাদ দিয়া হৈছে: '{0}' (টেব অন্তৰ্ভুক্ত কৰে)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ডাইৰেকটৰিক '{0}' লৈ পৰিবৰ্তন কৰিব নোৱাৰি" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "অজ্ঞাত ফাইল ধৰণ: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' ত কাৰ্য্যকৰী ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ক '{1}' লৈ স্থানান্তৰ কৰিব নোৱাৰি" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' ক '{1}' লৈ কপি কৰিব নোৱাৰি" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' ত সত্যাপন ত্ৰুটি" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' আনপেক কৰা হৈছে" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ডাইৰেকটৰি সৃষ্টি কৰিব নোৱাৰি" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' ক আনপেক কৰিব নোৱাৰি" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' ক সফলভাৱে প্ৰক্ৰিয়াকৰণ কৰা হল" + +@@ -697,7 +708,8 @@ msgstr "'%s' chown কৰিব নোৱাৰি: %s" + msgid "Deleting problem directory failed: %s" + msgstr "সমস্যা ডাইৰেকটৰি মচি পেলোৱা ব্যৰ্থ হল: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus ৰ পৰা সমস্যা তথ্য প্ৰাপ্ত কৰিব নোৱাৰি: %s" +@@ -707,6 +719,11 @@ msgstr "abrt-dbus ৰ পৰা সমস্যা তথ্য প্ৰাপ + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ৰ পৰা সমস্যা তালিকা প্ৰাপ্ত কৰিব নোৱাৰি: %s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -978,6 +995,35 @@ msgstr "সন্ধানহিন debuginfo ফাইল: {0}" + msgid "All debuginfo files are available" + msgstr "সকলো debuginfo ফাইল উপলব্ধ" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1217,7 +1263,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr " লেতেৰা মডিউলসমূহ: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1227,52 +1273,52 @@ msgstr "" + "\n" + "FILE ৰ পৰা oops নিষ্কাষণ কৰক (অথবা প্ৰাথমিক ইনপুট)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "প্ৰতিটো প্ৰাপ্ত oops ৰ বাবে DIR ত নতুন সমস্যা ডাইৰেকটৰি সৃষ্টি কৰক" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation নিচিনা একে, DumpLocation ক abrt.conf ত ধাৰ্য্য কৰা হয়। " + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "PROBLEM ত নিষ্কাষিত তথ্য সংৰক্ষণ কৰক" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "সমস্যা ডাইৰেকটৰি বিশ্ব পঢ়িব পৰা কৰক" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "থ্ৰটল ডাইৰেকটৰি নিৰ্মাণ প্ৰতি ছেকেণ্ডত ১ টা" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout লে সন্ধান স্ট্ৰিং(সমূহ) প্ৰিন্ট কৰি প্ৰস্থান কৰক" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "regex কমপাইল কৰিবলে ব্যৰ্থ" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "সমস্যাক আপডেইট কৰিব নোৱাৰি: এটাৰ অধিক oops পোৱা গল" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d ছেকেণ্ডৰ বাবে নিদ্ৰা অৱস্থাত" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1282,11 +1328,11 @@ msgstr "" + "\n" + "FILE ৰ পৰা Xorg ক্ৰেশ নিষ্কাষণ কৰক (অথবা প্ৰামাণিক ইনপুট)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "প্ৰামাণিক আউটপুটত পোৱা স্খলন তথ্য প্ৰিন্ট কৰক" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "প্ৰতিটো প্ৰাপ্ত স্খলনৰ বাবে DIR ত সমস্যা ডাইৰেকটৰি সৃষ্টি কৰক" + +@@ -1882,71 +1928,77 @@ msgstr "প্ৰিন্ট প্ৰাপ্ত oopses" + msgid "Delete files with found oopses" + msgstr "প্ৰাপ্ত oopses ৰ সৈতে ফাইলসমূহ মচি পেলাওক" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' এ এটাৰ অধিক সমস্যা ডাইৰেকটৰি চিনাক্ত কৰে" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ব্যৱহাৰ: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "সমস্যাসমূহ দেখুৱাওক [in DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "সমস্যা ডাইৰেকটৰি DIR আতৰাওক" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR ত সমস্যা তথ্য বিশ্লেষণ কৰি সংবাদন কৰক" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR ৰ বিষয়ে তথ্য প্ৰিন্ট কৰক" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "শেহতীয়া ক্ৰেশসমূহৰ গণনা প্ৰিন্ট কৰক" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "একাধিক সমস্যাসমূহ প্ৰক্ৰিয়া কৰক" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক তথ্যৰ বাবে 'abrt-cli COMMAND --help' চাওক" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "কেৱল সংবাদন-নকৰা সমস্যাবোৰ তালিকাভুক্ত কৰক" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "বিৱৰিত সংবাদ দেখুৱাওক" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পকৈ শেহতীয়া সমস্যাসমূহ তালিকাভুক্ত কৰক" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পতকৈ পুৰনি সমস্যাসমূহ তালিকাভুক্ত কৰক" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1956,51 +2008,56 @@ msgstr "" + "স্বসংবাদন বৈশিষ্ট্য অসামৰ্থবান কৰা আছে। অনুগ্ৰহ কৰি ইয়াক ৰুট সুবিধা থকা এজন\n" + "ব্যৱহাৰকাৰী ৰূপে 'abrt-auto-reporting enabled' প্ৰেৰণ কৰি সামৰ্থবান কৰক\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "িয়াতকৈ ডাঙৰ লিখনীক এব্ৰিজ্ড দেখুৱা হব" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "এই ধৰণৰ কোনো সমস্যা ডাইৰেকটৰি '%s' নাই" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& অৱস্থা [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "কেৱল সমস্যা গণনাক কোনো বাৰ্তা নহোৱাকৈ প্ৰিন্ট কৰক" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "কেৱল ধাৰ্য্যত টাইমস্টেম্পকে অধিক শেহতীয়া সমস্যাসমূহ প্ৰিন্ট কৰক" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' মচি পেলোৱা হৈছে" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "আৰু [options] DIR সংবাদন কৰক..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "সংবাদন কৰাৰ পিছত PROBLEM_DIR আতৰাওক" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' মচি পেলোৱা হৈছে" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "কাৰ্য্যসমূহ: remove(rm), info(i), skip(s):" +@@ -2009,21 +2066,21 @@ msgstr "কাৰ্য্যসমূহ: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "কাৰ্য্যসমূহ: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' সংবাদন কৰা" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "পৰৱৰ্তী সমস্যাৰ বাবে ENTER টিপক:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since তৰ্ক নাথাকিলে, সকলো চিনাক্ত কৰা সমস্যাবোৰ পুনৰাবৃত্তি হয়।" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "কেৱল টাইমস্টাম্পৰ পিছত চিনাক্ত কৰা সমস্যাবোৰ নিৰ্বাচন কৰে" + +diff --git a/po/ast.po b/po/ast.po +index 2f6e695..2f7a2eb 100644 +--- a/po/ast.po ++++ b/po/ast.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/ast/)\n" + "Language: ast\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -302,14 +302,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -320,90 +320,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -465,73 +475,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -543,68 +554,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -628,7 +639,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -638,6 +650,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -861,6 +878,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1080,69 +1126,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1691,71 +1737,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1763,49 +1815,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1814,21 +1871,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/bal.po b/po/bal.po +index 53c32aa..32c0a48 100644 +--- a/po/bal.po ++++ b/po/bal.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/bal/)\n" + "Language: bal\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/be.po b/po/be.po +index 53dc3b6..732cfdb 100644 +--- a/po/be.po ++++ b/po/be.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "Language: be\n" + "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -302,14 +302,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -320,90 +320,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -465,73 +475,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -543,68 +554,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -628,7 +639,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -638,6 +650,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -861,6 +878,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1080,69 +1126,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1691,71 +1737,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1763,49 +1815,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1814,21 +1871,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/bg.po b/po/bg.po +index de5d1b5..ce7ea26 100644 +--- a/po/bg.po ++++ b/po/bg.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/bg/)\n" + "Language: bg\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не мога да взема собствеността на '%s'" +@@ -305,7 +305,7 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -315,7 +315,7 @@ msgstr "" + "\n" + "Запитване към базата данни и съхраняване на пакета и името на компонента" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -326,78 +326,88 @@ msgstr "" + msgid "Problem directory" + msgstr "Директория с проблема" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Конфигурационен файл" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [опции]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Запис в системния журнал" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Добавяй имената на програмите в записа" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Непозната грешка" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' не е валидна директория с проблем" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Неупълномощен" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -406,12 +416,12 @@ msgstr "" + "Името '%s' беше изгубено, моля, проверете дали не работи друга услуга, " + "собственик на името.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Изход след NUM секунди бездействие" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Тази програма трябва да бъде стартирана като root." + +@@ -473,73 +483,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -551,68 +562,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -636,7 +647,8 @@ msgstr "Не мога да chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Изтриването на директория с проблем се провали: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Не мога да получа данни за проблем от abrt-dbus: %s" +@@ -646,6 +658,11 @@ msgstr "Не мога да получа данни за проблем от abrt + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Не мога да получа списъка проблеми от abrt-dbus: %s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -883,6 +900,35 @@ msgstr "Липсващ debuginfo файл: {0}" + msgid "All debuginfo files are available" + msgstr "Всички debuginfo файлове са на разположение" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1112,58 +1158,58 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Също като -d DumpLocation, DumpLocation е зададено в abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Направи директорията с проблема достъпна за четене от всички" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "Отпечатва търсените низове на стандартния изход и излиза" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1173,11 +1219,11 @@ msgstr "" + "\n" + "Извлечи Xorg срива от FILE (или стандартния вход)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Отпечатай намерените данни за срив на стандартния изход" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1765,71 +1811,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Употреба: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Премахни директорията с проблем DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Анализирай и рапортувай данните за проблем в DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Отпечатай информация за DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Вижте 'abrt-cli COMMAND --help' за повече информация" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Покажи детайлен рапорт" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1837,49 +1889,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1888,21 +1945,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/bn.po b/po/bn.po +index 9b72c11..87f166a 100644 +--- a/po/bn.po ++++ b/po/bn.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -23,7 +23,7 @@ msgstr "" + "language/bn/)\n" + "Language: bn\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -59,7 +59,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -313,7 +313,7 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -323,7 +323,7 @@ msgstr "" + "\n" + "প্যাকেজের ডাটাবেস সন্ধান করুন ও প্যাকেজ ও সামগ্রীর নাম সংরক্ষণ করুন" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -334,90 +334,100 @@ msgstr "" + msgid "Problem directory" + msgstr "সমস্যাযুক্ত ডিরেক্টরি" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "কনফিগারেশন ফাইল" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "syslog-এ লগ করা হবে" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "লগের মধ্যে প্রোগ্রামের নাম যোগ করুন" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM সেকেন্ড নিষ্ক্রিয় থাকলে প্রস্থান করা হবে" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -479,73 +489,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -557,68 +568,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -642,7 +653,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -652,6 +664,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -891,6 +908,35 @@ msgstr "debuginfo ফাইল অনুপস্থিত: {0}" + msgid "All debuginfo files are available" + msgstr "সকল debuginfo ফাইল উপলব্ধ" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1117,71 +1163,71 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা " + "হয়" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "সমস্যাযুক্ত ডিরেক্টরিটি সার্বজনীন রূপে পাঠযোগ্য হবে" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1764,71 +1810,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "সমস্যার ডিরেক্টরি DIR সরিয়ে ফেলুন" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR-র মধ্যে সমস্যার তথ্য বিশ্লেষণ করে দায়ের করুন" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR সম্পর্কে তথ্য প্রিন্ট করুন" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "বিস্তারিত বিবরণ প্রদর্শন করা হবে" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1836,49 +1888,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1887,21 +1944,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/bn_IN.po b/po/bn_IN.po +index 08889ff..2777fca 100644 +--- a/po/bn_IN.po ++++ b/po/bn_IN.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -23,7 +23,7 @@ msgstr "" + "abrt/language/bn_IN/)\n" + "Language: bn-IN\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -70,7 +70,7 @@ msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager-র মাধ্যমে নেটওয়ার্ক নির্ধারণ করা সম্ভব নয়: %s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'-র মালিকানা গ্রহণ করা সম্ভব নয়" +@@ -386,7 +386,7 @@ msgid "Quit" + msgstr "প্রস্থান করুন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -397,7 +397,7 @@ msgstr "" + "প্যাকেজের ডাটাবেস সন্ধান করুন ও প্যাকেজ ও সামগ্রীর নাম সংরক্ষণ করুন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -409,94 +409,104 @@ msgid "Problem directory" + msgstr "সমস্যাযুক্ত ডিরেক্টরি" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "কনফিগারেশন ফাইল" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "ক্লায়েন্ট id রূপে NUM ব্যবহার করা হবে" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "syslog-এ লগ করা হবে" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "লগের মধ্যে প্রোগ্রামের নাম যোগ করুন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "অজানা ত্রুটি" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' বৈধ সমস্যাযুক্ত ডিরেক্টরি নয়" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "'%s' উপাদান সংশোধন করা যায় না" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "অনুমোদিত নয়" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "সংশোধনের জন্য সমস্যা অ্যাক্সেস করা যায় না" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chowning ডিরেক্টরি ব্যর্থ হয়েছে। অারো বিস্তারিত জানতে, সিস্টেম লগ দেখুন।" + ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' কোনো বৈধ উপাদান নাম নয়" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' এর মাপ পাওয়া যায় না" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "কোনো সমস্যা স্পেস পড়ে নেই" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "'%s' উপাদান মোছা যায় না, '%s' সমস্যা ডিরেক্টরি থেকে" + ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -506,13 +516,13 @@ msgstr "" + "পরিসেবা চলছে কি না।\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM সেকেন্ড নিষ্ক্রিয় থাকলে প্রস্থান করা হবে" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "এই প্রোগ্রামটি শুধুমাত্র root পরিচয়ে সঞ্চালন করা আবশ্যক" + +@@ -601,78 +611,79 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "সর্বাধিক ক্যাশে মাপ MiB এ। ডিফল্ট হল" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "প্রমাণীকরণ বন্ধ করে" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Red Hat Support ব্যবহারকারীর নাম" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support পাসওয়ার্ড, দেওয়া না থাকলে, তা দিতে বলা হবে" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL শংসাপত্রের পাথ বা শংসাপত্রের ধরন" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "অাপনাকে --password -এর জন্য --username ও নির্দিষ্ট করতে হবে" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + "অাপনি --username বা --certificate -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + "অাপনি --username বা --anonymous -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + "অাপনি --anonymous বা --certificate -এর মধ্যে যেকোনো একটি ব্যবহার করতে পারবেন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "অার্গুমেন্টের সংখ্যা অবৈধ" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "অজানা বিকল্প মান: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "পাসওয়ার্ড:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "পাসওয়ার্ড না দিয়ে এগিয়ে যেতে পারবেন না\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP প্রমাণীকরণ স্বয়ংক্রিয় ভাবে জানানো" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL ক্লায়েন্ট প্রমাণীকরণ স্বয়ংক্রিয় ভাবে জানানো" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "বেনামে স্বয়ংক্রিয় ভাবে জানানো" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -691,68 +702,68 @@ msgstr "" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "একটি ডিরেক্টরি নয়: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (স্ল্যাশ দিয়ে শুরু)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (ডট দিয়ে শুরু)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (বিশিষ্ট ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (স্পেস রয়েছে)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "ছেড়ে যাওয়া হচ্ছে: '{0}' (ট্যাব রয়েছে)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ডিরেক্টরি '{0}'-এ পরিবর্তন করা সম্ভব নয়" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "অজানা ফাইল ধরন: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' -এ ওয়ার্কিং ডিরেক্টরি তৈরি করা সম্ভব নয়" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}', '{1}' -এ সরানো সম্ভব নয়" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}', '{1}'-এ অনুলিপি করা সম্ভব নয়" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}'-এ যাচাইকরণ ত্রুটি" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' অান-প্যাক করা হচ্ছে" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ডিরেক্টরি তৈরি করা সম্ভব নয়" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' অান-প্যাক করা সম্ভব নয়" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' সফল ভাবে প্রক্রিয়া করা হয়েছে" + +@@ -781,7 +792,8 @@ msgid "Deleting problem directory failed: %s" + msgstr "সমস্যাপূর্ণ ডিরেক্টি মুছে ফেলতে ব্যর্থ: %s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus থেকে সমস্যাপূর্ণ তথ্য সংগ্রহ করা যায়নি: %s" +@@ -792,6 +804,11 @@ msgstr "abrt-dbus থেকে সমস্যাপূর্ণ তথ্য + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus থেকে সমস্যার তালিকা সংগ্রহ করা যায়নি: %s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -1097,6 +1114,35 @@ msgstr "debuginfo ফাইল অনুপস্থিত: {0}" + msgid "All debuginfo files are available" + msgstr "সকল debuginfo ফাইল উপলব্ধ" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" +@@ -1380,7 +1426,7 @@ msgid " Tainted modules: %s." + msgstr " টেন্টেড মডিউল: %s." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1391,7 +1437,7 @@ msgstr "" + "oops বের করুন, FILE থেকে (বা স্ট্যান্ডার্ড ইনপুট)" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Print found oopses on standard output" + msgstr "প্রমিত আউটপুটের মধ্যে print দ্বারা oops-র সম্মুখীন হওয়া গিয়েছে" + +@@ -1399,55 +1445,55 @@ msgstr "প্রমিত আউটপুটের মধ্যে print দ্ + #. 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + "প্রত্যেক খুঁজে পাওয়া oops এর জন্য DIR এ একটি নতুন সমস্যা ডিরেক্টরি তৈরি করুন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation -র অনুরূপ, abrt.conf ফাইলের মধ্যে DumpLocation উল্লেখ করা " + "হয়" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "বের করে নিয়ে অাসা তথ্য PROBLEM এ সংরক্ষণ করুন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "সমস্যাযুক্ত ডিরেক্টরিটি সার্বজনীন রূপে পাঠযোগ্য হবে" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Throttle সমস্যা ডিরেক্টরি তৈরি, সেকেন্ড প্রতি 1" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "অনুসন্ধানের পংক্তিগুলি stdout-এ প্রদর্শন করে প্রস্থান করা হবে" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "regex একত্রিত করতে ব্যর্থ হয়েছে" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "সমস্যার অাপডেট করা যায় না: একটির বেশি oops খুঁজে পাওয়া গেছে" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d সেকেন্ডের জন্য ঘুমন্ত" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1458,12 +1504,12 @@ msgstr "" + "Extract Xorg crash from FILE (or standard input)" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "বিপর্যয় সম্বন্ধে প্রাপ্ত তথ্য স্ট্যান্ডার্ড আউটপুটে প্রিন্ট করা হবে" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "খুঁজে পাওয়া প্রত্যেক ক্র্যাশের জন্য DIR এ সমস্যা ডিরেক্টরি তৈরি করুন" + +@@ -2167,50 +2213,55 @@ msgid "Delete files with found oopses" + msgstr "খুঁজে পাওয়া oopses সমেত ফাইলগুলি মুছুন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' একটির বেশি সমস্যার ডিরেক্টরি সনাক্ত করেছে" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ব্যবহারপ্রণালী: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "সমস্যাগুলি তালিকাভুক্ত করুন [DIRs-এ]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "সমস্যার ডিরেক্টরি DIR সরিয়ে ফেলুন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR-র মধ্যে সমস্যার তথ্য বিশ্লেষণ করে দায়ের করুন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR সম্পর্কে তথ্য প্রিন্ট করুন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "সাম্প্রতিক ক্র্যাশগুলির গণনা মুদ্রণ করুন" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "একাধিক সমস্যাগুলি প্রক্রিয়া করুন" + ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "অধিক বিবরণের জন্য 'abrt-cli COMMAND --help' দেখুন" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -2218,37 +2269,36 @@ msgstr "" + "%sRed Hat গ্রাহক পোর্টালে একটি কেস তৈরি করতে 'abrt-cli report %s' চালনা " + "করুন\n" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "শুধুমাত্র না জানানো সমস্যা তালিকাভুক্ত করুন" + + # translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "বিস্তারিত বিবরণ প্রদর্শন করা হবে" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র " + "তালিকাভুক্ত করুন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + "উল্লিখিত সময়স্ট্যাম্পের চেয়ে পুরনো সমস্যাগুলিই শুধুমাত্র তালিকাভুক্ত করুন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2260,58 +2310,62 @@ msgstr "" + "'abrt-auto-reporting enabled' দিয়ে তা সক্রিয় করার কথা বিবেচনা করুন\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "এর থেকে বড় পাঠ্য সংক্ষিপ্ত করে দেখানো হবে" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "কোনো '%s' সমস্যা ডিরেক্টরি নেই" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& স্ট্যাটাস [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "কোনো বার্তা ছাড়া শুধুমাত্র সমস্যা গণনা মুদ্রণ করুন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "উল্লিখিত সময়স্ট্যাম্পের চেয়ে অারো সাম্প্রতিক সমস্যাগুলিই শুধুমাত্র মুদ্রণ " + "করুন" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' মোছা হচ্ছে" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& রিপোর্ট [বিকল্প] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "রিপোর্ট করার পরে PROBLEM_DIR সরান" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' মোছা হচ্ছে" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "অ্যাকশন: remove(rm), info(i), skip(s):" +@@ -2320,22 +2374,22 @@ msgstr "অ্যাকশন: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "অ্যাকশন: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' রিপোর্ট করা হচ্ছে" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "পরবর্তী সমস্যার জন্য ENTER টিপুন:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since অার্গুমেন্ট ব্যতীত, সমস্ত সনাক্ত করা সমস্যার উপরে পুনরাবৃত্তি করুন।" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "শুধুমাত্র টাইম-স্ট্যাম্পের পরে সনাক্ত করা সমস্যাগুলি নির্বাচন করে" + +diff --git a/po/bo.po b/po/bo.po +index a306d7b..79ef379 100644 +--- a/po/bo.po ++++ b/po/bo.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/bo/)\n" + "Language: bo\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/br.po b/po/br.po +index faa741f..34f8c73 100644 +--- a/po/br.po ++++ b/po/br.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/br/)\n" + "Language: br\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/brx.po b/po/brx.po +index c806934..ebf91d8 100644 +--- a/po/brx.po ++++ b/po/brx.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/brx/)\n" + "Language: brx\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/bs.po b/po/bs.po +index 6a1d9de..f129319 100644 +--- a/po/bs.po ++++ b/po/bs.po +@@ -9,7 +9,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "Language: bs\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -56,7 +56,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -306,14 +306,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -324,90 +324,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Konfiguracijska datoteka" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Zapiši u syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Dodaj nazive programa u zapis" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -469,73 +479,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -547,68 +558,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -632,7 +643,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -642,6 +654,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -865,6 +882,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1084,69 +1130,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1704,71 +1750,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1776,49 +1828,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1827,21 +1884,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/ca.po b/po/ca.po +index c581fdf..ad40359 100644 +--- a/po/ca.po ++++ b/po/ca.po +@@ -5,22 +5,22 @@ + # Translators: + # Bernabé Borrero , 2012 + # Jiří Moskovčák , 2011 +-# Robert Antoni Buj Gelonch , 2015. #zanata ++# Robert Antoni Buj Gelonch , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-05 04:04-0500\n" +-"Last-Translator: Robert Antoni Buj Gelonch \n" ++"PO-Revision-Date: 2015-05-09 05:27-0400\n" ++"Last-Translator: Robert Antoni Buj Gelonch \n" + "Language-Team: Catalan (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ca/)\n" + "Language: ca\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -28,7 +28,7 @@ msgstr "Eina d'enviament automàtic d'informes d'errors" + + #: ../src/applet/abrt-applet.desktop.in.h:2 + msgid "ABRT notification applet" +-msgstr "Mini-aplicació de notificacions d'ABRT" ++msgstr "Mini-aplicació de notificacions de l'ABRT" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/applet/applet.c:130 +@@ -67,16 +67,16 @@ msgstr "" + "No s'ha pogut determinat l'estat de la xarxa a través de NetworkManager: %s" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" +-msgstr "No es pot ser el propietari de '%s'" ++msgstr "No es pot ser el propietari de «%s»" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/applet/applet.c:350 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "No es pot obrir el directori per a l'escriptura '%s'" ++msgstr "No es pot obrir el directori per a l'escriptura «%s»" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:417 +@@ -124,7 +124,7 @@ msgstr "" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +-msgstr "Avís" ++msgstr "Advertència" + + #: ../src/applet/applet.c:834 + msgid "" +@@ -210,7 +210,7 @@ msgstr "No es pot mostrar la notificació: %s" + #: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" +-msgstr "No es pot llegir des del canal gio: '%s'" ++msgstr "No es pot llegir des del canal gio: «%s»" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/applet/applet.c:1182 +@@ -231,7 +231,7 @@ msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" +-"Error en obrir la connexió al gestor de sessions: '%s', la notificació pot " ++"Error en obrir la connexió al gestor de sessions: «%s», la notificació pot " + "tornar a apareixe el proper cop que inicieu una sessió" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +@@ -274,11 +274,11 @@ msgid "" + "trace from the coredump but you have to upload the coredump to this service. " + "With this option disabled ABRT will upload the coredump without asking." + msgstr "" +-"El fitxer de bolcatge de memòria és necessari per generar la traça de la " ++"El fitxer del bolc de la memòria és necessari per generar la traça de la " + "pila, que és una operació que consumeix temps i espai. L'ABRT proporciona un " +-"servei que genera la traça de la pila des del bolcatge de memòria, però heu " +-"de pujar el bolcatge de memòria a aquest servei. Amb aquesta opció " +-"inhabilitada l'ABRT pujarà el bolcatge de memòria sense preguntar." ++"servei que genera la traça de la pila des del bolc de la memòria, però heu " ++"de pujar el bolc de la memòria a aquest servei. Amb aquesta opció " ++"inhabilitada l'ABRT pujarà el bolc de la memòria sense preguntar." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 +@@ -302,8 +302,8 @@ msgid "" + "uReports are sent automatically immediately after problem detection." + msgstr "" + "L'uReport és la descripció breu i completament anònima d'un problema. L'ABRT " +-"utilitza els uReport per a la ràpida detecció de duplicats a nivell global. " +-"En la configuració per defecte l'uReport és enviat al començament del procés " ++"utilitza els uReport per a la ràpida detecció global de duplicats. En la " ++"configuració per defecte l'uReport és enviat al començament del procés " + "informador. Amb aquesta opció habilitada els uReports són enviats " + "automàticament tot just després de la detecció del problema." + +@@ -332,18 +332,20 @@ msgstr "" + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "Pregunta abans de pujar un bolcatge de memòria" ++msgstr "Pregunta abans de pujar un bolc de la memòria" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." + msgstr "" ++"Amb aquesta opció habilitada l'ABRT sempre crea el tiquet de l'error amb " ++"accés restringit si es detecten possibles dades sensibles." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "Sol·licita un tiquet privat per a informació sensible" ++msgstr "Sol·licita un tiquet privat per a la informació sensible" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 +@@ -357,9 +359,9 @@ msgid "" + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" +-"El problemes incomplets són detectats mentre l'ordinador s'està aturant o un " +-"usuari tanca la sessió. A fi de proporcionar informes de problemes valuosos, " +-"l'ABRT no us permetrà enviar aquests problemes." ++"Els problemes incomplets es detecten mentre l'ordinador s'està aturant o " ++"s'està tancant la sessió d'un usuari. A fi de proporcionar informes de " ++"problemes valuosos, l'ABRT no us permetrà enviar aquests problemes." + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/system-config-abrt.c:75 +@@ -393,7 +395,7 @@ msgid "Quit" + msgstr "Surt" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -405,7 +407,7 @@ msgstr "" + "component" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -416,105 +418,119 @@ msgstr "" + msgid "Problem directory" + msgstr "Directori del problema" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Fitxer de configuració" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [opcions]" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "Utilitza NUM com a uid de client" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Enregistra a syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Afegir els noms dels programes al registre" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Error desconegut" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" +-msgstr "'%s' no es un directori del problema vàlid" ++msgstr "«%s» no és un directori del problema vàlid" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" +-msgstr "L'element '%s' no es pot modificar " ++msgstr "L'element «%s» no es pot modificar " + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "No autoritzat" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "No es pot accedir al problema per a la notificació" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Error en canviar el propietari del directori. Reviseu els registres del " + "sistema per a més detalls." + ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "No es pot accedir a la lectura del problema" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" +-msgstr "'%s' no és un nom d'element vàlid" ++msgstr "«%s» no és un nom d'element vàlid" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" +-msgstr "No es pot obtenir la mida de '%s'" ++msgstr "No es pot obtenir la mida de «%s»" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" +-msgstr "" ++msgstr "No queda espai per al problema" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "No es pot eliminar l'element '%s' del directori del problema '%s'" ++msgstr "No es pot eliminar l'element «%s» del directori del problema «%s»" ++ ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "No es pot accedir al problema" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" ++"S'ha perdut el nom «%s», comproveu que no s'estigui executant un altre " ++"servei que sigui el propietari del nom.\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Surt després de NUM segons d'inactivitat" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Aquest programa cal executar-lo com a root." + +@@ -561,6 +577,8 @@ msgstr "Comuniqueu-vos directament amb l'usuari" + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" + msgstr "" ++"No hi ha cap treballador lliure i la memòria intermèdia està plena. S'està " ++"ometent l'arxiu «%s»" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -573,6 +591,15 @@ msgid "" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [DIRECTORI_DE_PUJADA]\n" ++"\n" ++"\n" ++"Observa el DIRECTORI_DE_PUJADA i desempaqueta els arxius d'entrada al " ++"DumpLocation\n" ++"indicat en l'abrt.conf\n" ++"\n" ++"Si no es proporciona el DIRECTORI_DE_PUJADA, s'utilitza el valor de\n" ++"l'opció WatchCrashdumpArchiveDir de l'abrt.conf" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/daemon/abrt-upload-watch.c:281 +@@ -590,76 +617,79 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "La mida màxima de la memòria cau en MiB. Per defecte són " + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Desactiva l'autenticació" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "nom d'usuari del Red Hat Support" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" ++"Contrasenya de Red Hat Support, si no es proporciona, se us preguntarà per " ++"ella" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "Els camins als certificats SSL de l'uReport o el tipus de certificat" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "També heu d'especificar --username per a --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "Podeu utilitzar tant --username com --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "Podeu utilitzar tant --username com --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "Podeu utilitzar tant --anonymous com --certificate" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "El nombre d'arguments no és vàlid" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "Valor d'opció desconeguda: '%s'\n" ++msgstr "Valor d'opció desconeguda: «%s»\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" +-msgstr "" ++msgstr "Contrasenya:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "No es pot continuar sense la contrasenya\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "presentació automàtica d'informes d'HTTP autentificat" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" +-msgstr "" ++msgstr "presentació automàtica d'informes de client autentificat SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "presentació anònima dels informes" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -679,83 +709,83 @@ msgstr "" + " FILENAME - Nom del fitxer de l'arxiu pujat\n" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "No és un directori: '{0}'" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "S'està ometent: ''{0}'' (comença amb barra invertida)" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "S'està ometent: ''{0}'' (comença amb punt)" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "S'està ometent: ''{0}'' (conté ..)" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "S'està ometent: ''{0}'' (conté espai)" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "S'està ometent: ''{0}'' (conté tabulador)" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "No es pot canviar el directori '{0}'" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Tipus de fitxer desconegut: '{0}'" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "No es pot crear el directori de treball en '{0}'" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "No es pot moure '{0}' a '{1}'" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "No es pot copiar '{0}' a '{1}'" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Error de verificació en '{0}'" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "S'està desempaquetant '{0}'" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "No es pot crear el directori '{0}'" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "No es pot desempaquetar '{0}'" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' s'ha processat amb èxit" + +@@ -775,7 +805,7 @@ msgstr "No es pot connectar al DBus del sistema: %s" + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" +-msgstr "No es pot canviar el propietari '%s': %s" ++msgstr "No es pot canviar el propietari de «%s»: %s" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/lib/problem_api_dbus.c:97 +@@ -784,7 +814,8 @@ msgid "Deleting problem directory failed: %s" + msgstr "Error en eliminar el directori del problema: %s" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "No es poden obtenir les dades del problema des de l'abrt-dbus: %s" +@@ -796,10 +827,16 @@ msgid "Can't get problem list from abrt-dbus: %s" + msgstr "No es pot obtenir el llistat de problemes des de l'abrt-dbus: %s" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "No es pot provar si l'element existeix sobre l'abrt-dbus: %s" ++ ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +-msgstr "No es pot crear el fitxer temporal '%s'" ++msgstr "No es pot crear el fitxer temporal «%s»" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/lib/ignored_problems.c:250 +@@ -808,15 +845,15 @@ msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" +-"No es pot escriure en '%s'. El problema '%s' no es traurà dels problemes " +-"ignorats '%s'" ++"No es pot escriure en «%s». El problema «%s» no es traurà dels problemes " ++"ignorats «%s»" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "No es pot reanomenar '%s' a '%s'. Error en eliminar el problema '%s'" ++msgstr "No es pot reanomenar «%s» a «%s». Error en eliminar el problema «%s»" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 +@@ -857,20 +894,20 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula i desa el UUID del bolcatge de memòria en el directori del problema " ++"Calcula i desa el UUID del bolc de la memòria en el directori del problema " + "DIR" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "S'està analitzant el bolcatge de memòria '%s'" ++msgstr "S'està analitzant el bolc de la memòria «%s»" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "Falta l'id de contrucció: %s" ++msgstr "Falta l'id. de la construcció: %s" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-core.in:142 +@@ -892,7 +929,8 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula i desa el UUID i el DUPHASH per al directori del problema oops DIR" ++"Calcula i desa el UUID i el DUPHASH per al directori DIR del problema de " ++"l'oops" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-xorg.c:73 +@@ -909,7 +947,7 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" +-msgstr "El mòdul '%s' estava carregat - no s'informarà d'aquesta fallida" ++msgstr "El mòdul «%s» estava carregat - no s'informarà d'aquesta fallida" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-python.c:36 +@@ -920,7 +958,7 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula i desa el UUID i el DUPHASH dels bolcatges de fallida de Python" ++"Calcula i desa el UUID i el DUPHASH dels bolcs de la fallida de Python" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 +@@ -934,7 +972,7 @@ msgstr "El fitxer {0} no existeix" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" +-msgstr "" ++msgstr "S'estan extraient el text de l'oops des del nucli" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 +@@ -946,18 +984,21 @@ msgstr "No es pot processar {0}:\n" + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +-msgstr "No es pot extraure el missatge oops: '{0}'" ++msgstr "No es pot extraure el missatge de l'oops: '{0}'" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" +-msgstr "El text dels oop s'ha extret am èxit" ++msgstr "El text de l'oops s'ha extret amb èxit" + + #: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" ++"El registre del nucli del sistema operatiu indica que es van detectar errors " ++"de maquinari.\n" ++"El més probable és que no sigui un problema de programari.\n" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-generate-backtrace.c:42 +@@ -968,7 +1009,7 @@ msgid "" + msgstr "" + "& [opcions] -d DIR\n" + "\n" +-"Analitza el bolcatge de memòria en el directori del problema DIR, genera i " ++"Analitza el bolc de la memòria en el directori del problema DIR, genera i " + "desa la traça inversa" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 +@@ -986,7 +1027,7 @@ msgstr "Mata al gdb si s'executa més de NUM segons" + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +-msgstr "" ++msgstr "S'ha generat i s'ha desat la traça inversa, %u bytes" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 +@@ -997,7 +1038,7 @@ msgid "" + msgstr "" + "& [-v] [-r] -d DIR\n" + "\n" +-"Crea una traça inversa a nivell de bolcatge de memòria des del bolcatge de " ++"Crea una traça inversa a escala del bolc de la memòria des del bolc de la " + "memòria i el corresponent binari" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +@@ -1080,7 +1121,7 @@ msgstr "No es pot obrir {0}: {1}" + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "" +-"El bolcatge de memòria fa referència a {0} fitxers debuginfo, {1} d''ells no " ++"El bolc de la memòria fa referència a {0} fitxers debuginfo, {1} d''ells no " + "estan instal·lats." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +@@ -1103,18 +1144,53 @@ msgstr "Falta el fitxer debuginfo: {0}" + msgid "All debuginfo files are available" + msgstr "Tots els fitxers debuginfo estan disponibles" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" ++"Esteu d'acord en pujar el bolc de la memòria? (Pot contenir dades sensibles)." ++" Si la vostra resposta és 'No' aleshores es generà localment una traça de la " ++"pila. (pot baixar una gran quantitat de dades)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" ++"Voleu generar localment una traça de la pila? (Es poden baixar una gran " ++"quantitat de dades, però la presentació d'informes no pot continuar sense la " ++"traça de la pila)." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-trim-files.c:222 +@@ -1150,12 +1226,12 @@ msgstr "Preserva aquest directori" + #: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "Incapaç d'iniciar '%s', el missatge d'error va ser: '%s'" ++msgstr "Incapaç d'iniciar «%s», el missatge d'error va ser: «%s»" + + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "No és un número al fitxer «%s»" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-ureport:86 +@@ -1167,8 +1243,8 @@ msgstr "Ús: %s [-v]" + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" +-"No s'ha pogut obtenir el directori de treball actual com probablement hagi " +-"estat eliminat" ++"No s'ha pogut obtenir el directori de treball actual, probablement s'hagi " ++"eliminat" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-action-ureport:138 +@@ -1188,17 +1264,17 @@ msgstr "El reporter-ureport va fer fallida amb el codi de sortida %d" + + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +-msgstr "" ++msgstr "Senyal enviat pel codi de l'espai d'usuari" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" +-msgstr "Senyal enviada per l'esdeveniment timer/IO/async" ++msgstr "Senyal enviat per l'esdeveniment timer/IO/async" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "La senyal té siginfo.si_code = SI_USER" ++msgstr "El senyal té siginfo.si_code = SI_USER" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:544 +@@ -1209,23 +1285,23 @@ msgstr "Senyal a causa de l'escriptura en una canonada tancada" + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" +-msgstr "Senyal enviada pel tecla" ++msgstr "Senyal enviat pel teclat" + + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" +-msgstr "" ++msgstr "Senyal de control de treball enviat pel nucli del sistema operatiu" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" +-msgstr "Senyal enviada pel redimensionament de la finestra" ++msgstr "Senyal enviat pel redimensionament de la finestra" + + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "" ++msgstr "Senyal enviat per l'expiració d'alarm(N)" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:583 +@@ -1234,23 +1310,23 @@ msgstr "Senyal a causa de l'escriptura en una canonada trencada" + + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" +-msgstr "" ++msgstr "Senyal ABRT (es va cridar a abort()?)" + + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" +-msgstr "" ++msgstr "Senyal XCPU (per sobre del límit de temps de CPU)" + + #: ../src/plugins/abrt-gdb-exploitable:620 + msgid "XFSZ signal (over file size limit)" +-msgstr "" ++msgstr "Senyal XFSZ (per sobre del límit de mida de fitxer)" + + #: ../src/plugins/abrt-gdb-exploitable:624 + msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" ++msgstr "Senyal TRAP (pot ser una errata d'un depurador/traçador)" + + #: ../src/plugins/abrt-gdb-exploitable:628 + msgid "SYS signal (unknown syscall was called?)" +-msgstr "" ++msgstr "Senyal SYS (es va cridar a un syscall desconegut?)" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:633 +@@ -1264,11 +1340,11 @@ msgstr "Divisió per zero" + + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" +-msgstr "" ++msgstr "Instrucció il·legal (salta a una adreça aleatòria?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +-msgstr "" ++msgstr "Senyal relacionat amb cap pana" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:652 +@@ -1295,18 +1371,20 @@ msgstr "Salt a una adreça no vàlida" + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" + msgstr "" ++"L'accés ha anat més enllà del final del fitxer assignat, l'adreça no és " ++"vàlida, l'accés no està alineat, etc" + + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" ++msgstr "No es pot obtenir cap senyal i fer anàlisi d'explotabilitat\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +-msgstr "" ++msgstr "Motiu probable de la pana:" + + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " +-msgstr "" ++msgstr "Puntuació de l'explotació (escala de 0-9): " + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-gdb-exploitable:709 +@@ -1315,7 +1393,7 @@ msgstr "Instrucció actual:" + + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +-msgstr "" ++msgstr "L'anàlisi d'explotabilitat no ha trobat res\n" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-watch-log.c:142 +@@ -1339,12 +1417,18 @@ msgid "" + "A kernel problem occurred because of broken BIOS. Unfortunately, such " + "problems are not fixable by kernel maintainers." + msgstr "" ++"S'ha produït un problema en el nucli del sistema operatiu a causa d'una BIOS " ++"trencada, per desgràcia aquests problemes no es poden corregir pels " ++"mantenidors del nucli del sistema operatiu." + + #: ../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 "" ++"S'ha produït un problema en el nucli del sistema operatiu però el vostre " ++"maquinari no és compatible, per tant els mantenidors del nucli del sistema " ++"operatiu no poden corregir-ho." + + #: ../src/plugins/abrt-dump-oops.c:145 + #, c-format +@@ -1352,6 +1436,9 @@ msgid "" + "A kernel problem occurred, but your kernel has been tainted (flags:%s). " + "Kernel maintainers are unable to diagnose tainted reports." + msgstr "" ++"S'ha produït un problema en el nucli del sistema operatiu però el vostre " ++"nucli ha estat contaminat (marcadors: %s). Els mantenidors del nucli del " ++"sistema operatiu no poden fer diagnòstics amb informes contaminats." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-dump-oops.c:153 +@@ -1360,7 +1447,7 @@ msgid " Tainted modules: %s." + msgstr "Mòduls contaminats: %s." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1368,64 +1455,64 @@ msgid "" + msgstr "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +-"Extreu els oop des de FILE (o entrada estàndard)" ++"Extreu l'oops des de FILE (o entrada estàndard)" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Print found oopses on standard output" +-msgstr "Imprimeix els oop que s'han trobat en la sortida estàndard" ++msgstr "Imprimeix els oops que s'han trobat en la sortida estàndard" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" +-"Crea el nou directori del problema en DIR per a cadascun dels oop trobats" ++"Crea el nou directori del problema en DIR per a cadascun dels oops trobats" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "El mateix que -d DumpLocation, DumpLocation s'especifica en abrt.conf" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "Desa la informació extreta en PROBLEM" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Fes que el directori del problema el pugui llegir tot el món" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Regula la creació del directori del problema a 1 per segon" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "Imprimeix les cadenes de text de cerca a l'stdout i surt" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "Error en compilar l'expressió regular" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" +-msgstr "" ++msgstr "No es pot actualitzar el problema: s'han trobat més d'un oops" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "S'està dormint durant %d segons" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1433,16 +1520,16 @@ msgid "" + msgstr "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +-"Extreu la fallida d'Xorg des de FILE (o entrada estàndard)" ++"Extreu la fallida Xorg des de FILE (o entrada estàndard)" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + "Imprimeix les dades de les fallides que s'han trobat en la sortida estàndard" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Crea el directori del problema en DIR per a cadascuna de les fallides que es " +@@ -1454,8 +1541,8 @@ msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." + msgstr "" +-"No es pot utilitzar el servidor de resseguiment, a causa de que la mida del " +-"fitxer de la fallida és massa gran. Proveu amb un resseguiment local." ++"No es pot utilitzar el servidor de resseguiment, a causa que la mida del " ++"fitxer de la pana és massa gran. Proveu amb un resseguiment local." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. Hopefully, by this time child emitted more meaningful +@@ -1474,6 +1561,7 @@ msgstr "No es pot crear el fitxer temporal a " + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d" + msgstr "" ++"Ha fallat l'enviament de la capçalera HTTP amb la mida %d: error de NSS %d" + + #: ../src/plugins/abrt-retrace-client.c:223 + #: ../src/plugins/abrt-retrace-client.c:412 +@@ -1485,7 +1573,8 @@ msgstr "" + #, c-format + msgid "Unexpected HTTP response from server: %d\n" + "%s" +-msgstr "" ++msgstr "Resposta HTTP inesperada del servidor: %d\n" ++"%s" + + #: ../src/plugins/abrt-retrace-client.c:232 + #: ../src/plugins/abrt-retrace-client.c:745 +@@ -1495,6 +1584,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1052 + msgid "Invalid response from server: missing HTTP message body." + msgstr "" ++"La resposta del servidor no és vàlida: falta el cos del missatge HTTP." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:424 +@@ -1503,12 +1593,12 @@ msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" + msgstr "" +-"El servidor de resseguiment no es capaç de processar el paquet '%s.%s'.\n" +-"Forma part dels dipòsits oficials de '%s'?" ++"El servidor de resseguiment no és capaç de processar el paquet «%s.%s».\n" ++"Forma part dels dipòsits oficials de «%s»?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +-msgstr "" ++msgstr "S'estan consultant els ajustos del servidor" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:452 +@@ -1526,7 +1616,7 @@ msgstr "El servidor ha rebutjat la vostra sol·licitud." + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." + msgstr "" +-"'%s' ha de ser un fitxer normal per a poder utilitzar un servidor de " ++"«%s» ha de ser un fitxer normal per a poder utilitzar un servidor de " + "resseguiment." + + #: ../src/plugins/abrt-retrace-client.c:514 +@@ -1535,16 +1625,18 @@ msgid "" + "The size of your crash is %lld bytes, but the retrace server only accepts " + "crashes smaller or equal to %lld bytes." + msgstr "" ++"La mida de la vostra pana és de %lld bytes, però el servidor de resseguiment " ++"únicament accepta panes més petites o iguals de %lld bytes." + + #: ../src/plugins/abrt-retrace-client.c:534 + msgid "The server does not support xz-compressed tarballs." +-msgstr "" ++msgstr "El servidor no és compatible amb els tarballs comprimits amb xz." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:571 + #, c-format + msgid "The release '%s' is not supported by the Retrace server." +-msgstr "El llançament '%s' no està suportat pel servidor de resseguiment." ++msgstr "El llançament «%s» no està suportat pel servidor de resseguiment." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:575 +@@ -1567,11 +1659,13 @@ msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." + msgstr "" ++"La mida del vostre arxiu és de %lld bytes, però el servidor de resseguiment " ++"únicament accepta els arxius més petits o iguals a %lld bytes." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format + msgid "You are going to upload %d megabytes. Continue?" +-msgstr "" ++msgstr "Esteu a punt de pujar %d megabytes. Voleu continuar?" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:638 +@@ -1581,12 +1675,12 @@ msgstr "Es va cancel·lar per l'usuari" + #: ../src/plugins/abrt-retrace-client.c:673 + #, c-format + msgid "Uploading %d megabytes\n" +-msgstr "" ++msgstr "S'estan pujant %d megabytes\n" + + #: ../src/plugins/abrt-retrace-client.c:675 + #, c-format + msgid "Uploading %lld bytes\n" +-msgstr "" ++msgstr "S'estan pujant %lld bytes\n" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:699 +@@ -1597,12 +1691,12 @@ msgstr "S'està pujant %d%%\n" + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:711 + msgid "Failed to read from a pipe" +-msgstr "Error en llegir de d'una canonada" ++msgstr "Error en llegir d'una canonada" + + #: ../src/plugins/abrt-retrace-client.c:724 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "" ++msgstr "Ha fallat l'enviament de les dades: error de NSS %d (%s): %s" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:735 +@@ -1623,14 +1717,16 @@ msgid "" + "The archive contains malicious files (such as symlinks) and thus can not be " + "processed." + msgstr "" ++"El fitxer conté fitxers maliciosos (com ara enllaços simbòlics) i per tant " ++"no pot processar-se." + + #: ../src/plugins/abrt-retrace-client.c:772 + msgid "Invalid response from server: missing X-Task-Id." +-msgstr "" ++msgstr "La resposta del servidor no és vàlida: falta X-Task-Id." + + #: ../src/plugins/abrt-retrace-client.c:778 + msgid "Invalid response from server: missing X-Task-Password." +-msgstr "" ++msgstr "La resposta del servidor no és vàlida: falta X-Task-Password." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:785 +@@ -1647,7 +1743,7 @@ msgstr "Id de la tasca: %s\n" + + #: ../src/plugins/abrt-retrace-client.c:856 + msgid "Invalid response from server: missing X-Task-Status." +-msgstr "" ++msgstr "La resposta del servidor no és vàlida: falta X-Task-Status." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:868 +@@ -1663,6 +1759,7 @@ msgstr "Estat de la tasca: %s\n" + #, c-format + msgid "Failed to send HTTP header of length %d: NSS error %d." + msgstr "" ++"Ha fallat l'enviament de la capçalera HTTP amb la mida %d: error de NSS %d." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1160 +@@ -1719,7 +1816,7 @@ msgstr "llegeix les dades des del directori del problema de l'ABRT" + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1223 + msgid "read data from coredump" +-msgstr "llegeix les dades des del bolcatge de memòria" ++msgstr "llegeix les dades des del bolc de la memòria" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1225 +@@ -1731,7 +1828,7 @@ msgstr "Retard per a les operacions de sondeig" + msgid "(debug) do not delete temporary archive created from dump dir in " + msgstr "" + "(depuració) no eliminis els arxius temporals que s'hagin creat des del " +-"directori del bolcat en " ++"directori del bolc en " + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1229 +@@ -1761,7 +1858,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 + msgid "Either problem directory or coredump is needed." +-msgstr "Es necessita el directori del problema o bé el bolcatge de memòria." ++msgstr "Es necessita el directori del problema o bé el bolc de la memòria." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/abrt-retrace-client.c:1294 +@@ -1804,14 +1901,14 @@ msgid "" + "to remote machines." + msgstr "" + "Necessita baixar els paquets debuginfo, els quals prenen un temps " +-"significant i espai de de disc. No obstant, a diferència dels servidors de " +-"resseguiment, no envia els bolcatges de memòria a màquines remotes." ++"significant i espai de disc. No obstant això, a diferència dels servidors de " ++"resseguiment, no envia els bolcs de la memòria a màquines remotes." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" + msgstr "" +-"Envia el bolcatge de memòria al servidor remot de resseguiment per a " ++"Envia el bolc de la memòria al servidor remot de resseguiment per a " + "l'anàlisi" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +@@ -1823,11 +1920,11 @@ msgid "" + "you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" +-"Puja el bolcatge de memòria a un servidor que genera una traça inversa i la " +-"retorna. Pros: no hi hi la necessitat de baixar els debuginfo. La base de " ++"Puja el bolc de la memòria a un servidor que genera una traça inversa i la " ++"retorna. Pros: no hi ha la necessitat de baixar els debuginfo. La base de " + "dades dels debuginfo del servidor de resseguiment és més completa. El " + "servidor de resseguiment pot generar millor les traces inverses. Cons: el " +-"bolcatge de memòria que pugeu conté totes les dades del programa que ha fet " ++"bolc de la memòria que pugeu conté totes les dades del programa que ha fet " + "fallida, que inclouen les vostres dades privades, si fos el cas." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +@@ -1862,7 +1959,7 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" +-"Escribiu \"insecure\" per a permetre una connexió insegura <a href=" ++"Escriviu \"insecure\" per a permetre una connexió insegura <a href=" + "\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(advertència)</a>" + +@@ -1874,13 +1971,16 @@ msgstr "Recull .xsession-errors" + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "Desa les línies rellevants del fitxer ~/.xsession-errors" ++msgstr "Desa les línies apropiades del fitxer ~/.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 "" ++"Explora a través del fitxer ~/.xsession-errors i desa aquestes línies que " ++"contenen el nom de l'executable. El resultat es desa com l'element " ++"'xsession_errors'." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:62 +@@ -1891,7 +1991,7 @@ msgstr "S'ha produït un error en el cantó del servidor." + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" +-msgstr "S'ha produït un error en el cantó del servidor en '%s'" ++msgstr "S'ha produït un error en el cantó del servidor en «%s»" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:74 +@@ -1902,7 +2002,7 @@ msgstr "S'ha produït un error mentre es connectava amb el servidor" + #: ../src/plugins/https-utils.c:77 + #, c-format + msgid "An error occurred while connecting to '%s'" +-msgstr "S'ha produït un error mentre es connectava a '%s'" ++msgstr "S'ha produït un error mentre es connectava a «%s»" + + #: ../src/plugins/https-utils.c:97 + #, c-format +@@ -1919,6 +2019,8 @@ msgstr "" + #, c-format + msgid "Certificate subject name '%s' does not match target host name '%s'." + msgstr "" ++"El nom del subjecte del certificat '%s' no coincideix amb el nom de " ++"l'amfitrió de destinació «%s»." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:107 +@@ -1928,29 +2030,29 @@ msgstr "El certificat remot ha expirat." + #: ../src/plugins/https-utils.c:110 + #, c-format + msgid "Certificate issuer is not recognized: '%s'." +-msgstr "" ++msgstr "No s'ha reconegut l'emissor del certificat: «%s»." + + #: ../src/plugins/https-utils.c:113 + #, c-format + msgid "Bad certificate received. Subject '%s', issuer '%s'." +-msgstr "" ++msgstr "S'ha rebut un certificat dolent. Subjecte «%s», emissor «%s»." + + #: ../src/plugins/https-utils.c:149 + #, c-format + msgid "Failed to get slot 'PEM Token #0': %d." +-msgstr "" ++msgstr "Error en obtenir la ranura 'PEM Token #0': %d." + + #: ../src/plugins/https-utils.c:182 + #, c-format + msgid "Can't resolve host name '%s'. NSS error %d." +-msgstr "" ++msgstr "No es pot resoldre el nom de l'amfitrió «%s». error de NSS %d." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. Host exists, but has neither IPv4 nor IPv6?? + #: ../src/plugins/https-utils.c:203 + #, c-format + msgid "Can't resolve host name '%s'." +-msgstr "No es pot resoldre el nom de l'equip '%s'." ++msgstr "No es pot resoldre el nom de l'amfitrió «%s»." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:210 +@@ -1969,30 +2071,30 @@ msgstr "Error en habilitar la salutació del client per al sòcol SSL." + + #: ../src/plugins/https-utils.c:220 + msgid "Failed to enable SSL3." +-msgstr "" ++msgstr "L'habilitació de SSL3 ha fallat." + + #: ../src/plugins/https-utils.c:222 + msgid "Failed to enable TLS." +-msgstr "" ++msgstr "L'habilitació de TLS ha fallat." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +-msgstr "Error en establir la URL al sòcol SSL." ++msgstr "Error en establir l'URL al sòcol SSL." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" +-msgstr "No es pot connectar a '%s'" ++msgstr "No es pot connectar a «%s»" + + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +-msgstr "" ++msgstr "Error en establir el hook del certificat." + + #: ../src/plugins/https-utils.c:247 + msgid "Failed to set handshake callback." +-msgstr "" ++msgstr "Ha fallat l'establiment del retorn de la salutació." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:251 +@@ -2002,7 +2104,7 @@ msgstr "Error en resetejar la salutació." + #: ../src/plugins/https-utils.c:258 + #, c-format + msgid "Failed to complete SSL handshake: NSS error %d." +-msgstr "" ++msgstr "Error en completar la salutació SSL: error de NSS %d." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:267 +@@ -2012,16 +2114,16 @@ msgstr "Error en tancar el sòcol SSL." + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" +-msgstr "" ++msgstr "Capçalera de resposta HTTP amb format incorrecte: «%s»" + + #: ../src/plugins/https-utils.c:369 + #, c-format + msgid "Receiving of data failed: NSS error %d." +-msgstr "" ++msgstr "Ha fallat la recepció de les dades: error de NSS %d." + + #: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." +-msgstr "" ++msgstr "Resposta fragmentada amb format incorrecte." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/https-utils.c:423 +@@ -2078,6 +2180,8 @@ msgstr "No s'han trobat actualitzacions per aquest paquet" + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" + msgstr "" ++"La versió local del paquet és més recent que la de les actualitzacions " ++"disponibles" + + #: ../src/plugins/bodhi.c:486 + #, c-format +@@ -2085,6 +2189,9 @@ msgid "" + "An update exists which might fix your problem. You can install it by running:" + " %s. Do you want to continue with reporting the bug?" + msgstr "" ++"Hi ha una actualització que podria corregir el problema. Podeu instal·lar-la " ++"amb l'execució de: %s. Voleu continuar amb la presentació d'informes de " ++"l'error de programari?" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/hooks/abrt-merge-pstoreoops.c:85 +@@ -2095,164 +2202,179 @@ msgid "" + msgstr "" + "& [-v] [-od] FILE...\n" + "\n" +-"Escaneja els fitxers per a dividir els missatges oop. Pot imprimir-los i/o " +-"eliminar-los." ++"Escaneja els fitxers per a dividir els missatges de l'oops. Pot imprimir-los " ++"i/o eliminar-los." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +-msgstr "Imprimeix els oop que s'han trobat" ++msgstr "Imprimeix els oops que s'han trobat" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" +-msgstr "Elimina els fitxers amb oop trobats" ++msgstr "Elimina els fitxers amb els oops trobats" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "" ++msgstr "«%s» fa referència a més d'un directori de problema" + +-# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Ús: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Llista els problemes [en DIRs]" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Elimina el directori del problema DIR" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analitza i informa de les dades del problema en DIR" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Imprimeix informació quant a DIR" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Imprimeix el compte de les fallides recents" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Processa múltiples problemes" + ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Vegeu 'abrt-cli COMMAND --help' per a més informació" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" ++"%sExecuteu 'abrt-cli report %s' per a la creació d'un cas al Red Hat " ++"Customer Portal\n" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [opcions] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [opcions]" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "Llista únicament els problemes que s'hagin informat" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Mostra informes detallats" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Llista únicament els problemes que siguin més recents que la marca de temps " + "especificada" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Llista únicament els problemes anteriors a la marca de temps especificada" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, 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 "" ++"La característica de presentació automàtica d'informes està deshabilitada. " ++"Considereu habilitar-ho\n" ++"amb 'abrt-auto-reporting enabled' com a usuari amb els privilegis de root\n" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [opcions] DIR..." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "El text que sigui més gran que aquest es mostrarà abreujat" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "" ++msgstr "El directori del problema «%s» no existeix" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& status" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Imprimeix únicament el compte dels problemes sense cap missatge" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Imprimeix únicament els problemes que siguin més recents que la marca de " + "temps especificada" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT ha detectat %u problem[a|es]. Per a més informació executeu: abrt-cli " + "list%s\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "S'està eliminant «%s»" ++ ++# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [opcions] DIR..." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Elimina PROBLEM_DIR després d'informar" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "S'està eliminant '%s'" +- +-# translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Accions: remove(rm), info(i), skip(s):" +@@ -2263,24 +2385,24 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Accions: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" +-msgstr "S'està informat '%s'" ++msgstr "S'està informat «%s»" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Per al següent problema premeu RETORN:" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Sense l'argument --since, s'itera sobre tots els problemes detectats." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + "Selecciona únicament els problemes que es van detectar després de la marca " +@@ -2292,8 +2414,8 @@ msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" + msgstr "" +-"Envia el bolcatge de memòria a un servidor remot de resseguiment per a " +-"l'anàlisi o per a la realització de l'anàlisis local si es produeix un error " ++"Envia el bolc de la memòria a un servidor remot de resseguiment per a " ++"l'anàlisi o per a la realització de l'anàlisi local si es produeix un error " + "en el servidor remot de l'anàlisi" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 +@@ -2306,21 +2428,33 @@ msgid "" + "you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" ++"Puja el bolc de la memòria a un servidor que genera una traça inversa i la " ++"retorna. Si l'usuari no vol pujar el seu bolc de la memòria enlloc, " ++"l'esdeveniment realitza localment l'anàlisi. L'anàlisi local s'executa si " ++"falla l'anàlisi remota. Pros: no hi ha la necessitat de baixar els debuginfo." ++" La base de dades dels debuginfo del servidor de resseguiment és més " ++"completa. El servidor de resseguiment pot generar millor les traces inverses." ++" Cons: el bolc de la memòria que pugeu conté totes les dades del programa " ++"que ha tingut pana, que inclouen les vostres dades privades, si fos el cas." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +-msgstr "" ++msgstr "Analitza el nucli de la MV" + + #: ../src/plugins/analyze_VMcore.xml.in.h:2 + msgid "" + "Install kernel debuginfo packages, generate kernel log and oops message" + msgstr "" ++"Instal·la els paquets debuginfo del nucli del sistema operatiu, genera " ++"registres del nucli del sistema operatiu i missatges de l'oops" + + #: ../src/plugins/analyze_VMcore.xml.in.h:3 + msgid "" + "Needs to install kernel debuginfo packages, which might take significant " + "time, and take up disk space." + msgstr "" ++"Necessita instal·lar els paquets debuginfo del nucli del sistema operatiu, " ++"els quals prenen un temps significant i espai de disc." + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/collect_GConf.xml.in.h:1 +@@ -2329,7 +2463,7 @@ msgstr "Recull la configuració del GConf" + + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" +-msgstr "" ++msgstr "Desa la configuració des del directori GConf de l'aplicació" + + # translation auto-copied from project abrt, version master, document abrt, author Robert Antoni Buj Gelonch + #: ../src/plugins/collect_GConf.xml.in.h:3 +diff --git a/po/cs.po b/po/cs.po +index bc2e0ad..1db61e5 100644 +--- a/po/cs.po ++++ b/po/cs.po +@@ -8,21 +8,23 @@ + # Milan Kerslager , 2010 + # Milan Kerslager , 2011 + # zdenek , 2013 ++# Jakub Filak , 2015. #zanata ++# Zdenek , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"PO-Revision-Date: 2015-07-15 05:05-0400\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Czech (http://www.transifex.com/projects/p/fedora-abrt/" + "language/cs/)\n" + "Language: cs\n" + "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -32,20 +34,25 @@ msgstr "Nástroj automatického hlášení chyb" + msgid "ABRT notification applet" + msgstr "Upozorňovací applet démonu ABRT" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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" + msgstr "" ++"Hlášení, které bude odesláno, neobsahuje žádná citlivá data. Proto není " ++"nutné, abychom vás přístě otravovali a vyžadovali od vás dodatečnou akci.\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +-msgstr "" ++msgstr "Chcete povolit automatické odesílání hlášení o pádech?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "" ++msgstr "Chcete povolit automatické odesílání anonymních hlášení o pádech?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -58,7 +65,7 @@ msgstr "Nemohu se připojit k NetworkManager přes DBus: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Nemohu určit stav sítě pomocí NetworkManager: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nelze převzít vlastnictví '%s'" +@@ -77,10 +84,11 @@ msgstr "Byl zjištěn problém" + msgid "A problem in the %s package has been detected" + msgstr "Byl zjištěn problém v balíčku %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s a diagnostická data byla odeslána" + + #: ../src/applet/applet.c:589 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 +@@ -93,6 +101,7 @@ msgstr "„%s“ nelze spustit" + msgid "Can't close notification: %s" + msgstr "Nemohu zavřít oznámení: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:706 + msgid "" + "You are going to mute notifications of a particular problem. You will never " +@@ -101,6 +110,11 @@ msgid "" + "\n" + "Do you want to continue?" + msgstr "" ++"Chystáte se utišit upozornění na vybraný problém. Nikdy již neuvidíte " ++"upozornění na tento problém. Nicméně ABRT jej bude zaznamenávat a můžete jej " ++"nahlásit z grafického rozhraní ABRTu.\n" ++"\n" ++"Chcete pokračovat?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -119,25 +133,28 @@ msgstr "" + "Nikola Pajkovsky \n" + "Petr Písař " + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/applet/applet.c:858 + msgid "_Quit" +-msgstr "" ++msgstr "_Konec" + + #: ../src/applet/applet.c:860 + msgid "Hide" + msgstr "Skrýt" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/applet/applet.c:862 + msgid "_About" +-msgstr "" ++msgstr "_O aplikaci" + + #: ../src/applet/applet.c:930 + msgid "Problem detected" + msgstr "Detekován problém" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/applet/applet.c:980 + msgid "Ignore forever" +-msgstr "" ++msgstr "Navždy ignorovat" + + #. Problem has been 'autoreported' and is considered as KNOWN + #. +@@ -145,9 +162,10 @@ msgstr "" + msgid "Open" + msgstr "Otevřít" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" +-msgstr "" ++msgstr "Problém byl již nareportován." + + #: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" +@@ -193,12 +211,15 @@ msgstr "Nemohu nastavit kódování na kanálu gio: %s" + msgid "Can't turn on nonblocking mode for gio channel: %s" + msgstr "Nemohu zapnout neblokový režim pro kanál gio: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:1494 + #, c-format + msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" ++"Selhalo otevření spojení ke správci sezení: '%s', upozornění se může znovu " ++"objevit po dalším přihlášení" + + #: ../src/applet/applet.c:1635 + msgid "" +@@ -210,22 +231,27 @@ msgstr "" + "\n" + "Applet, který uživatele upozorní, když ABRT detekuje nový problém\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Zeptat se před ukradnutím adresáře" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Automaticky posílat uReport" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "Zkrácené hlášení" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "Tiché zkrácené hlášení" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +@@ -233,7 +259,12 @@ msgid "" + "trace from the coredump but you have to upload the coredump to this service. " + "With this option disabled ABRT will upload the coredump without asking." + msgstr "" ++"Soubor coredumpu je nezbytný pro vygenerování stack tracu, což je časově a " ++"prostorově náročná operace. ABRT poskytuje službu, která vygeneruje stack " ++"trace z coredumpu, ale musíte do této služby coredump nahrát. Pokud tuto " ++"volbu zakážete, ABRT nahraje coredump bez ptaní." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" + "ABRT stores problem data in directories. Whenever ABRT needs writable " +@@ -241,7 +272,12 @@ msgid "" + "directory. With this option disabled ABRT will move the problem directory " + "without asking." + msgstr "" ++"ABRT ukládá data o problémech v adresářích. Kdykoliv ABRT potřebuje " ++"zapisovatelný adresář, adresář je přesunut ze systémového umístění do vašeho " ++"domovského adresáře. Pokud je tato volba zakázána, ABRT přesune adresář " ++"problému bez ptaní." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +@@ -249,23 +285,36 @@ msgid "" + "uReport is sent at beginning of reporting process. With this option enabled " + "uReports are sent automatically immediately after problem detection." + msgstr "" ++"uReport je krátký a zcela anonymní popis problému. ABRT používá uReporty pro " ++"rychlou globální detekci duplikátů. Ve výchozím nastavení je uReport odeslán " ++"na začátku procesu nahlášení. Pokud je tato volba povolená, uReporty se " ++"odesílají automaticky po každé detekci problému." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button " + "in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" ++"Pokud je tato volba povolená, proces nahlášení odstartovaný kliknutím na " ++"tlačítko Nahlásit v upozornění na problém bude přerušený po tom, co se " ++"odešle uReport. Vždy můžete použít výchozí prohlížeč problémů, chcete-li " ++"udělat kompletní hlášení." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" ++"Pokud je tato volba povolena, ABRT nebude nikdy zobrazovat upozornění na " ++"nahlášené problémy. Funguje pouze, pokud je povoleno Zkrácené hlášení." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "Zeptat se před odesláním coredumpu" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" +@@ -273,47 +322,58 @@ msgid "" + "access if possibly sensitive data are dected." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "Vyžadovat neveřejné hlášení v případě citlivých informací" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Upozornit na nekompletní problémy" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" ++"Nekompletní problémy jsou detekovány, když se počítač vypíná nebo uživatel " ++"odhlašuje. V zájmu užitečnosti hlášení, ABRT tyto problémy odesílat nebude." + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +-msgstr "" ++msgstr "_Zavřít" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" +-msgstr "" ++msgstr "_Výchozí" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "" ++msgstr "Nastavení hlášení problémů" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +-msgstr "" ++msgstr "O systémové konfiguraci ABRT" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "" ++msgstr "O" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/configuration-gui/main.c:106 + msgid "Quit" +-msgstr "" ++msgstr "Konec" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -323,7 +383,7 @@ msgstr "" + "\n" + "Dotáže databázi balíčků a uloží jméno balíčku a komponenty" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -334,80 +394,93 @@ msgstr "" + msgid "Problem directory" + msgstr "Adresář problému" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Konfigurační soubor" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [volby]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + 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:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Protokolovat do syslogu" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Přidá názvy programů do protokolu" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Neznámá chyba" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' není platným adresářem problému" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "'%s' prvek nemůže být modifikován" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Neautorizovaný" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Nemohu zpřístupnit problém ke změně" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Změna vlastníka adresáře selhala. Zkontrolujte logy systému pro více " + "informací." + +-#: ../src/dbus/abrt-dbus.c:559 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "Problém není přístupný pro čtení" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' není platným jménem prvku" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Nemohu získat velikost '%s'" + +-#: ../src/dbus/abrt-dbus.c:595 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" +-msgstr "" ++msgstr "Nezbývá místo na problémy" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nemohu smazat prvek '%s' z adresáře problému '%s'" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "Problém není přístupný" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -416,15 +489,16 @@ msgstr "" + "Jméno '%s' bylo ztraceno, zkontrolujte prosím, zda-li jiná služba vlastnící " + "toto jméno neběží.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Ukončí po NUM sekundách neaktivity" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Tento program musí být spuštěn pod root uživatelem." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +@@ -433,6 +507,11 @@ msgid "" + "problem. If you have time and want to help the developers in their effort to " + "sort out this problem, please contact them directly." + msgstr "" ++"Data problému jsou nekompletní. Toto se obvykle stává, když je problém " ++"detekován během vypínání počítače nebo odhlašování uživatele. V zájmu " ++"poskytování užitečných hlášení, ABRT neumožní takováto hlášení odeslat. Máte-" ++"li čas a chcete pomoct vývojářům tento problém vyřešit, kontaktujte je přímo." ++"" + + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +@@ -454,11 +533,13 @@ msgstr "Spustí EVENT v DIR" + msgid "Communicate directly to the user" + msgstr "Komunikovat přímo s uživatelem" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "" ++msgstr "Žádný volný \"dělník\" a plný zásobník. Archivování '%s' je vynecháno." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +@@ -470,86 +551,117 @@ msgid "" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Sleduje UPLOAD_DIRECTORY a rozbaluje příchozí archivy do DumpLocation\n" ++"specifikovaného v abrt.conf\n" ++"\n" ++"Pokud není UPLOAD_DIRECTORY poskytnuto, používá hodnotu volby\n" ++"WatchCrashdumpArchiveDir z abrt.conf" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +-msgstr "" ++msgstr "Démonizovat" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "" ++msgstr "Počet souběžných \"dělníků\". Výchozí je " + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "" ++msgstr "Maximální velikost mezipaměti v MiB. Výchozí je " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Vypíná autentizaci" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Uživatelské jméno podpory Red Hat" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" ++"Heslo pro podporu Red Hat. Pokud není uvedeno, bude obdržena výzva pro jeho " ++"vydání" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "Cesta nebo typ SSL certifikátu pro uReport" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "Musíte zadat --username pro --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "Můžete použít buď --username nebo --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "Můžete použít buď --username nebo --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "Můžete použít buď --anonymous nebo --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "Neplatný počet argumentů" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "Neznámá hodnota možnosti: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" +-msgstr "" ++msgstr "Heslo:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Bez zadání hesla nelze pokračovat\n" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "Automatické hlášení chyb autorizováno pro HTTP" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" +-msgstr "" ++msgstr "Automatické hlášení chyb autorizováno pro SSL klienta" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "Anonymní automatické hlášení chyb" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -560,71 +672,95 @@ msgid "" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" + msgstr "" +- +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++"Použití: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Upovídaný\n" ++" -d - Smazat nahraný archiv\n" ++" ABRT_SPOOL_DIR - Adresář, do kterého jsou platné nahrané archivy " ++"rozbalené\n" ++" UPLOAD_DIR - Adresář, kde jsou nahrané archivy uložené\n" ++" FILENAME - Název souboru nahraného archivu\n" ++ ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Ne adresář: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Přeskočení: '{0}' (začíná lomítkem)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Přeskočení: '{0}' (začíná tečkou)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Přeskočení: '{0}' (obsahuje..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Přeskočení: '{0}' (obsahuje mezeru)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Přeskočení: '{0}' (obsahuje tabulátor)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Nelze změnit adresář na '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Neznámý typ souboru '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "Nelze vytvořit pracovní adresář '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "Nelze přesunout '{0}' do '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "Nelze zkopírovat '{0}' do '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "Chyba ověření na '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "Rozbalení '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "Nelze vytvořit adresář '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "Nelze rozbalit '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' byl úspěšně zpracován" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -646,7 +782,8 @@ msgstr "Nelze provést chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Odstraňování adresáře problému selhalo: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Nemohu získat data problému z abrt-dbus: %s" +@@ -656,6 +793,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" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "Nelze otestovat zda-li element existuje nad abrt-dbus: %s" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -699,9 +842,10 @@ msgstr "" + msgid "Backtrace parsing failed for %s" + msgstr "Rozbor zásobníku volání v %s se nezdařil" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" +-msgstr "" ++msgstr "Vlákno poruchy nenalezeno" + + #: ../src/plugins/abrt-action-analyze-c.c:67 + msgid "" +@@ -713,24 +857,28 @@ msgstr "" + "\n" + "Vypočítá a uloží UUID obrazu paměti v adresáři problému DIR" + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "Analýza obrazu paměti '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "Chybějící ID buildu: %s" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "Použití: %s [-v] [-o OUTFILE] -c COREFILE" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREFILE není určený" + + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" +@@ -766,36 +914,45 @@ msgstr "& [-v] -d DIR\n" + "\n" + "Spočítá a uloží UUID a DUPHASH výpisu pádu pythonu" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" ++msgstr "Použití: {0} [-v[v]] [--core=VMCORE]" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" + msgstr "Soubor {0} neexistuje" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" +-msgstr "" ++msgstr "Vytahování textu oopsu z jádra" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "Can't process {0}:\n" + "{1}" +-msgstr "" ++msgstr "Nelze zpracovat {0}:\n" ++"{1}" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +-msgstr "" ++msgstr "Nelze vytáhnout zprávu oops: '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" +-msgstr "" ++msgstr "Text oops úspěšně vyňat." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" ++"Protokol jádra indikuje, že byly detekovány chyby hardwaru.\n" ++"Toto není s největší pravděpodobností softwarový problém.\n" + + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" +@@ -824,35 +981,44 @@ msgstr "Zabít gdb, jestliže poběží déle než POČET sekund" + msgid "Backtrace is generated and saved, %u bytes" + msgstr "Výpis volání byl vytvořen a uložen, %u bajtů" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" + msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"Vytváří backtrace coredumo-level z core dumpu a odpovídající binárky" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +-msgstr "" ++msgstr "Nehashovat otisky" + ++# translation auto-copied from project abrt, version master, document abrt + #. Let user know what's going on + #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 + msgid "Generating core_backtrace" +-msgstr "" ++msgstr "Vytváření core_backtrace" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" +-msgstr "" ++msgstr "Chyba: GDB nevrátilo žádná data" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" +-msgstr "" ++msgstr "Chyba: %s" + + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" + msgstr "Činnost ukončena na příkaz uživatele" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:88 + #, c-format + msgid "" +@@ -876,6 +1042,25 @@ msgid "" + " --repo Pattern to use when searching for repos.\n" + " Default: *debug*\n" + msgstr "" ++"Použití: %s [-vy] [--ids=BUILD_IDS_FILE]\n" ++" [--tmpdir=TMPDIR] [--cache=CACHEDIR[:DEBUGINFODIR1:DEBUGINFODIR2...]] " ++"[--size_mb=SIZE]\n" ++" [-e, --exact=PATH[:PATH]...]\n" ++"\n" ++"Instaluje debuginfo pro všechny ID buildů v BUILD_IDS_FILE\n" ++"do CACHEDIR pomocí TMPDIR jako dočasného vyčkávacího prostoru.\n" ++"Staré soubory v CACHEDIR jsou smazány, dokud nejsou menší než SIZE.\n" ++"\n" ++" -v Být upovídaný\n" ++" -y Neinterkativní, předpokládá 'Ano' pro všechny otázky\n" ++" --ids Výchozí: build_ids\n" ++" --tmpdir Výchozí: @LARGE_DATA_TMP_DIR@/abrt-tmp-debuginfo-" ++"RANDOM_SUFFIX\n" ++" --cache Výchozí: /var/cache/abrt-di\n" ++" --size_mb Výchozí: 4096\n" ++" -e,--exact Stáhnout pouze uvedený soubor\n" ++" --repo Vzor, který použít pro hledání repozitářů.\n" ++" Výchozí: *debug*\n" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +@@ -887,13 +1072,15 @@ msgstr "" + "Obraz paměti odkazuje na {0} souborů ladicích údajů, {1} z nich nejsou " + "nainstalovány" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +-msgstr "" ++msgstr "{0} souborů debuginfo není nainstalováno" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-install-debuginfo.in:223 + msgid "Missing requested file: {0}" +-msgstr "" ++msgstr "Chybí požadovaný soubor: {0}" + + #: ../src/plugins/abrt-action-install-debuginfo.in:228 + msgid "Missing debuginfo file: {0}" +@@ -903,6 +1090,35 @@ msgstr "Chybějící soubory ladících údajů: {0}" + msgid "All debuginfo files are available" + msgstr "Všechny soubory debuginfo jsou dostupné" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -948,155 +1164,193 @@ msgstr "Smazat soubory uvnitř tohoto adresáře" + msgid "Preserve this directory" + msgstr "Zachovat tento adresář" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:59 + #, c-format + msgid "Unable to start '%s', error message was: '%s'" +-msgstr "" ++msgstr "Nelze spustit '%s', chybová hláška byla: '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:70 + #, c-format + msgid "Not a number in file '%s'" +-msgstr "" ++msgstr "Není číslem v souboru '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:86 + #, c-format + msgid "Usage: %s [-v]" +-msgstr "" ++msgstr "Použití: %s [-v]" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:107 + msgid "Unable to get current working directory as it was probably deleted" + msgstr "" ++"Nelze získat aktuální pracovní adresář, protože byl pravděpodobně smazán" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "" ++msgstr "Chyba už o tomto problému byla nahlášena:" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +-msgstr "" ++msgstr "uReport byl již odeslán, znovu se již posílat nebude" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-ureport:176 + #, c-format + msgid "reporter-ureport failed with exit code %d" +-msgstr "" ++msgstr "reporter-ureport selhal s ukončovacím kódem %d" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:529 + msgid "Signal sent by userspace code" +-msgstr "" ++msgstr "Signál poslaný kódem z userspace" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:533 + msgid "Signal sent by timer/IO/async event" +-msgstr "" ++msgstr "Signál poslaný událostí timer/IO/async" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:541 + msgid "Signal has siginfo.si_code = SI_USER" +-msgstr "" ++msgstr "Signál má siginfo.si_code = SI_USER" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:544 + msgid "Signal due to write to closed pipe" +-msgstr "" ++msgstr "Signál kvůli zapisování do uzavřené roury" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:550 + #: ../src/plugins/abrt-gdb-exploitable:575 + msgid "Signal sent by keyboard" +-msgstr "" ++msgstr "Signál poslaný klávesnicí" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:554 + #: ../src/plugins/abrt-gdb-exploitable:579 + msgid "Job control signal sent by kernel" +-msgstr "" ++msgstr "Signál správy úloh poslaný kernelem" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:558 + #: ../src/plugins/abrt-gdb-exploitable:587 + msgid "Signal sent by window resize" +-msgstr "" ++msgstr "Signál poslaný změnou velikosti okna" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "" ++msgstr "Signál poslaný vypršením alarm(N)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" +-msgstr "" ++msgstr "Signál kvůli zapisování do rozbité roury" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:607 + msgid "ABRT signal (abort() was called?)" +-msgstr "" ++msgstr "Signál ABRT (abort() byl volaný?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:616 + msgid "XCPU signal (over CPU time limit)" +-msgstr "" ++msgstr "Signál XCPU (přes časový limit CPU)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:620 + msgid "XFSZ signal (over file size limit)" +-msgstr "" ++msgstr "Signál XFSZ (přes limit velikosti souboru)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:624 + msgid "TRAP signal (can be a bug in a debugger/tracer)" +-msgstr "" ++msgstr "Signál TRAP (může být chybou v debuggeru/traceru)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:628 + msgid "SYS signal (unknown syscall was called?)" +-msgstr "" ++msgstr "Signál SYS (neznámý syscall byl volaný?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:633 + msgid "Arithmetic exception" +-msgstr "" ++msgstr "Aritmetická výjimka" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" +-msgstr "" ++msgstr "Dělení nulou" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:641 + msgid "Illegal instruction (jump to a random address?)" +-msgstr "" ++msgstr "Nepovolená instrukce (skok na náhodnou adresu?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +-msgstr "" ++msgstr "Signál, který nesouvisí s pádem" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" +-msgstr "" ++msgstr "Přetečení zásobníku" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:656 + msgid "Write to an invalid address" +-msgstr "" ++msgstr "Zápis do neplatné adresy" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:660 + msgid "Subroutine return to an invalid address (corrupted stack?)" +-msgstr "" ++msgstr "Podprogram vrací do neplatné adresy (poškozený zásobník?)" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:666 + #: ../src/plugins/abrt-gdb-exploitable:670 + msgid "Jump to an invalid address" +-msgstr "" ++msgstr "Skok na neplatnou adresu" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:674 + msgid "" + "Access past the end of mapped file, invalid address, unaligned access, etc" + msgstr "" ++"Přístup za konec namapovaného souboru, neplatné adresy, uspořádaného " ++"přístupu atd." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" +-msgstr "" ++msgstr "Nelze získat číslo signálu a udělat analýzu zranitelnosti\n" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +-msgstr "" ++msgstr "Pravděpodobný důvod pádu:" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " +-msgstr "" ++msgstr "Hodnocení zranitelnosti (škála 0-9):" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:709 + msgid "Current instruction: " +-msgstr "" ++msgstr "Současná situace:" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:711 + msgid "Exploitability analysis came up empty\n" +-msgstr "" ++msgstr "Analýza zranitelnosti se vrátila prázdná\n" + + #: ../src/plugins/abrt-watch-log.c:142 + msgid "" +@@ -1112,17 +1366,23 @@ msgstr "" + msgid "Don't run PROG if STRs aren't found" + msgstr "Nespouštějte PROG pokud STRs nejsou nalezeny" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++"Problém v kernelu se vyskytl kvůli rozbitému BIOSu. Takového problémy nejsou " ++"bohužel vývojáři kernelu opravitelné." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../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 "" ++"Vyskytl se problém v kernelu, ale váš hardware není podporovaný, proto " ++"vývojáři kernelu nejsou schopní tento problém opravit." + + #: ../src/plugins/abrt-dump-oops.c:145 + #, c-format +@@ -1138,59 +1398,68 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "Závadné moduly: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" ++"& [-vusoxm] [-d DIR]/[-D] [FILE]\n" ++"\n" ++"Vyjmutí oopsů z FILE (nebo standardního výstupu)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + 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:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" +-msgstr "" ++msgstr "Uložit vyňaté informace v PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + 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:282 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" +-msgstr "" ++msgstr "Omezit vytváření adresářů s problémy na 1 za sekundu" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + 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:311 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" +-msgstr "" ++msgstr "Selhalo zkompilování regexu" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" +-msgstr "" ++msgstr "Nelze aktualizovat problém: nalezen více než jeden oops" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" +-msgstr "" ++msgstr "Spánek po %d sekund" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1200,11 +1469,11 @@ msgstr "" + "\n" + "Extrahuje pád Xorg ze souboru FILE (nebo standardního vstupu)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Vypiš nalezená data o havárii na standardní výstup" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "Vytvoř adresář problému v DIR pro každý nalezený pád" + +@@ -1216,6 +1485,7 @@ msgstr "" + "Stopovací server nemůže být využit, protože je záznam příliš velký. Zkuste " + "použít lokální stopování." + ++# translation auto-copied from project abrt, version master, document abrt + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: + #. +@@ -1223,7 +1493,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 + msgid "Can't create temporary file in " +-msgstr "" ++msgstr "Nelze vytvořit dočasný soubor v " + + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 +@@ -1255,12 +1525,15 @@ msgstr "Neočekávaná HTTP odpověd od serveru: %d\n" + msgid "Invalid response from server: missing HTTP message body." + msgstr "Neplatná odpověď serveru: chybí tělo odpovědi." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:424 + #, c-format + msgid "" + "Retrace server is unable to process package '%s.%s'.\n" + "Is it a part of official '%s' repositories?" + msgstr "" ++"Retrace server nemůže zpracovat balíček '%s.%s'.\n" ++"Je součastí oficiálních repozitářů '%s'?" + + #: ../src/plugins/abrt-retrace-client.c:444 + msgid "Querying server settings" +@@ -1463,9 +1736,10 @@ msgstr "přečíst data ze záznamu v core" + msgid "Delay for polling operations" + msgstr "Prodleva pro operace poolingu" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1227 + msgid "(debug) do not delete temporary archive created from dump dir in " +-msgstr "" ++msgstr "(debug) nemažte dočasný archiv vytvořený z dump adresáře v " + + #: ../src/plugins/abrt-retrace-client.c:1229 + msgid "For status, backtrace, and log operations" +@@ -1479,11 +1753,14 @@ msgstr "id vaší úlohy na serveru" + msgid "password of your task on server" + msgstr "heslo vaší úlohy na serveru" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-retrace-client.c:1237 + msgid "" + "abrt-retrace-client [options]\n" + "Operations: create/status/backtrace/log/batch/exploitable" + msgstr "" ++"abrt-retrace-client [volby]\n" ++"Operace: create/status/backtrace/log/batch/exploitable" + + #: ../src/plugins/abrt-retrace-client.c:1282 + #: ../src/plugins/abrt-retrace-client.c:1288 +@@ -1574,9 +1851,9 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" +-"K povolení nezabezpečeného spojení použijte pole Nezabezpečený" ++">(varování)" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1669,13 +1946,15 @@ msgstr "Nepodařilo se vytvořit SSL vrstvu nad TCP socketem." + msgid "Failed to enable client handshake to SSL socket." + msgstr "Selhalo povolení handshake pro SSL soket." + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/plugins/https-utils.c:220 + msgid "Failed to enable SSL3." +-msgstr "" ++msgstr "Selhalo povolení SSL3." + ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek + #: ../src/plugins/https-utils.c:222 + msgid "Failed to enable TLS." +-msgstr "" ++msgstr "Selhalo povolení TLS." + + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +@@ -1777,161 +2056,207 @@ msgstr "" + "Existuje aktualizace, která by mohla opravit váš problém. Můžete ji " + "nainstalovat spuštěním: %s. Přejete si pokračovat s reportováním problému?" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" + "& [-v] [-od] FILE...\n" + "\n" + "Scans files for split oops message. Can print and/or delete them." + msgstr "" ++"& [-v] [-od] SOUBOR...\n" ++"\n" ++"Skenuje soubory a hledá zprávy oops. Může je vypsat a/nebo smazat." + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/hooks/abrt-merge-pstoreoops.c:97 + msgid "Print found oopses" +-msgstr "" ++msgstr "Vypsat nalezené oopsy" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/hooks/abrt-merge-pstoreoops.c:98 + msgid "Delete files with found oopses" +-msgstr "" ++msgstr "Smazat soubory s nalezenými oopsy" + +-#: ../src/cli/abrt-cli-core.c:91 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "" ++msgstr "'%s' nalezl více než jeden adresář s problémy" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Použití: abrt-cli [--version] PŘÍKAZ [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" +-msgstr "" ++msgstr "Vypsat seznam problémů [v adresářích]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Odstraň adresář problému DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyzuj a reportuj data problému v DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Tisk informací o DIR" + +-#: ../src/cli/abrt-cli.c:152 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" +-msgstr "" ++msgstr "Vypsat počet nedávných pádů" + +-#: ../src/cli/abrt-cli.c:153 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" ++msgstr "Zpracovat více problémů" ++ ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:164 + 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:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [volby] [DIR]..." ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [volby]" + +-#: ../src/cli/list.c:188 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" +-msgstr "" ++msgstr "Vypsat seznam pouze nenahlášených problémů" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Zbrazit detailní zprávu" + +-#: ../src/cli/list.c:191 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" +-msgstr "" ++msgstr "Vypsat seznam problémů novějších než zadaná časová značka" + +-#: ../src/cli/list.c:192 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" +-msgstr "" ++msgstr "Vypsat seznam problémů starších než zadaná časová značka" + +-#: ../src/cli/list.c:224 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/list.c:212 + #, 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 "" ++"Funkce automatického hlášení je zakázána. Prosím zvažte její povolení pomocí\n" ++"spuštění 'abrt-auto-reporting enabled' s právy roota\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [volby] DIR..." + +-#: ../src/cli/list.c:244 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" +-msgstr "" ++msgstr "Text delší než toto bude zestručněný" + +-#: ../src/cli/list.c:264 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" +-msgstr "" ++msgstr "Žádný adresář s problémy '%s'" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "" ++# translation auto-copied from project abrt, version master, document abrt, author Zdenek ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& stav" + +-#: ../src/cli/status.c:78 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" +-msgstr "" ++msgstr "Vypsat pouze počet problémů beze zpráv" + +-#: ../src/cli/status.c:79 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" +-msgstr "" ++msgstr "Vypsat pouze problémy novější než zadaná časová značka" + +-#: ../src/cli/status.c:104 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" ++"ABRT detekoval %u problém(ů). Chcete-li více informací, spusťte: abrt-cli " ++"list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" +-msgstr "" ++msgstr "Mazání '%s'" ++ ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "& report [options] DIR..." + ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "Odstranit PROBLEM_DIR po nahlášení" ++ ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "" ++msgstr "Akce: remove(rm), info(i), skip(s):" + ++# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +-msgstr "" ++msgstr "Akce: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "Hlášení '%s'" + ++# translation auto-copied from project abrt, version master, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "Na další problémy přejdete tisknutím ENTER:" + +-#: ../src/cli/process.c:144 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" ++"Bez argumentu --since provedete operaci nad všemi detekovanými problémy." + +-#: ../src/cli/process.c:150 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" +-msgstr "" ++msgstr "Vybere pouze problémy detekované po časové značce" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +diff --git a/po/cy.po b/po/cy.po +index aeb3a60..6bfe0f0 100644 +--- a/po/cy.po ++++ b/po/cy.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "Language: cy\n" + "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " + "11) ? 2 : 3;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -302,14 +302,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -320,90 +320,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -465,73 +475,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -543,68 +554,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -628,7 +639,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -638,6 +650,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -861,6 +878,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1080,69 +1126,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1691,71 +1737,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1763,49 +1815,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1814,21 +1871,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/da.po b/po/da.po +index d79e6a2..33b93d7 100644 +--- a/po/da.po ++++ b/po/da.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/da/)\n" + "Language: da\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan ikke tage ejerskab over \"%s\"" +@@ -312,7 +312,7 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -322,7 +322,7 @@ msgstr "" + "\n" + "Forespørg pakkedatabase og gem pakke og komponent-navn" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -333,90 +333,100 @@ msgstr "" + msgid "Problem directory" + msgstr "Problemmappe" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Konfigurationsfil" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [tilvalg]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Skriv til syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Føj programnavne til log" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -478,73 +488,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -556,68 +567,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -641,7 +652,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -651,6 +663,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -877,6 +894,35 @@ msgstr "Manglende debuginfo-fil: {0}" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1096,69 +1142,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1734,71 +1780,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Se \"abrt-cli COMMAND --help\" for mere information" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Vis detaljeret rapport" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1806,49 +1858,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1857,21 +1914,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/de.po b/po/de.po +index ba82218..455b7b2 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -13,21 +13,23 @@ + # noxin , 2013 + # Rainer Gromansperg , 2013 + # Roman Spirgi , 2011-2012 ++# Hedda Peters , 2015. #zanata ++# Roman Spirgi , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-12-12 08:30-0500\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-07-16 08:12-0400\n" ++"Last-Translator: Hedda Peters \n" + "Language-Team: German (http://www.transifex.com/projects/p/fedora-abrt/" + "language/de/)\n" + "Language: de\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -69,7 +71,7 @@ msgstr "Keine Verbindung mit NetworkManager über DBus: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Netzwerkstatus kann über NetworkManager nicht bestimmt werden: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Eigentumsrechte von »%s« können nicht geändert werden." +@@ -361,7 +363,7 @@ msgstr "Über" + msgid "Quit" + msgstr "Beenden" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -371,7 +373,7 @@ msgstr "" + "\n" + "Paketdatenbank durchsuchen und Paket- und Komponentennamen speichern" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -382,80 +384,91 @@ msgstr "" + msgid "Problem directory" + msgstr "Fehler-Verzeichnis" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Konfigurationsdatei" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "NUM als Client-UID benutzen" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "In Systemprotokoll speichern" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Anwendungsnamen protokollieren" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Unbekannter Fehler" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "»%s« ist kein gültiges Problem-Verzeichnis" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "Element »%s« kann nicht geändert werden" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Nicht erlaubt" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Der Fehlerbericht kann nicht für die Bearbeitung geöffnet werden" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Ordnerrechte konnten nicht angepasst werden. Für detaillierte Hinweise die " + "System-Logdateien überprüfen." + +-#: ../src/dbus/abrt-dbus.c:559 ++# translation auto-copied from project abrt, version master, document abrt, author Roman Spirgi ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "Fehlerbericht kann nicht mit Lesezugriff geöffnet werden" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "»%s« ist kein gültiger Name für das Element" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Größe von '%s' kann nicht bestimmt werden" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "Kein weiterer Speicherplatz für die Fehlerbeschreibung vorhanden" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Element »%s« kann nicht vo Fehlerverzeichnis »%s« entfernt werden" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "Auf Fehlerbericht kann nicht zugegriffen werden" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -464,12 +477,12 @@ msgstr "" + "Der Name »%s« ist verloren gegangen. Bitte stellen Sie sicher, dass kein " + "anderer Dienst unter dem gleichen Namen läuft.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Nach NUM Sekunden Inaktivität beenden" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Die Anwendung muss mit Root-Rechten ausgeführt werden." + +@@ -547,74 +560,76 @@ msgstr "Anzahl der gleichzeitig laufenden Dienste. Standard ist " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximale Cache-Größe in MB. Standard ist " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Deaktiviert die Authentifizierung" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Red Hat Support Benutzername" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" ++"Red Hat Support Passwort; falls nicht angegeben, wird zur Eingabe eines " ++"Passworts aufgefordert" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "uReport SSL-Zertifikatspfad oder -Zertifikatstyp" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "Sie müssen ebenfalls --username für --password angeben" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "Sie können entweder --username oder --certificate verwenden" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "Sie können entweder --username oder --anonymous verwenden" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "Sie können entweder --anonymous oder --certificate verwenden" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "Ungültige Parameteranzahl" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "Unbekannter Optionswert: '%s'\n" ++msgstr "Unbekannter Optionswert: »%s«\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" +-msgstr "" ++msgstr "Passwort:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Fortfahren ohne Passwort nicht möglich\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "Per HTTP authentifizierte automatische Berichterstattung" + +-#: ../src/daemon/abrt-auto-reporting.c:349 +-#, fuzzy ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" +-msgstr "Verkürzte Berichterstattung (silent)" ++msgstr "Per SSL-Client authentifizierte automatische Berichterstattung" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "Anonyme automatische Berichterstattung" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -635,68 +650,68 @@ msgstr "" + "werden\n" + " DATEINAME - Name der Archivdatei\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Kein Verzeichnis: »{0}«" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Überspringen: »{0}« (beginnt mit einem Schrägstrich)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Überspringen: »{0}« (beginnt mit einem Punkt)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Überspringen: »{0}« (enthält ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Überspringen: »{0}« (enthält Leerzeichen)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Überspringen: »{0}« (enthält Tabulatoren)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Verzeichnis kann nicht auf »{0}« geändert werden" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Unbekannter Dateityp: »{0}«" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Arbeitsverzeichnis kann nicht in »{0}« erstellt werden" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "»{0}« kann nicht nach »{1}« verlegt werden" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "»{0}« kann nicht nach »{1}« kopiert werden" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Fehler bei Prüfung von »{0}«" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "»{0}« wird entpackt" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Verzeichnis »{0}« kann nicht erstellt werden" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "»{0}« kann nicht entpackt werden" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "»{0}« erfolgreich verarbeitet" + +@@ -720,7 +735,8 @@ msgstr "Chown nicht möglich: »%s«: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Fehlerverzeichnis konnte nicht gelöscht werden: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Fehler-Daten können von abrt-dbus nicht abgerufen werden: %s" +@@ -730,6 +746,11 @@ 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/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "Test, ob das Element existiert, über abrt-dbus nicht möglich: %s" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -1008,6 +1029,41 @@ msgstr "Fehlende Debuginfo-Datei: {0}" + msgid "All debuginfo files are available" + msgstr "Alle Debuginfo-Dateien sind vorhanden" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installiert debuginfo-Pakete für alle Build-IDs, die in BUILD_IDS_FILE " ++"aufgeführt \n" ++"sind, in den ABRT-Systemcache." ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "Nicht interaktiv, alle Fragen mit »ja« beantworten" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "- bedeutet STDIN, Standard: build_ids" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "Nur angegebene Dateien herunterladen" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "Muster zum Suchen nach Repositorys, Standard: *debug*" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "Ignorierte Option" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1254,7 +1310,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "Betroffene Module: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1264,54 +1320,54 @@ msgstr "" + "\n" + "Oops aus FILE extrahieren (oder Standard-Eingabe)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + 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:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "Speichern Sie die extrahierten Informationen in PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Fehler-Verzeichnis allgemein lesbar machen" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + 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:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "Suchbegriff(e) in Stdout schreiben und beenden" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "Kompilieren von regex fehlgeschlagen" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + 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:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d Sekunden warten" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1321,11 +1377,11 @@ msgstr "" + "\n" + "Xorg-Absturz aus FILE extrahieren (oder Standard-Eingabe)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Gefundene Daten zum Absturz auf Standard-Eingabe ausgeben" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "Neues Fehlerverzeichnis in DIR erstellen für jeden gefundenen Absturz" + +@@ -1925,73 +1981,83 @@ msgstr "Gefundene Oopses ausgeben" + msgid "Delete files with found oopses" + msgstr "Löschen Dateien mit gefundenen Oopses" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "»%s« findet mehr als ein Fehlerverzeichnis" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Aufruf: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "Aufruf: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Fehler anzeigen [in DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Fehler-Verzeichnis DIR entfernen" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Fehlerdaten in DIR analysieren und berichten" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Informationen zu DIR auflisten" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Anzahl der jüngsten Abstürze ausgeben" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Mehrere Fehler verarbeiten" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++"Private Berichte aktiviert, verwenden Sie »abrt-cli -a COMMAND«, um die " ++"gefundenen Probleme zu erhalten." ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Siehe 'abrt-cli COMMAND --help' für weitere Informationen" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" ++"%sFühren Sie »abrt-cli report %s« aus, um ein Ticket im Red Hat Kundenportal " ++"zu erstellen\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [Optionen] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& auflisten [options]" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "Nur noch nicht berichtete Probleme anzeigen" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Detaillierten Bericht anzeigen" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + 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:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Nur die Probleme anzeigen, welcher nach dem festgelegten Zeitpunkt auftraten" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2002,53 +2068,58 @@ msgstr "" + "Betracht, sie\n" + "zu aktivieren, indem Sie 'abrt-auto-reporting enabled' als Root ausführen\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [Optionen] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "Längere Texte werden gekürzt angezeigt" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Kein solches Fehlerverzeichnis »%s« vorhanden" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& Status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& Status" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Nur die Fehleranzahl ohne Mitteilung ausgeben" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Das aktuellste Auftreten des Fehlers anstatt des angegebenen Zeitstempel " + "ausgeben" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT hat %u Fehler festgestellt. (Für weitere Informationen: abrt-cli " + "list%s)\n" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "Fehlerbericht »%s« kann nicht gefunden werden" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "»%s« wird gelöscht" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& berichten [Optionen] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "PROBLEM_DIR nach Berichterstattung löschen" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "»%s« wird gelöscht" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Aktionen: entfernen(rm), info(i), überspringen(s):" +@@ -2057,21 +2128,21 @@ msgstr "Aktionen: entfernen(rm), info(i), überspringen(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Aktionen: entfernen(rm), berichten(e), info(i), überspringen(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "»%s« wird gemeldet" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Drücken Sie die EINGABETASTE für den nächsten Fehler" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Ohne --since Parameter werden alle erkannten Fehler durchgegangen." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Nur Fehler auswählen, die nach diesem Zeitpunkt auftraten" + +diff --git a/po/de_CH.po b/po/de_CH.po +index 76e01ae..b6eadfe 100644 +--- a/po/de_CH.po ++++ b/po/de_CH.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "fedora-abrt/language/de_CH/)\n" + "Language: de-CH\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/el.po b/po/el.po +index fd630b0..3df3bd4 100644 +--- a/po/el.po ++++ b/po/el.po +@@ -11,7 +11,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -21,7 +21,7 @@ msgstr "" + "language/el/)\n" + "Language: el\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -57,7 +57,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -307,14 +307,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -325,90 +325,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Αρχείο παραμετροποίησης" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Καταγραφή στο syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Προσθήκη του ονόματος του προγράμματος στο αρχείο καταγραφής" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -470,73 +480,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -548,68 +559,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -633,7 +644,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -643,6 +655,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -866,6 +883,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1085,69 +1131,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1711,71 +1757,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1783,49 +1835,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1834,21 +1891,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/en_GB.po b/po/en_GB.po +index 8a667b9..fff4b24 100644 +--- a/po/en_GB.po ++++ b/po/en_GB.po +@@ -11,7 +11,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -21,7 +21,7 @@ msgstr "" + "fedora-abrt/language/en_GB/)\n" + "Language: en-GB\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -62,7 +62,7 @@ msgid "Can't determine network status via NetworkManager: %s" + msgstr "Can't determine network status via NetworkManager: %s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Can't take ownership of '%s'" +@@ -335,7 +335,7 @@ msgid "Quit" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -346,7 +346,7 @@ msgstr "" + "Query package database and save package and component name" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -358,92 +358,102 @@ msgid "Problem directory" + msgstr "Problem directory" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Configuration file" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "Use NUM as client uid" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Log to syslog" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Add program names to log" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Unknown error" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' is not a valid problem directory" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "'%s' element can't be modified" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Not Authorised" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Can't access the problem for modification" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' is not a valid element name" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Can't get size of '%s'" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "No problem space left" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Can't delete the element '%s' from the problem directory '%s'" + ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -453,13 +463,13 @@ msgstr "" + "is not running.\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Exit after NUM seconds of inactivity" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "This program must be run as root." + +@@ -526,73 +536,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -604,68 +615,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -694,7 +705,8 @@ msgid "Deleting problem directory failed: %s" + msgstr "Deleting problem directory failed: %s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Can't get problem data from abrt-dbus: %s" +@@ -705,6 +717,11 @@ 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/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -977,6 +994,35 @@ msgstr "Missing debuginfo file: {0}" + msgid "All debuginfo files are available" + msgstr "All debuginfo files are available" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" +@@ -1218,7 +1264,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr " Tainted modules: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1226,55 +1272,55 @@ msgid "" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Make the problem directory world readable" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "Print search string(s) to stdout and exit" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1285,11 +1331,11 @@ msgstr "" + "Extract Xorg crash from FILE (or standard input)" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Print found crash data on standard output" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1960,78 +2006,82 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Remove problem directory DIR" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyse and report problem data in DIR" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Print information about DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "See 'abrt-cli COMMAND --help' for more information" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Show detailed report" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2040,49 +2090,54 @@ msgid "" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2091,21 +2146,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/en_US.po b/po/en_US.po +index 67488d6..8e1bc43 100644 +--- a/po/en_US.po ++++ b/po/en_US.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "fedora-abrt/language/en_US/)\n" + "Language: en-US\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/eo.po b/po/eo.po +index 5625810..a1c6f40 100644 +--- a/po/eo.po ++++ b/po/eo.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/eo/)\n" + "Language: eo\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/es.po b/po/es.po +index e31eecc..eb5642e 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -19,22 +19,25 @@ + # Luis Bazán , 2011 + # Israel Torres , 2013 + # vareli , 2013 ++# Alex Puchades , 2015. #zanata ++# Gerardo Rosales , 2015. #zanata + # Gladys Guerrero Lozano , 2015. #zanata ++# Jakub Filak , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-07 06:34-0500\n" ++"PO-Revision-Date: 2015-07-21 11:54-0400\n" + "Last-Translator: Gladys Guerrero Lozano \n" + "Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/" + "language/es/)\n" + "Language: es\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -51,7 +54,7 @@ msgid "" + "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" ++"seguridad. Por lo tanto, no 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?" +@@ -60,8 +63,7 @@ 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? " ++"¿Desea activar automáticamente los reportes de fallos de forma anónima? " + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 +@@ -75,7 +77,7 @@ 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:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "No puedo hacerme dueño de '%s'" +@@ -118,27 +120,28 @@ msgid "" + "\n" + "Do you want to continue?" + msgstr "" +-"Vas a silenciar las notificaciones de un problema en particular. Nunca más " +-"verás una notificación para este problema, sin embargo, ABRT seguirá " +-"detectándolos y serás capaz de reportarlo desde la interfaz de ABRT.\n" ++"Va a silenciar las notificaciones de un problema en particular. Nunca más " ++"verá una notificación para este problema, sin embargo, ABRT seguirá " ++"detectándolo y usted podrá reportarlo desde la interfaz gráfica de usuario " ++"ABRT.\n" + "\n" +-"¿Deseas continuar?" ++"¿Desea continuar?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +-msgstr "Aviso" ++msgstr "Advertencia" + + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" + msgstr "" +-"La miniaplicación del área de notificaciones informa al usuario los " ++"La miniaplicación del área de notificaciones informa al usuario sobre los " + "problemas detectados por ABRT" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" + msgstr "" +-"traductores: Claudio Rodrigo Pereyra Diaz , " ++"Traductores: Claudio Rodrigo Pereyra Diaz , " + "Domingo Becker , Héctor Daniel Cabrera " + ", Dennis Tobar ." + +@@ -170,7 +173,7 @@ msgstr "Abierto" + + #: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" +-msgstr "El problema fue reportado anteriormente" ++msgstr "El problema ya ha sido reportado" + + #: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" +@@ -189,11 +192,11 @@ msgstr "Ocurrió un problema" + + #: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" +-msgstr "Un problema ha sido reportado." ++msgstr "Ha sido reportado un problema." + + #: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" +-msgstr "Ha ocurrido un problema nuevo" ++msgstr "Ha ocurrido un nuevo problema" + + #: ../src/applet/applet.c:1064 + #, c-format +@@ -233,8 +236,8 @@ msgid "" + msgstr "" + "& [-v] [DIR]...\n" + "\n" +-"Mini aplicación que notifica al usuario cuando ABRT detecta nuevos problemas\n" +-"\n" ++"Miniaplicación que notifica al usuario cuando ABRT detecta nuevos " ++"problemas\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +@@ -259,11 +262,11 @@ msgid "" + "trace from the coredump but you have to upload the coredump to this service. " + "With this option disabled ABRT will upload the coredump without asking." + msgstr "" +-"El fichero coredump es necesario para generar una traza de la pila que es " +-"una operación que consume tiempo y espacio. ABRT suministra un servicio que " +-"genera la traza de la pila pero usted tiene que subir el coredump a este " +-"servicio. Con esta opción deshabilitada ABRT subirá el coredump sin " +-"preguntar." ++"El archivo coredump es necesario para generar el trazado de pila, el cual es " ++"una operación que utiliza tiempo y espacio. ABRT suministra un servicio que " ++"genera el trazado de pila desde coredump, pero usted tiene que subir el " ++"coredump a este servicio. Con esta opción inhabilitada ABRT subirá el " ++"coredump sin preguntar." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -272,10 +275,10 @@ msgid "" + "directory. With this option disabled ABRT will move the problem directory " + "without asking." + msgstr "" +-"ABRT almacena los datos del problema en directorios. Por lo tanto ABRT " +-"necesita un directorio con permiso de escritura, el directorio se mueve de " +-"la localización del sistema a su directorio home. Con esta opción " +-"deshabilitada ABRT moverá el directorio del problema sin preguntar." ++"ABRT almacena los datos de problemas en directorios. Por lo tanto, cuando " ++"ABRT necesita un directorio de escritura, el directorio se desplaza de la " ++"ubicación del sistema a su directorio principal. Con esta opción " ++"inhabilitada, ABRT desplazará el directorio de problemas sin preguntar." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" +@@ -284,11 +287,11 @@ msgid "" + "uReport is sent at beginning of reporting process. With this option enabled " + "uReports are sent automatically immediately after problem detection." + msgstr "" +-"uReport es una descripción corta y completamente anónima del un problema. " +-"ABRT usa uReport para una detección globlal rápida de duplicados. En la " +-"configuración por defecto uReport es enviado al principio del proceso de " +-"informa. Con esta opción habilitada uReports se envía automáticamente " +-"después de las detección de un problema." ++"uReport es una descripción corta y completamente anónima de un problema. " ++"ABRT utiliza uReport para una detección global rápida de duplicados. En la " ++"configuración predeterminada uReport es enviado al principio del proceso de " ++"reporte. Con esta opción habilitada, los uReports se envían de forma " ++"automática tras la detección de un problema." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" +@@ -296,10 +299,10 @@ msgid "" + "in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" +-"Con esta opción habilitada el proceso de informe iniciado pulsando el botón " +-"Informe en la burbuja de notificación del problema será interrumpido después " +-"de enviar uReport. Usted siempre puede usar el navegador de problemas por " +-"defecto para hacer un informe completo." ++"Con esta opción habilitada el proceso de informe iniciado con un clic en el " ++"botón Reportar en la burbuja de notificación del problema será interrumpido " ++"después de enviar uReport. Usted siempre puede usar el navegador de " ++"problemas predeterminado para hacer un informe completo." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" +@@ -307,7 +310,7 @@ msgid "" + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" + "Con esta opción habilitada ABRT nunca muestra notificaciones de problemas " +-"reportados. Tiene efecto sólo si los informes Acortados están habilitados." ++"reportados. Tiene efecto solo si los informes acortados están habilitados." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +@@ -336,8 +339,8 @@ msgid "" + "allow you to submit these problems." + msgstr "" + "Los problemas incompletos son detectados mientras el ordenador se está " +-"apagando o el usuario está saliendo. Con el objetivo de suministrar informes " +-"de problemas evaluables, ABRT no le permitirá presentar estos problemas." ++"apagando o el usuario está saliendo. A fin de suministrar informes de " ++"problemas evaluables, ABRT no le permitirá presentar estos problemas." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -345,12 +348,12 @@ msgstr "_Cerrar" + + #: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" +-msgstr "Configuraciones _por defecto" ++msgstr "Configuraciones _predeterminadas" + + #: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "Configuración de Reporte de Problemas" ++msgstr "Configuración de reporte de problemas" + + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +@@ -364,7 +367,7 @@ msgstr "Acerca de" + msgid "Quit" + msgstr "Salir" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -375,7 +378,7 @@ msgstr "" + "Solicita el paquete de base de datos y guarda el nombre del paquete y " + "componente" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -386,80 +389,92 @@ msgstr "" + msgid "Problem directory" + msgstr "Directorio de problemas" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Archivo de configuración" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + 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:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Registrarse en syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Agrega el nombre del programa al log" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Error desconocido" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' no es un directorio de problemas válido" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "'%s' elemento no puede 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "No autorizado" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "No puedo acceder al problema para modificación" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" +-"Error Chowning directory. Revisa los registros del sistema para más detalles." +-" " ++"Error al ejecutar chown en directorio. Revise los registros del sistema para " ++"más detalles. " + +-#: ../src/dbus/abrt-dbus.c:559 ++# translation auto-copied from project abrt, version master, document abrt, author Alex Puchades ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "No se puede acceder al problema para lectura" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' no es un nombre válido de elemento" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "No se puede obtener tamaño de «%s»" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "No queda espacio del problema" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "No puedo borrar el elemento '%s' del directorio de problema '%s'" ++msgstr "No puedo borrar el elemento '%s' del directorio de problemas '%s'" ++ ++# translation auto-copied from project abrt, version master, document abrt, author Alex Puchades ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "No se puede acceder al problema" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -468,12 +483,12 @@ msgstr "" + "El nombre '%s' ser perdió, por favor, verifique si otro servicio que tenga " + "ese nombre no se esté ejecutando.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Sale después de NUM de segundos de inactividad" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa debe ser ejecutado como root." + +@@ -510,12 +525,12 @@ msgstr "Ejecuta EVENTO en DIR" + + #: ../src/daemon/abrt-handle-event.c:397 + msgid "Communicate directly to the user" +-msgstr "Comuncar directamente al usuario" ++msgstr "Comunicar directamente al usuario" + + #: ../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'" ++msgstr "No hay trabajadores libres y memoria llena. Omitiendo archivo '%s'" + + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" +@@ -534,7 +549,7 @@ msgstr "" + "Observa el UPLOAD_DIRECTORY y descomprime los archivos dentro de la " + "ubicación especificada en el archivo abrt.conf\n" + "\n" +-"Si el UPLOAD_DIRECTORY no es entregado, usa el valor de la opción\n" ++"Si el UPLOAD_DIRECTORY no se proporciona, usa el valor de la opción\n" + "WatchCrashdumpArchiveDir del archivo abrt.conf" + + #: ../src/daemon/abrt-upload-watch.c:281 +@@ -543,79 +558,80 @@ msgstr "Daemize" + + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "Numero de trabajadores concurrentes. El valor por defecto es" ++msgstr "Número de trabajadores concurrentes. El valor predeterminado es" + + #: ../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" ++msgstr "Tamaño máximo de la caché en MB. El predeterminado es" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "Retira la autenticación" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Nombre de usuario de Red Hat Support" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Contraseña de Red Hat Support, si no la ingresa, se le indicará" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Rutas de certificado uReport SSL o tipo de certificado" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "También necesita especificar --username para --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "Puede usar --username o --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "Puede usar --username o --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "Puede usar --anonymous o --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "Número de argumentos no es válido" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valor de opción desconocido: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "Contraseña:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "No puede continuar sin contraseña\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "Autoreporte autenticado HTTP" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "Autoreporte de cliente autenticadoSSL " + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "Autoreporte anónimo " + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -635,70 +651,70 @@ msgstr "" + "UPLOAD_DIR - Directorio donde los archivos cargados son guardados\n" + "FILENAME - Nombre del archivo cargado\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "No es un directorio: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Omitiendo: '{0}' (Inicia con una barra diagonal / )" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Omitiendo: '{0}' (Inicia con un punto)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Omitiendo: '{0}' (contiene ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Omitiendo: '{0}' (Contiene espacio)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Omitiendo: '{0}' (Contiene tabulación)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "No se puede cambiar el directorio a '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Tipo de archivo desconocido: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "No se puede crear un directorio para trabajar en '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "No se puede mover '{0}' a '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "No se puede copiar '{0}' a '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Error de verificación en '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Desempacando '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "No se puede crear el directorio '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "No se puede desempaquetar '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" +-msgstr "'{0}' se proceso correctamente" ++msgstr "'{0}' se procesó correctamente" + + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 +@@ -720,20 +736,28 @@ msgstr "No puedo hacer chown'%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Falló el borrado del directorio de problema: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "No se pudieron obtener datos del problema usando abrt-dbus: %s" ++msgstr "No se pudieron obtener datos del problema mediante abrt-dbus: %s" + + #: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "No se pudo obtener la lista de problemas desde abrt-dbus: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Alex Puchades ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++"No se puede comprobar si el elemento existe por medio de abrt-dbus: %s" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +-msgstr "No puede crear fichero temporal ‘%s’" ++msgstr "No puede crear archivo temporal ‘%s’" + + #: ../src/lib/ignored_problems.c:250 + #, c-format +@@ -760,8 +784,8 @@ msgstr "" + "& [options] -d DIR\n" + "\n" + "Analiza el trazado de C/C++, genera duplicación de hash, clasificación de " +-"seguimiento e identifica función de caídas en directorio de problemas DIR\n" +-"and identifies crash function in problem directory DIR" ++"seguimiento \n" ++"e identifica función de caídas en directorio de problemas DIR" + + #. + #. * The parser failed. Compute the duphash from the executable +@@ -785,7 +809,7 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula y guarda UUID de coredump en directorio de problemas DIR" ++"Calcula y guarda UUID de volcado de memoria en directorio de problemas DIR" + + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format +@@ -812,8 +836,9 @@ msgid "" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" + msgstr "" +-"& [-v] -d DIR⏎ ⏎ Calculados y guardados UUID y DUPHASH para oops problema " +-"directorio DIR" ++"& [-v] -d DIR\n" ++"\n" ++"Calculados y guardados UUID y DUPHASH para oops problema directorio DIR" + + #: ../src/plugins/abrt-action-analyze-xorg.c:73 + msgid "" +@@ -822,12 +847,13 @@ msgid "" + "Calculates and saves UUID and DUPHASH for xorg problem directory DIR" + msgstr "" + "& [-v] -d DIR\n" ++"\n" + "Calculados y guardados UUID y DUPHASH para xorg problema directorio DIR" + + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" +-msgstr "Módulo ‘%s’ fue cargado – no reportará este crash" ++msgstr "Módulo ‘%s’ fue cargado – no reportará este fallo" + + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" +@@ -837,7 +863,7 @@ msgid "" + msgstr "" + "& [-v] -d DIR\n" + "\n" +-"Calcula y guarda UUID y DUPHASH de volcados de daños de Python" ++"Calcula y guarda UUID y DUPHASH de volcados de fallos de Python" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +@@ -849,7 +875,7 @@ msgstr "Archivo {0}no existe" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" +-msgstr "Extrayendo los textos ups del núcleo" ++msgstr "Extrayendo el texto ups del núcleo" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "Can't process {0}:\n" +@@ -863,7 +889,7 @@ msgstr "No puedo extraer el mensaje ups:'{0}'" + + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" +-msgstr "EL texto ups a sido extraído efectivamente " ++msgstr "EL texto ups ha sido extraído correctamente" + + #: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" +@@ -881,7 +907,7 @@ msgid "" + msgstr "" + "& [options] -d DIR\n" + "\n" +-"Analiza a coredump en directory de problemas DIR, genera y guarda " ++"Analiza a coredump en el directorio de problemas DIR, genera y guarda " + "seguimiento" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 +@@ -898,7 +924,7 @@ msgstr "Termina gdb si está ejecutándose más de NUM segundos" + #: ../src/plugins/abrt-action-generate-backtrace.c:103 + #, c-format + msgid "Backtrace is generated and saved, %u bytes" +-msgstr "El trazado se ha generado y guardado. %u bytes" ++msgstr "El trazado ha sido generado y guardado. %u bytes" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" +@@ -913,7 +939,7 @@ msgstr "" + + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +-msgstr "No se tiene las huellas de clave" ++msgstr "No se tienen las huellas de clave" + + #. Let user know what's going on + #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 +@@ -979,13 +1005,13 @@ msgstr "" + + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +-msgstr "No se puede abrir {0}: {1}" ++msgstr "No se puede abrir {0}: {1} " + + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" + msgstr "" + "Volcado de memoria hace referencia a {0} archivos de información de " +-"dupuración, {1} de ellos no se encuentra instalado" ++"depuración, {1} de ellos no se encuentra instalado" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -1003,23 +1029,60 @@ msgstr "No se encuentra el archivo de información de depuración: {0}" + msgid "All debuginfo files are available" + msgstr "Todos los archivos debuginfo están disponibles" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Instala paquetes debuginfo para todos los build-ids listados en " ++"BUILD_IDS_FILE para caché de sistema \n" ++"ABRT." ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "Noninteractive, asume que se responde 'Sí' a todas las preguntas" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "- means STDIN, default: build_ids" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "Descarga únicamente los archivos especificados" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++"Patrón para usar cuando se buscan repositorios, el predeterminado : *debug* " ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "Opción ignorada" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " + "'No', a stack trace will be generated locally. (It may download a huge " + "amount of data)." + msgstr "" +-"¿De acuerdo con volcado del core? (Puede contener datos sensible), Si su " +-"respuesta es 'No', se generará localmente una traza localmente. (Puede " +-"descargar una enorme cantidad de datos)." ++"¿Está bien para volcado de memoria? (Puede contener datos sensibles). Si su " ++"respuesta es 'No', se generará un trazado local. (Puede descargar una enorme " ++"cantidad de datos)." + + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:71 + 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 "" +-"¿Desea generar una traza de la pila localmente? (Puede descargar una gran " +-"cantidad de datos pero el reporte no puede continuar sin una traza de pila)." ++"¿Desea generar una traza de la pila local? (Puede descargar una gran " ++"cantidad de datos, pero el reporte no puede continuar sin una traza de pila)." ++"" + + #: ../src/plugins/abrt-action-trim-files.c:222 + msgid "" +@@ -1069,7 +1132,7 @@ msgstr "" + + #: ../src/plugins/abrt-action-ureport:138 + msgid "A bug was already filed about this problem:" +-msgstr "Un error ya fue reportado acerca de este problema:" ++msgstr "Ya se reportó un error sobre este problema:" + + #: ../src/plugins/abrt-action-ureport:148 + msgid "uReport was already sent, not sending it again" +@@ -1155,7 +1218,7 @@ msgstr "Instrucción ilegal (¿salto a una dirección aleatoria?)" + + #: ../src/plugins/abrt-gdb-exploitable:647 + msgid "Non-crash related signal" +-msgstr "Señal no relacionada a un cuelgue" ++msgstr "Señal no relacionada a una caída" + + #: ../src/plugins/abrt-gdb-exploitable:652 + msgid "Stack overflow" +@@ -1184,12 +1247,12 @@ msgstr "" + #: ../src/plugins/abrt-gdb-exploitable:693 + msgid "Can't get signal no and do exploitability analysis\n" + msgstr "" +-"No se pudo obtener el número de señal y realizar el análisis de " +-"explotabilidad\n" ++"No se pudo obtener el número de señal ni realizar el análisis de " ++"vulnerabilidad.\n" + + #: ../src/plugins/abrt-gdb-exploitable:706 + msgid "Likely crash reason: " +-msgstr "Razón de cuelgue más probable:" ++msgstr "Razón más probable del fallo:" + + #: ../src/plugins/abrt-gdb-exploitable:707 + msgid "Exploitable rating (0-9 scale): " +@@ -1211,11 +1274,12 @@ msgid "" + msgstr "" + "& [-vs] [-F CADENA]... ARCHIVO PROG [ARGS]\n" + "\n" +-"Se fija en el ARCHIVO log, ejecuta el PROG cuando crece o se reemplaza" ++"Observa el archivo de registro ARCHIVO, ejecuta PROG cuando crece o se " ++"remplaza" + + #: ../src/plugins/abrt-watch-log.c:154 + msgid "Don't run PROG if STRs aren't found" +-msgstr "No ejecuta el PROG si no encuentra la CADENA" ++msgstr "No ejecuta el PROG si no encuentra las CADENAS" + + #: ../src/plugins/abrt-dump-oops.c:125 + msgid "" +@@ -1239,15 +1303,15 @@ 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." ++"Ocurrió un problema en el kernel y su kernel ha sido afectado (flag:%s). Los " ++"mantenedores no pueden diagnosticar reportes de kernel afectados." + + #: ../src/plugins/abrt-dump-oops.c:153 + #, c-format + msgid " Tainted modules: %s." +-msgstr "Módulos manchados: %s" ++msgstr "Módulos afectados: %s" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1257,53 +1321,53 @@ msgstr "" + "\n" + "Extrae los oops desde el ARCH (o la entrada estándar)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + 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:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "Guardar la información extraída en PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Hacer que el directorio de problemas sea legible para todos" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" +-msgstr "Acelerando creación de directorio de problema a 1 por segundo" ++msgstr "Aceleración de creación de directorio de problemas a 1 por segundo" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + 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:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" +-msgstr "Fallo al compilar regex" ++msgstr "Falló al compilar regex" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" +-msgstr "No se pudo actualizar el problema: se encontraron mas de un oops" ++msgstr "No se pudo actualizar el problema: se encontraron más de un oops" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Durmiendo por %d segundos" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1311,23 +1375,23 @@ msgid "" + msgstr "" + "& [-vsoxm] [-d DIR]/[-D] [ARCHIVO]\n" + "\n" +-"Extrae el cuelgue de Xorg desde el ARCHIVO (o la entrada estándar)" ++"Extrae la caída de Xorg desde el ARCHIVO (o la entrada estándar)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" +-msgstr "Prime los datos del cuelgue encontrados en la salida estándar" ++msgstr "Imprime los datos de la caída encontrados en la salida estándar" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" +-msgstr "Creado un directorio de problema en DIR para cada crash encontrado" ++msgstr "Crea un directorio de problemas en DIR para cada fallo encontrado" + + #: ../src/plugins/abrt-retrace-client.c:70 + msgid "" + "Retrace server can not be used, because the crash is too large. Try local " + "retracing." + msgstr "" +-"El servidor de trazado de los pasos no se puede utilizar, debido a que el " +-"daño es muy grande. Intente hacer el trazado de forma local. " ++"El servidor Retrace no se puede utilizar, debido a que el daño es muy grande." ++" Intente hacer el trazado de forma local. " + + #. Hopefully, by this time child emitted more meaningful + #. * error message. But just in case it didn't: +@@ -1336,7 +1400,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:182 + #: ../src/plugins/abrt-retrace-client.c:186 + msgid "Can't create temporary file in " +-msgstr "No se pudo crear la entrada de archivo temporal" ++msgstr "No se pudo crear archivo temporal en" + + #: ../src/plugins/abrt-retrace-client.c:211 + #: ../src/plugins/abrt-retrace-client.c:398 +@@ -1394,7 +1458,7 @@ msgstr "El servidor rechazó la solicitud." + #, c-format + msgid "'%s' must be a regular file in order to use Retrace server." + msgstr "" +-"'%s' debe ser un fichero regular con el objetivo de utulizar el servidor " ++"'%s' debe ser un archivo regular con el objetivo de utilizar el servidor " + "Retrace." + + #: ../src/plugins/abrt-retrace-client.c:514 +@@ -1421,11 +1485,11 @@ msgstr "El servidor no está disponible para atender su solicitud" + + #: ../src/plugins/abrt-retrace-client.c:594 + msgid "Unknown package sent to Retrace server." +-msgstr "Paquete desconocido enviado al servidor de re-trazado." ++msgstr "Paquete desconocido enviado al servidor Retrace." + + #: ../src/plugins/abrt-retrace-client.c:603 + msgid "Preparing an archive to upload" +-msgstr "Preparando un archivo para cargarlo" ++msgstr "Preparación de un archivo para cargarlo" + + #: ../src/plugins/abrt-retrace-client.c:616 + #, c-format +@@ -1439,7 +1503,7 @@ msgstr "" + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format + msgid "You are going to upload %d megabytes. Continue?" +-msgstr "Esta por subir %d megabytes. ¿Desea continuar?" ++msgstr "Está por subir %d megabytes. ¿Desea continuar?" + + #: ../src/plugins/abrt-retrace-client.c:638 + msgid "Cancelled by user" +@@ -1462,12 +1526,12 @@ msgstr "Cargando %d%%\n" + + #: ../src/plugins/abrt-retrace-client.c:711 + msgid "Failed to read from a pipe" +-msgstr "Error al leer del tubo" ++msgstr "Error al leer desde un pipe" + + #: ../src/plugins/abrt-retrace-client.c:724 + #, c-format + msgid "Failed to send data: NSS error %d (%s): %s" +-msgstr "Error al enviar datos:error NSS %d (%s): %s " ++msgstr "Error al enviar datos: error NSS %d (%s): %s " + + #: ../src/plugins/abrt-retrace-client.c:735 + msgid "Upload successful" +@@ -1547,8 +1611,8 @@ msgid "" + "do not check whether retrace server is able to process given package before " + "uploading the archive" + msgstr "" +-"no chequear si el servidor de re-trazado puede procesar el paquete antes de " +-"subir el archivo" ++"no chequear si el servidor Retrace puede procesar el paquete antes de subir " ++"el archivo" + + #: ../src/plugins/abrt-retrace-client.c:1214 + msgid "retrace server URL" +@@ -1556,7 +1620,7 @@ msgstr "Haga seguimiento de servidor URL" + + #: ../src/plugins/abrt-retrace-client.c:1216 + msgid "retrace server port" +-msgstr "Puerto de servidor de seguimiento" ++msgstr "Puerto de servidor Retrace" + + #: ../src/plugins/abrt-retrace-client.c:1218 + msgid "(debug) show received HTTP headers" +@@ -1568,7 +1632,7 @@ msgstr "Para crear e iniciar operaciones por lote" + + #: ../src/plugins/abrt-retrace-client.c:1221 + msgid "read data from ABRT problem directory" +-msgstr "Leer datos desde el directorio de problemas de ABRT" ++msgstr "Lea datos desde el directorio de problemas de ABRT" + + #: ../src/plugins/abrt-retrace-client.c:1223 + msgid "read data from coredump" +@@ -1626,7 +1690,7 @@ msgstr "Se necesita contraseña de tarea." + #: ../src/plugins/abrt-retrace-client.c:1324 + #, c-format + msgid "Unknown operation: %s." +-msgstr "Operación desconocida:%s" ++msgstr "Operación desconocida: %s" + + #: ../src/plugins/analyze_LocalGDB.xml.in.h:1 + msgid "Local GNU Debugger" +@@ -1642,14 +1706,13 @@ msgid "" + "and take up disk space. However, unlike RetraceServer, doesn't send coredump " + "to remote machines." + msgstr "" +-"Necesita descargar paquetes debuginfo,esto puedo tardar un tiempo " +-"significativo, y ocupar espacio en disco. Sin embargo, a diferencia del " +-"Servidor de Trazado, no envía el volcado a equipos remotos." ++"Necesita descargar paquetes debuginfo, lo cual podría tardar un tiempo " ++"significativo, y ocupar espacio en el disco. Sin embargo, a diferencia del " ++"servidor Retrace, no envía coredump a equipos remotos." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:1 + msgid "Send core dump to remote retrace server for analysis" +-msgstr "" +-"Enviar núcleo del volcado al servidor de re-trazado remoto para su análisis" ++msgstr "Enviar núcleo del volcado al servidor Retrace remoto para su análisis" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:2 + msgid "" +@@ -1659,27 +1722,27 @@ msgid "" + "you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" +-"Carga volcado a un servidor, que genera el trazado hacia atrás y lo devuelve." +-" Ventajas: no es necesario las descargas de debuginfo. El seguimiento sobre " +-"la base de datos del servidor de debuginfos es más completa. El servidor de " +-"seguimiento puede generar mejores trazados. Contras: el volcado que debe " +-"cargar contiene todos los datos del a caída del programa, incluyendo sus " +-"datos privados si los hubiere." ++"Carga volcado a un servidor, el cual genera el trazado y lo devuelve. " ++"Ventajas: no es necesario para las descargas de debuginfo. La base de datos " ++"del servidor Retrace de debuginfos es más completa. El servidor Retrace " ++"puede generar mejores trazados. Desventajas: el volcado que debe cargar " ++"contiene todos los datos de la caída del programa, incluidos sus datos " ++"privados si los hubiere." + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:3 + #: ../src/plugins/analyze_CCpp.xml.in.h:3 + msgid "Retrace server URL" +-msgstr "Url del servidor de re-trazado" ++msgstr "URL del servidor Retrace" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:4 + #: ../src/plugins/analyze_CCpp.xml.in.h:4 + msgid "Address of the retrace server" +-msgstr "Dirección del servidor de re-trazado" ++msgstr "Dirección del servidor Retrace" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:5 + #: ../src/plugins/analyze_CCpp.xml.in.h:5 + msgid "Insecure" +-msgstr "Inseguro" ++msgstr "Insegura" + + #: ../src/plugins/analyze_RetraceServer.xml.in.h:6 + #: ../src/plugins/analyze_CCpp.xml.in.h:6 +@@ -1693,7 +1756,7 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" +-"Escribir \"insegura\" para aceptar una conexión insegura <a href=\"https:/" ++"Escribir \"insecure\" para aceptar una conexión insegura <a href=\"https:/" + "/fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + +@@ -1703,7 +1766,7 @@ msgstr "Recolectar .xsession-errors" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:2 + msgid "Save relevant lines from ~/.xsession-errors file" +-msgstr "Guarde las líneas importantes del archivo " ++msgstr "Guarde las líneas importantes del archivo ~/.xsession-errors" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:3 + msgid "" +@@ -1716,12 +1779,12 @@ msgstr "" + + #: ../src/plugins/https-utils.c:62 + msgid "An error occurred on the server side." +-msgstr "Ha ocurrido un error en el servidor" ++msgstr "Ha ocurrido un error en el servidor." + + #: ../src/plugins/https-utils.c:65 + #, c-format + msgid "A server-side error occurred on '%s'" +-msgstr "Ocurrió un error en el lado del servidor en '%s'" ++msgstr "Ocurrió un error en el servidor en '%s'" + + #: ../src/plugins/https-utils.c:74 + msgid "An error occurred while connecting to the server" +@@ -1823,7 +1886,7 @@ msgstr "Error al restablecer protocolo de enlace." + #: ../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." ++msgstr "No se pudo completar el protocolo de enlace: error NSS %d." + + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." +@@ -1832,7 +1895,7 @@ msgstr "Error al cerrar socket SSL." + #: ../src/plugins/https-utils.c:332 + #, c-format + msgid "Malformed HTTP response header: '%s'" +-msgstr "Encabezamiento de respuesta HTTP malforado: '%s'" ++msgstr "Encabezamiento de respuesta HTTP : mal formado'%s'" + + #: ../src/plugins/https-utils.c:369 + #, c-format +@@ -1857,11 +1920,11 @@ msgstr "Error al apagar NSS." + + #: ../src/plugins/bodhi.c:375 + msgid "List of bug ids" +-msgstr "Lista de ids de errores" ++msgstr "Lista de los ID de errores" + + #: ../src/plugins/bodhi.c:376 + msgid "Specify a bodhi server url" +-msgstr "Especifique la url del servidor bodhi" ++msgstr "Especifique la URL del servidor bodhi" + + #: ../src/plugins/bodhi.c:377 + msgid "Specify a release" +@@ -1879,7 +1942,7 @@ msgstr "" + + #: ../src/plugins/bodhi.c:434 + msgid "Searching for updates" +-msgstr "Buscando actualizaciones" ++msgstr "Buscando actualizaciones..." + + #: ../src/plugins/bodhi.c:440 + msgid "No updates for this package found" +@@ -1889,7 +1952,7 @@ msgstr "No se encontraron actualizaciones para este paquete" + #: ../src/plugins/bodhi.c:469 + msgid "Local version of the package is newer than available updates" + msgstr "" +-"La versión local del paquete es mas nueva que la disponible en las " ++"La versión local del paquete es más reciente que la disponible en las " + "actualizaciones" + + #: ../src/plugins/bodhi.c:486 +@@ -1899,7 +1962,7 @@ msgid "" + " %s. Do you want to continue with reporting the bug?" + msgstr "" + "Existe una actualización que puede corregir su problema. Usted puede " +-"instalarla ejecutando: %s. ¿Desea continuar con el informe del bug?" ++"instalarla ejecutando: %s. ¿Desea continuar con el informe del error?" + + #: ../src/hooks/abrt-merge-pstoreoops.c:85 + msgid "" +@@ -1920,75 +1983,83 @@ msgstr "Imprimir los oopses encontrados" + msgid "Delete files with found oopses" + msgstr "Borrar los archivos con oopses encontrados" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" +-msgstr "'%s' identificado más de un directory con problemas" ++msgstr "'%s' identifica más de un directorio de problemas" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Uso: abrt-cli [--version] COMANDO [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "Uso: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Listar problemas [en DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Retirar directorio de problemas DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analizar y reportar datos de problemas en DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Imprimir información sobre DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Imprima el conteo de las fallas recientes" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" +-msgstr "Procesando varios problemas" ++msgstr "Procesar varios problemas" ++ ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++"Private Reports está activado, use 'abrt-cli -a COMMAND' para obtener los " ++"problemas detectados." + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "Para obtener mayor información, ver 'abrt-cli COMMAND --help' " ++msgstr "Para obtener más información, consulte 'abrt-cli COMMAND --help' " + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" +-"%sEjecutar 'abrt-cli report %s' para crear un caso en el Portal del cliente " ++"%sEjecute 'abrt-cli report %s' para crear un caso en el Portal del cliente " + "Red Hat\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++# translation auto-copied from project abrt, version master, document abrt, author Gerardo Rosales ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [opciones]" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" +-msgstr "Lista únicamente los problemas no reportados" ++msgstr "Liste únicamente los problemas no reportados" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Muestre el reporte detallado" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + 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" ++"Liste solo los problemas más recientes que la marca de tiempo especificada" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" +-msgstr "" +-"Listar sólo los problemas más viejos que la marca de tiempo especificada" ++msgstr "Liste solo los problemas anteriores a la marca de tiempo especificada" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1999,53 +2070,59 @@ msgstr "" + "habilitarla al emitir \n" + "'abrt-auto-reporting enabled' como usuario con privilegios de root.\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" +-msgstr "Los textos de mayor longitud que éste se mostrarán abreviados" ++msgstr "Los textos de más extensos que este, aparecen abreviados" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "No se encontró el directorio '%s' del problema" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& estatus [DIR]..." ++# translation auto-copied from project abrt, version master, document abrt, author Alex Puchades ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& estatus" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Imprimir únicamente el conteo del problema sin ningún mensaje" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" +-"Imprimir únicamente los problemas más recientes que la marca de tiempo " ++"Imprimir únicamente los problemas más recientes que la marca de tiempo " + "especificada" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" +-"ABRT a detectado %u problema(s). Para más información ejecute: abrt-cli list " +-"%s\n" ++"ABRT ha detectado %u problema(s). Para más información ejecute: abrt-cli " ++"list %s\n" ++ ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "No se puede encontrar el problema '%s'" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Borrando '%s'..." + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& reporte[opciones] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Elimina PROBLEM_DIR después de reportarlos" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Borrando '%s'" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Acciones: eliminar(rm), información(i), omitir(s):" +@@ -2054,23 +2131,23 @@ msgstr "Acciones: eliminar(rm), información(i), omitir(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Acciones: eliminar(rm), reporte(e), información(i), omitir(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Reportando '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Para el siguiente problema presione la tecla ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Without -- puesto que el argumento se repite sobre todos los problemas " + "detectados." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Selecciona unicamente los problemas después del tiempo especificado" + +@@ -2079,7 +2156,7 @@ msgid "" + "Send core dump to remote retrace server for analysis or perform local " + "analysis if the remote analysis fails" + msgstr "" +-"Enviado el volcado del core al servidor remoto retrace para análisis o lleve " ++"Envíe el volcado de núcleo al servidor remoto Retrace para análisis o lleve " + "a cabo un análisis local si el análisis remoto falla" + + #: ../src/plugins/analyze_CCpp.xml.in.h:2 +@@ -2092,15 +2169,14 @@ msgid "" + "you upload contains all the data from the crashed program, including your " + "private data, if any." + msgstr "" +-"Subiendo el volvado del core al servidor, que generara un copia de la traza " +-"y lo devolverá. Si el usuario no desea subir su volcado del core a ningún " +-"sitio el evento llevará a cabo un análisis local. El análisis local es " ++"Carga el volcado del núcleo al servidor, que generará una copia del trazado " ++"y lo devolverá. Si el usuario no desea subir el volcado del núcleo a ningún " ++"sitio, el evento llevará a cabo un análisis local. El análisis local es " + "ejecutado por el evento si el análisis remoto falla. Pros: no necesita " +-"descarga de información de depuración. La base de datos de información de " +-"depuración del servidor Retrace es más completa. El servidor Retrace puede " +-"generar mejores trazas de vuelta. Contras: el volcado de core que sube " +-"contiene todos los datos del programa que ha fallado, incluyendo sus datos " +-"privados, si los hay." ++"descargas de información de depuración. La base de datos del servidor " ++"Retrace es más completa. El servidor Retrace puede generar mejores trazados. " ++"Contras: el volcado del núcleo que sube contiene todos los datos del " ++"programa que ha fallado, incluidos sus datos privados, si los hay." + + #: ../src/plugins/analyze_VMcore.xml.in.h:1 + msgid "Analyze VM core" +@@ -2119,7 +2195,7 @@ msgid "" + "time, and take up disk space." + msgstr "" + "Es necesario instalar paquetes de información de depuración de kernel, los " +-"cuales pueden tomar un tiempo significativo y ocupar espacio de disco " ++"cuales pueden tomar un tiempo significativo y ocupar espacio de disco." + + #: ../src/plugins/collect_GConf.xml.in.h:1 + msgid "Collect GConf configuration" +@@ -2127,7 +2203,7 @@ msgstr "Recopilar configuración de Gconf" + + #: ../src/plugins/collect_GConf.xml.in.h:2 + msgid "Save configuration from application's GConf directory" +-msgstr "Guarda configuración del directorio Gconf de aplicación" ++msgstr "Guardar configuración del directorio Gconf de aplicaciones" + + #: ../src/plugins/collect_GConf.xml.in.h:3 + msgid "" +@@ -2139,7 +2215,7 @@ msgstr "" + + #: ../src/plugins/collect_vimrc_system.xml.in.h:1 + msgid "Collect system-wide vim configuration files" +-msgstr "Colecta archivos de configuración vim de system-wide " ++msgstr "Recolecta archivos de configuración vim de system-wide " + + #: ../src/plugins/collect_vimrc_system.xml.in.h:2 + msgid "Save /etc/vimrc and /etc/gvimrc" +@@ -2155,7 +2231,7 @@ msgstr "" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +-msgstr "Colecta sus archivos de configuración vim" ++msgstr "Recolecta sus archivos de configuración vim" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" +diff --git a/po/et.po b/po/et.po +index ab0168b..25cb175 100644 +--- a/po/et.po ++++ b/po/et.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/et/)\n" + "Language: et\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' omandamine nurjus" +@@ -307,7 +307,7 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -317,7 +317,7 @@ msgstr "" + "\n" + "Tee päring pakkide andmebaasi ja salvesta paki ning komponendi nimi" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -328,90 +328,100 @@ msgstr "" + msgid "Problem directory" + msgstr "Probleemide kataloog" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Seadistuste fail" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [valikud]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Logi syslog-i" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Lisa programminimed logisse" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Tundmatu viga" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' ei ole korrektne probleemi kataloog" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Pole autenditud" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Välju peale NUM sekundit tegevusetust" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Seda rakendust peab käivitama administraatori õigustes." + +@@ -473,73 +483,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -551,68 +562,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -636,7 +647,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "Probleemi kataloogi kustutamine nurjus: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Probleemi andmete pärimine üle abrt-dbus'i nurjus: %s" +@@ -646,6 +658,11 @@ 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/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -885,6 +902,35 @@ msgstr "Puuduv silumisinfo fail: {0}" + msgid "All debuginfo files are available" + msgstr "Kõik silumisinfo failid on saadaval" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1112,69 +1158,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Tee probleemide kataloog kõikidele loetavaks" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "Trüki otsingustringid stdout-i ja välju" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Trüki leitud krahhi andmed standardsesse väljundisse" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1753,71 +1799,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Kasutamine: abrt-cli [--versioon] KÄSK [KATALOOG]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Eemalda probleemide kataloog KATALOOG" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analüüsi ja teavita probleemide andmed KATALOOGis" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Kuva infot KATALOOGi kohta" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Vaata 'abrt-cli KÄSK --help' info saamiseks" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [valikud] [KATALOOG]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Kuva detailne raport" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1825,49 +1877,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [valikud] KATALOOG..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1876,21 +1933,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/eu.po b/po/eu.po +index 9cda425..a7ea010 100644 +--- a/po/eu.po ++++ b/po/eu.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/eu/)\n" + "Language: eu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -302,14 +302,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -320,90 +320,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Konfigurazio fitxategia" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [aukerak]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Errore ezezaguna" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Programa hau root bezala exekutatu behar da." + +@@ -465,73 +475,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -543,68 +554,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -628,7 +639,8 @@ msgstr "Ezin da chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -638,6 +650,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -861,6 +878,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1080,69 +1126,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1693,71 +1739,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Erabilera: abrt-cli [--version] KOMANDOA [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1765,49 +1817,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1816,21 +1873,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/fa.po b/po/fa.po +index 3ff0379..76a20c3 100644 +--- a/po/fa.po ++++ b/po/fa.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "language/fa/)\n" + "Language: fa\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -56,7 +56,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -306,14 +306,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -324,90 +324,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "در syslog سیاهه شد" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -469,73 +479,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -547,68 +558,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -632,7 +643,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -642,6 +654,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -865,6 +882,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1084,69 +1130,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1695,71 +1741,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1767,49 +1819,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1818,21 +1875,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/fi.po b/po/fi.po +index 27c830f..ff2e585 100644 +--- a/po/fi.po ++++ b/po/fi.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "language/fi/)\n" + "Language: fi\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -56,7 +56,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kohteen ”%s” omistajuutta ei voida ottaa" +@@ -309,7 +309,7 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -319,7 +319,7 @@ msgstr "" + "\n" + "Kysele pakettitietokantaa ja tallenna paketin ja komponentin nimi" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -330,90 +330,100 @@ msgstr "" + msgid "Problem directory" + msgstr "Ongelmahakemisto" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Asetustiedosto" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [valitsimet]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Kirjoita lokia syslogiin" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Lisää ohjelmanimet lokiin" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Tuntematon virhe" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "”%s” ei ole kelvollinen ongelmakansio" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Lopeta NUM sekunnin toimettomuuden jälkeen" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Tämä ohjelma täytyy suorittaa pääkäyttäjänä." + +@@ -475,73 +485,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -553,68 +564,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -638,7 +649,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -648,6 +660,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -872,6 +889,35 @@ msgstr "Puuttuva debuginfo-tiedosto: {0}" + msgid "All debuginfo files are available" + msgstr "Kaikki debuginfo-tiedostot ovat saatavilla" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1094,70 +1140,70 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Tee ongelmahakemistosta kaikkien luettava" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1736,71 +1782,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Käyttö: abrt-cli [--version] KOMENTO [HAK]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Poista ongelmallinen hakemisto HAK" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analysoi ja raportoi ongelmadata HAKemistossa" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Tulosta tietoja HAKemistosta" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Katso lisätietoja komennolla \"abrt-cli KOMENTO --help\"" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [valinnat] [HAK]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Näytä yksityiskohtainen raportti" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1808,49 +1860,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [valinnat] HAK..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1859,21 +1916,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/fr.po b/po/fr.po +index ccdc600..8bc08a1 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -13,22 +13,24 @@ + # Sam Friedmann , 2014 + # Vincent HERBER , 2011 + # Vincent , 2011 ++# Jakub Filak , 2015. #zanata + # Julie Carbone , 2015. #zanata ++# Sam Friedmann , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-09 12:15-0500\n" +-"Last-Translator: Julie Carbone \n" ++"PO-Revision-Date: 2015-07-16 08:54-0400\n" ++"Last-Translator: Sam Friedmann \n" + "Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/" + "language/fr/)\n" + "Language: fr\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -70,7 +72,7 @@ msgstr "Impossible de se connecter à NetworkManager via DBus : %s" + 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:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Impossible de s'approprier « %s »" +@@ -113,12 +115,12 @@ msgid "" + "\n" + "Do you want to continue?" + msgstr "" +-"Vous allez mettre en sourdine les notifications d'un problème en particulier." +-" Vous ne verrez jamais plus de bulle concernant ce problème. Cependant, ABRT " +-"le détectera et vous pourrez le rapporter à partir de l'interface " +-"utilisateur ABRT.\n" ++"Vous allez désactiver les notifications d'un problème en particulier. Vous " ++"ne verrez jamais plus de bulle concernant ce problème. Cependant, ABRT le " ++"détectera et vous pourrez le signaler à partir de l'interface utilisateur " ++"ABRT.\n" + "\n" +-"Souhaitez-vous continuer ?" ++"Souhaitez-vous continuer ?" + + #: ../src/applet/applet.c:784 ../src/applet/applet.c:786 + msgid "Warning" +@@ -169,7 +171,7 @@ msgstr "Ouvrir" + + #: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" +-msgstr "L'incident a déjà été rapporté" ++msgstr "L'incident a déjà été signalé" + + #: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" +@@ -368,7 +370,7 @@ msgstr "À propos" + msgid "Quit" + msgstr "Quitter" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -379,7 +381,7 @@ msgstr "" + "Interroge la base de données des paquets et enregistre le paquet et le nom " + "du composant" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -390,81 +392,91 @@ msgstr "" + msgid "Problem directory" + msgstr "Répertoire des incidents" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Fichier de configuration" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + 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:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Journaliser vers syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Ajouter le nom des programmes dans le journal" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Erreur inconnue" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "« %s » n'est pas un répertoire d'incidents valide" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "L'élément « %s » ne peut pas être modifié" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Interdit" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Impossible d'accéder à l'incident pour effectuer des modifications" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Échec du chown sur le répertoire. Vérifier les journaux du système pour plus " + "de détails." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "Impossible d'accéder à l'incident pour la lecture" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "« %s » n'est pas un nom d'élément valide" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Impossible d'obtenir la taille de « %s »" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "Il ne reste plus d'espace pour les incidents" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "Impossible de supprimer l'élément « %s » du répertoire des incidents « %s »" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "Impossible d'accéder à l'incident" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -473,12 +485,12 @@ msgstr "" + "Le nom « %s » a été perdu, merci de vérifier qu'un autre service utilisant " + "ce même nom ne tourne pas.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Quitter après NUM secondes d'inactivité" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Le programme doit être lancé en tant que root." + +@@ -556,75 +568,76 @@ msgstr "Nombre de moteurs concurrents. La valeur par défaut est :" + 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:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "Désactive l'authentification" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Nom d'utilisateur du Support Red Hat" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Si le mot de passe du Support Red Hat n'est pas fourni, vous serez invité à " + "en créer un." + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Types ou chemins de certificat uReport SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "Vous devez également indiquer --username pour --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "Vous pouvez utiliser --username ou --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "Vous pouvez utiliser --username ou --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "Vous pouvez utiliser --anonymous ou --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "Nombre d'arguments non valide" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valeur de l'option inconnue : « %s »\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "Mot de passe :" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" +-msgstr "Impossible de continuer sans mot de passe\n" ++msgstr "Impossible de continuer sans mot de passe" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "Autoreporting authentifié avec HTTP" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "Autoreporting authentifié avec le Client SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "Autoreporting anonyme" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -645,68 +658,68 @@ msgstr "" + "stockées\n" + " FILENAME - Nom de fichier de l'archive téléversée\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "N'est pas un répertoire : « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Ignorer : « {0} » (commence par une barre oblique)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Ignorer : « {0} » (commence par un point)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Ignorer : « {0} » (contient ...)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Ignorer : « {0} » (contient un espace)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Ignorer : « {0} » (contient un onglet)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Impossible de modifier le répertoire sur « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Type de fichier inconnu : « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Impossible de créer un répertoire de travail dans « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Impossible de déplacer « {0} » vers « {1} »" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Impossible de copier « {0} » sur « {1} »" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Erreur de vérification sur « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Décompression de « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Impossible de créer le répertoire « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Impossible de décompresser « {0} »" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "Traitement de « {0} » réussi" + +@@ -730,7 +743,8 @@ msgstr "chown impossible sur « %s » : %s" + msgid "Deleting problem directory failed: %s" + msgstr "La suppression du répertoire d'incidents a échoué : %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Impossible d'obtenir les données de l'incident depuis abrt-dbus : %s" +@@ -740,6 +754,11 @@ 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/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "Impossible de tester si l'élément existe sur abrt-dbus : %s" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -1022,6 +1041,42 @@ msgstr "Fichier debuginfo manquant : {0}" + msgid "All debuginfo files are available" + msgstr "Tous les fichiers debuginfo sont disponibles" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installe les paquets debuginfo pour tous les build-ids répertoriés dans " ++"BUILD_IDS_FILE sur\n" ++"le cache du système ABRT." ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "Non-interactif, répondre « Oui » à toutes les questions" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "- signifie STDIN, par défaut : build_ids" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "Télécharger les fichiers spécifiés uniquement" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++"Schéma à utiliser lors de la recherche de référentiels, par défaut : *debug*" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "Option ignorée" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1270,7 +1325,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "Modules teintés : %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1280,54 +1335,54 @@ msgstr "" + "\n" + "Extrait le oops de FILE (ou de l'entrée standard)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + 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:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "Sauvegarder les informations extraites dans PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + 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:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + 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:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + 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:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "Échec de la compilation des expressions régulières" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + 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:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Mise en sommeil pour %d secondes" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1337,11 +1392,11 @@ msgstr "" + "\n" + "Extraire les données de plantage de Xorg de FILE (ou de l'entrée standard)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Afficher les données de plantage sur la sortie standard" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Créer un répertoire d'incidents dans DIR pour chaque incident découvert" +@@ -1723,9 +1778,9 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" +-"Écrire « Non-sécurisée » pour autoriser les connexions non-sécurisées <a " +-"href=\"https://fedorahosted.org/abrt/wiki/" +-"AbrtRetraceServerInsecureConnection\" >(warning)</a>" ++"Écrire « insecure » pour autoriser les connexions non-sécurisées <a href=" ++"\"https://fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++">(warning)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1953,45 +2008,53 @@ msgstr "Afficher les oops trouvés" + msgid "Delete files with found oopses" + msgstr "Supprimer les fichiers avec des oops trouvés" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "« %s » identifie plus d'un répertoire d'incident" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Usage : abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "Utilisation : abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Répertorier les problèmes [dans DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Supprimer le répertoire d'incidents DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" +-msgstr "Analyser et rapporter les données des incidents dans DIR" ++msgstr "Analyser et signaler les données des incidents dans DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Imprimer des informations sur DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Affiche le nombre de plantages récents" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Traiter de multiples problèmes" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++"« Private Reports » est activé, veuillez utiliser « abrt-cli -a COMMAND » " ++"pour voir les problèmes détectés." ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + "Voir « abrt-cli COMMAND --help » pour obtenir davantage d'informations" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -1999,30 +2062,30 @@ msgstr "" + "%sExécuter « abrt-cli report %s » pour créer un dossier dans le Portail " + "Client Red Hat\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [options]" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "Répertorier les problèmes non rapportés uniquement" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Afficher le rapport détaillé" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + 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:192 ++#: ../src/cli/list.c:186 + 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:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2033,51 +2096,56 @@ msgstr "" + "Veuillez envisager de l'activer en effectuant\n" + "la commande « abrt-auto-reporting enabled » en tant qu'utilisateur root.\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + 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:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Répertoire d'incidents « %s » inconnu" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& status" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Affiche uniquement le nombre d'incident sans autre message" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Affiche les seuls incidents plus récents que l'horodatage indiqué" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT a détecté %u incident(s). Pour plus d'informations, lancer : abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "Impossible de trouver le problème « %s »" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Suppression de « %s »" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Supprimer PROBLEM_DIR après le rapport" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Suppression de « %s »" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Actions : supprimer (rm), informations (i), ignorer (s) :" +@@ -2085,23 +2153,23 @@ msgstr "Actions : supprimer (rm), informations (i), ignorer (s) :" + #: ../src/cli/process.c:66 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" +-"Actions : supprimer (rm), rapporter (e), informations (i), ignorer (s) :" ++"Actions : supprimer (rm), signaler (e), informations (i), ignorer (s) :" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Rapporter « %s »" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Pour le problème suivant, veuillez appuyer sur ENTRÉE :" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Sans l'argument --since, réitère tous les problèmes détectés." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Sélectionne uniquement les problèmes détectés après l'horodatage" + +diff --git a/po/gl.po b/po/gl.po +index b46cb31..d76c209 100644 +--- a/po/gl.po ++++ b/po/gl.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/gl/)\n" + "Language: gl\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "Non é posíbel conectar con NetworkManager por DBus: %s" + 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:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Non é posíbel asumir a propiedade sobre «%s»" +@@ -309,7 +309,7 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -319,7 +319,7 @@ msgstr "" + "\n" + "Consultar a base de datos e gravar o nome do paquete e do compoñente" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -330,81 +330,91 @@ msgstr "" + msgid "Problem directory" + msgstr "Directorio de problemas" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Ficheiro de configuración" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [opcións]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + 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:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Rexistrar en syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Engadir os nomes dos programas ao rexistro" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Produciuse un erro descoñecido" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "«%s» non é un directorio de problemas válido" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "Non é posíbel modificar o elemento «%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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Non autorizado " + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Non é posíbel acceder ao problema para modificar" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Fallou a execución de chown no directorio. Comprobe os rexistros do sistema " + "para máis detalles." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "«%s» non é un nome válido para un elemento" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Non é posíbel obter o tamaño de «%s»" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "Non fica espazo para os problemas" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "Non é posíbel eliminar o elemento «%s» do directorio de problemas «%s»" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -413,12 +423,12 @@ msgstr "" + "Perdeuse o nome «%s»; comprobe se outro servizo que posúa o nome non está en " + "execución.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Saír despois de NUM segundos de inactividade" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa débese executar como administrador." + +@@ -486,74 +496,75 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "O número de argumentos é incorrecto" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -565,68 +576,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -650,7 +661,8 @@ msgstr "Non é posíbel cambiar o propietario de «%s»: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Fallou a eliminación do directorio de problemas: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Non é posíbel obter os datos do problema de abrt-dbus: %s" +@@ -660,6 +672,11 @@ 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/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -909,6 +926,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1129,69 +1175,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1753,71 +1799,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Mostrar un informe detallado" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1825,49 +1877,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Imprimir só o número de problemas sen ningunha mensaxe" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Imprimir só os problemas anteriores á marca temporal indicada" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1876,21 +1933,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/gu.po b/po/gu.po +index 41d42e3..d7b4001 100644 +--- a/po/gu.po ++++ b/po/gu.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -23,7 +23,7 @@ msgstr "" + "language/gu/)\n" + "Language: gu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -62,7 +62,7 @@ msgstr "DBus પર NetworkManager સાથે જોડાઇ શકાતુ + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager મારફતે નેટવર્ક પરિસ્થિતિને નક્કી કરી શકાતુ નથી: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ની માલિકી લઇ શકાતી નથી" +@@ -346,7 +346,7 @@ msgstr "વિશે" + msgid "Quit" + msgstr "બહાર નીકળો" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -356,7 +356,7 @@ msgstr "" + "\n" + "ક્વેરી પેકેજ ડેટાબેઝ અને પેકેજ અને ઘટક નામ સંગ્રહો" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -367,78 +367,88 @@ msgstr "" + msgid "Problem directory" + msgstr "સમસ્યા ડિરેક્ટરી" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "રૂપરેખાંકન ફાઇલ" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "ક્લાયન્ટ uid તરીકે NUM ને વાપરો" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "syslog માં લૉગ લો" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "લૉગ રાખવા માટે કાર્યક્રમ નામો ઉમેરો" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "અજ્ઞાત ભૂલ" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' માન્ય સમસ્યા ડિરેક્ટરી નથી" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "અધિકૃત નથી" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "સૂચના માટે સમસ્યાને વાપરી શકાતુ નથી" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "ડિરેક્ટરીને માલિકી કરવામાં નિષ્ફળતા. વધારે વિગતો માટે સિસ્ટમ લૉગ જુઓ." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' એ યોગ્ય ઘટક નામ નથી" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' નું માપ મેળવી શકાતુ નથી" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "સમસ્યાની જગ્યા બાકી રહેલ નથી" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "સમસ્યા ડિરેક્ટરી '%s' માંથી ઘટક '%s' ને કાઢી શકાતુ નથી" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -447,12 +457,12 @@ msgstr "" + "નામ '%s' ગુમ થઇ ગયુ છે, મહેરબાની કરીને ચકાસો જો માલિકી ધરાવતા નામ વાળી બીજી " + "સેવા ચાલી રહી નથી.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "નિષ્ક્રિયતાની NUM સેકંડ પછી બહાર નીકળો" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "આ કાર્યક્રમ રુટ તરીકે જ ચલાવવો જોઇએ." + +@@ -529,74 +539,75 @@ msgstr "સહવર્તી કામદારો સંખ્યા. મૂ + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB માં મહત્તમ કેશ માપ. મૂળભૂત છે" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "સત્તાધિકરણને બંધ કરો" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Red Hat Support વપરાશકર્તા નામ" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat Support પાસવર્ડ, જો આપેલ ન હોય તો, તેની માટે પ્રોમ્પ્ટ કરવામાં આવશે" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL પ્રમાણપત્ર પાથ અથવા પ્રમાણપત્ર પ્રકાર" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "તમારે --password માટે --username ને પણ સ્પષ્ટ કરવુ જ જોઇએ" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "તમારે ક્યાંતો --username અથવા --certificate ને વાપરી શકો છો" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "તમે ક્યાંતો --username અથવા --anonymous ને વાપરી શકો છો" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "તમે ક્યાંતો --anonymous અથવા --certificate વાપરી શકો છો" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "દલીલોની અયોગ્ય સંખ્યા" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "અજ્ઞાત વિકલ્પ કિંમત: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "પાસવર્ડ:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "પાસવર્ડ વગર ચાલુ કરી શકાતુ નથી\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP સત્તાધિકરણ થયેલ આપોઆપ અહેવાલીકરણ" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL ક્લાયન્ટ સત્તાધિકરણ થયેલ આપોઆપ અહેવાલીકરણ" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "અનામિક આપોઆપ અહેવાલીકરણ" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -615,68 +626,68 @@ msgstr "" + " UPLOAD_DIR - ડિરેક્ટરી જ્યાં અપલોડ થયેલ પેટીઓ સંગ્રહેલ છે\n" + " FILENAME - અપલોડ થયેલ પેટી ફાઇલ નામ\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ડિરેક્ટરી નથી: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "છોડી રહ્યા છે: '{0}' (સ્લેશ સાથે શરૂ કરે છે)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "છોડી રહ્યા છે: '{0}' (બિંદુ સાથે શરૂ કરે છે)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "છોડી રહ્યા છે: '{0}' (સમાવે છે ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "છોડી રહ્યા છે: '{0}' (જગ્યાને સમાવે છે)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "છોડી રહ્યા છે: '{0}' (ટૅબને સમાવે છે)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}' માટે ડિરેક્ટરીને બદલી શકાતી નથી" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "અજ્ઞાત ફાઇલ પ્રકાર: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' માં કાર્ય કરવાની ડિરેક્ટરીને બનાવી શકાતી નથી" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' થી '{1}' ને ખસેડી શકાતુ નથી" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' થી '{1}' માં નકલ કરી શકાતી નથી" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' પર ચકાસણી ભૂલ" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' ને ખોલી રહ્યા છે" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ડિરેક્ટરીને બનાવી શકાતી નથી" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' ને ખોલી શકાતુ નથી" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' પ્રક્રિયા સફળતાપૂર્વક થઇ" + +@@ -700,7 +711,8 @@ msgstr "'%s' નું chown કરી શકાતુ નથી: %s" + msgid "Deleting problem directory failed: %s" + msgstr "ડિરેક્ટરીની સમસ્યાને કાઢી નાંખવામાં નિષ્ફળતા: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus માંથી સમસ્યા માહિતીને મેળવી શકાતી નથી: %s" +@@ -710,6 +722,11 @@ msgstr "abrt-dbus માંથી સમસ્યા માહિતીને + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus માંથી સમસ્યા યાદીને મેળવી શકાતી નથી: %s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -984,6 +1001,35 @@ msgstr "ગેરહાજર debuginfo ફાઇલ: {0}" + msgid "All debuginfo files are available" + msgstr "બધી ડિબગ જાણકારી ફાઇલો ઉપલબ્ધ છે" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1224,7 +1270,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr " લાઇસન્સ વગરનાં મોડ્યુલો: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1234,51 +1280,51 @@ msgstr "" + "\n" + "FILE માંથી oops ને કાઢો (અથવા મૂળભૂત ઇનપુટ)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "મળેલ દરેક oops માટે DIR માં નવી સમસ્યા ડિરેક્ટરીને બનાવો" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation નાં જેવી, DumpLocation એ abrt.conf માં સ્પષ્ટ થયેલ છે" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "PROBLEM માં કાઢી નાંખેલ જાણકારીને સંગ્રહો" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "સમસ્યા ડિરેક્ટરીને દુનિયામાં વાંચી શકાય એ રીતે બનાવો" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "દરેક 1 સેકંડે થ્રોટલ સમસ્યા ડિરેક્ટરી નિર્માણ" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout માટે શોધ શબ્દમાળા (ઓ) ને છાપો અને બહાર નીકળો" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "regex ને કમ્પાઇલ કરવામાં નિષ્ફળતા" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "સમસ્યાને સુધારી શકાતી નથી: એક કરતા વધારે oops મળ્યુ" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d સેકંડ માટે નિષ્ક્રિય" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1288,11 +1334,11 @@ msgstr "" + "\n" + "FILE માંથી Xorg ભંગાણને કાઢો (અથવા મૂળભૂત ઇનપુટ)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "મૂળભૂત આઉટપુટ પર મળેલ ભંગાણ માહિતીને છાપો" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "મળેલ દરેક ભંગાણ માટે DIR માં સમસ્યા ડિરેક્ટરીને બનાવો" + +@@ -1897,72 +1943,78 @@ msgstr "મળેલ oopses ને છાપો" + msgid "Delete files with found oopses" + msgstr "મળેલ oopses સાથે ફાઇલોને કાઢી નાંખો" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' એ એક કરતા વધારે સમસ્યા ડિરેક્ટરીને ઓળખે છે" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "વપરાશ: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "સમસ્યાઓની યાદી [DIRs માં]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "સમસ્યા ડિરેક્ટરી DIR ને દૂર કરો" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR માં સમસ્યા માહિતીનું વિશ્ર્લેષણ અને અહેવાલ કરો" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR વિશે જાણકારીને છાપો" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "તાજેતરનાં ભંગાણોની ગણતરીને છાપો" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "ઘણી સમસ્યાઓની પ્રક્રિયા" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "વધારે જાણકારી માટે 'abrt-cli COMMAND --help' જુઓ" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + "%sRed Hat Customer Portal માં કેસ બનાવવા માટે 'abrt-cli report %s' ચલાવો\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "માત્ર નહિં-અહેવાલ અપાયેલ સમસ્યાઓની જ યાદી આપો" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "વિગત થયેલ અહેવાલને બતાવો" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા વધારે તાજેતરની સમસ્યાઓની યાદી કરો" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા જૂની સમસ્યાઓની ફક્ત યાદી કરો" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1973,50 +2025,55 @@ msgstr "" + "કરવાનું ધ્યાન રાખો\n" + "'abrt-auto-reporting enabled' ને રુટ હકોવાળા વપરાશકર્તા તરીકે ચલાવીને\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "આનાં કરતા વધારે લખાણને સંક્ષિપ્ત બતાવવામાં આવશે" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "આવી સમસ્યા ડિરેક્ટરી '%s' નથી" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "કોઇપણ સંદેશા વગર ફક્ત સમસ્યાની ગણતરીને છાપો" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "સ્પષ્ટ થયેલ ટાઇમસ્ટેમ્પ કરતા ફક્ત વધારે તાજેતની સમસ્યાઓને છાપો" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' ને કાઢી રહ્યા છે" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "અહેવાલ થયા પછી PROBLEMDIR ને દૂર કરો (_D)" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' ને કાઢી રહ્યા છે" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "ક્રિયાઓ: remove(rm), info(i), skip(s):" +@@ -2025,21 +2082,21 @@ msgstr "ક્રિયાઓ: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "ક્રિયાઓ: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' નો અહેવાલ કરી રહ્યા છે" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "આગળની સમસ્યા માટે ENTER ને દબાવો:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since દલીલ વગર, બધી શોધાયેલ સમસ્યાઓ પર પુનરાવર્તિત થાય છે." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "ટાઇમસ્ટેમ્પ પછી ફક્ત શોધાયેલ સમસ્યાઓને પસંદ કરે છે" + +diff --git a/po/he.po b/po/he.po +index aabdbe5..29ccb95 100644 +--- a/po/he.po ++++ b/po/he.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "language/he/)\n" + "Language: he\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -56,7 +56,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -305,14 +305,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -323,90 +323,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "רשום ליומן המערכת" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -468,73 +478,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -546,68 +557,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -631,7 +642,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -641,6 +653,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -864,6 +881,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1083,69 +1129,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1701,71 +1747,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1773,49 +1825,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1824,21 +1881,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/hi.po b/po/hi.po +index c7ee4de..5c5ce1a 100644 +--- a/po/hi.po ++++ b/po/hi.po +@@ -19,7 +19,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -29,7 +29,7 @@ msgstr "" + "language/hi/)\n" + "Language: hi\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -69,7 +69,7 @@ msgstr "NetworkManager से DBus पर कनेक्ट नहीं कर + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager के द्वारा संजाल स्थिति निर्धारित नहीं कर सकता है: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' का स्वामित्व नहीं ले सकता है" +@@ -352,7 +352,7 @@ msgstr "परिचय" + msgid "Quit" + msgstr "बाहर" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -362,7 +362,7 @@ msgstr "" + "\n" + "संकुल डेटाबेस को प्रश्न करता है और संकुल और घटक नाम सहेजता है" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -373,79 +373,89 @@ msgstr "" + msgid "Problem directory" + msgstr "समस्या निर्देशिका" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "विन्यास फाइल" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [विकल्प]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "NUM को बतौर क्लायंट uid उपयोग करें" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "सिसलॉग में लॉग करेंसिस्टल" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "लाग करने के लिए अधिक प्रोग्राम नाम" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "अज्ञात त्रुटि" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' एक वैध समस्या निर्देशिका नहीं है" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "प्राधिकृत नहीं" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "संशोधन के लिए समस्या का उपयोग नहीं कर सकते है" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chowning डायरेक्टरी विफल. अधिक जानकारी के लिए सिस्टम लॉग की जाँच करें." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'% s' एक वैध तत्व का नाम नहीं है" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' का आकार पा नहीं सकता है" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "कोई समस्या स्थान नहीं छोड़ दिया है" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "तत्व '%s' को समस्या निर्देशिका '%s' से मिटा नहीं सकता है" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -454,12 +464,12 @@ msgstr "" + "नाम '%s' खो गया है, कृपया जाँचें कि क्या अन्य सेवाएँ जो नाम का स्वामित्व " + "रखती है नहीं चल रहा हो.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM सेकेंड की निष्क्रियता के बाद बाहर निकलें" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "इस प्रोग्राम को जरूर बतौर रूट चलाया जाना चाहिए." + +@@ -534,75 +544,76 @@ msgstr "सहवर्ती वर्कर की संख्या. तय + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB में अधिकतम कैश आकार. तयशुदा है " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "सत्यापन बंद करें" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Red Hat समर्थन उपयोक्ता नाम" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat समर्थन कूटशब्द, यदि नहीं दिया हुआ है तो इसके लिए कोई प्रांप्ट निर्गत " + "किया जाएगा" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL प्रमाणपत्र पथ या प्रमाणपत्र प्रकार" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "आपको --username को --password के लिए निर्दिष्ट करने की जरूरत होगी" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "आप या तो --username या --certificate का प्रयोग कर सकते हैं" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "आप या तो --username या --anonymous का प्रयोग कर सकते हैं" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "आप या तो --anonymous या --certificate का प्रयोग कर सकते हैं" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "तर्क की अवैध संख्या" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "अज्ञात विकल्प मान '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "कूटशब्द:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "कूटशब्द के बिना जारी नहीं रख सकते हैं\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP सत्यापन स्वचालित रिपोर्टिंग" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL क्लायंट सत्यापन स्वचालित रिपोर्टिंग" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "अनाम स्वचालित रिपोर्टिंग" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -621,68 +632,68 @@ msgstr "" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "निर्देशिका नहीं है: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "छोड़ रहा है: '{0}' (starts with slash)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "छोड़ रहा है: '{0}' (starts with dot)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "छोड़ रहा है: '{0}' (contains ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "छोड़ रहा है: '{0}' (contains space)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "छोड़ रहा है: '{0}' (contains tab)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}' में निर्देशिका बदल नहीं सकता है" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "अज्ञात फाइल प्रकार: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' में कार्यशील निर्देशिका नहीं बना सकता है" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' को '{1}' में खिसका नहीं सकता है" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' को '{1}' में नहीं नक़ल ले सकता है" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' पर सत्यापन त्रुटि" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' को खोला जा रहा है" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' निर्देशिका नहीं बना सकता है" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' खोल नहीं सकता है" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' को सफलतापूर्वक प्रक्रिया किया गया" + +@@ -706,7 +717,8 @@ msgstr "chown '%s' नहीं कर सकता है: %s" + msgid "Deleting problem directory failed: %s" + msgstr "समस्या निर्देशिका को मिटाना विफल रहा: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus से समस्या आँकड़ा पा नहीं सकता है: %s" +@@ -716,6 +728,11 @@ msgstr "abrt-dbus से समस्या आँकड़ा पा नही + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus से समस्या सूची पा नहीं सकता है: %s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -986,6 +1003,35 @@ msgstr "अनुपस्थित डिबगइंफो फ़ाइल: {0 + msgid "All debuginfo files are available" + msgstr "सभी डिबगइंफो फ़ाइलें उपलब्ध हैं" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1226,7 +1272,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr " टेंटेड मॉड्यूल: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1236,51 +1282,51 @@ msgstr "" + "\n" + "Extract oops from FILE (or standard input)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "DIR में हर वूप्स क्षण के लिए नयी समस्या निर्देशिका बनाएँ" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation की तरह, DumpLocation को abrt.conf में निर्दिष्ट है" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "समस्या में निकाले सूचना को सहेजा" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "समस्या निर्देशिका को सभी के लिए लिखने योग्य बनाएँ" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "1 प्रति सेकेंड से थ्रोटल समस्या निर्देशिका निर्माण" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout में खोज स्ट्रिंग छापें और बाहर निकलें" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "रिजेक्स कंपाइल करने में विफल" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "समस्या नहीं अद्यतन कर सका: एकाधिक वूप्स मिला" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d सेकेंड से लिए सुप्त" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1290,11 +1336,11 @@ msgstr "" + "\n" + "फ़ाइल से Xorg क्रैश निकालें (या मानक इनपुट)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "मानक आउटपुट पर छपाई में क्रैश आँकड़ा मिला" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "DIR में हर क्रैश के लिए नयी समस्या निर्देशिका बनाएँ" + +@@ -1891,71 +1937,77 @@ msgstr "छपाई में वूप्स मिले" + msgid "Delete files with found oopses" + msgstr "मिले वूप्स से फ़ाइल मिटाएँ" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ने एकाधिक समस्या निर्देशिका की पहचान की" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "उपयोग: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "[in DIRs] में समस्या की सूची दें" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "समस्या निर्देशिका DIR को हटाएँ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR में समस्या आँकड़े को विश्लेषित और रिपोर्ट करें" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR के बारे में प्रिंट सूचना" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "हालिया क्रैश की गिनती छापें" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "एकाधिक समस्या की प्रक्रिया करें" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "'abrt-cli COMMAND --help' को अधिक सूचना के लिए देखें" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "Red Hat ग्राहक पोर्टल के लिए 'abrt-cli रिपोर्ट %s' %sचलाएँ\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "बिना रिपोर्ट की गई समस्या को सूचीबद्ध करें" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "विस्तृत विवरण देखें" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "निर्दिष्ट टाइमस्टैंप के बनिस्बत केवल समस्याओं की सूची दें" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "निर्दिष्ट समयस्टैंप से पुराने समस्या की केवल सूची दें" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1966,51 +2018,56 @@ msgstr "" + "'abrt-auto-reporting enabled' को बतौर उपयोक्ता रूट अधिकार चलाकर निर्गत " + "करके\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "इससे बड़ा पाठ संक्षिप्त कर दिया जाएगा" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "कोई ऐसी समस्या निर्देशिका '%s' नहीं" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& स्थिति [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "बिना किसी संदेश के केवल समस्या गिनती छापें" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "निर्दिष्ट टाइमस्टैंप के बनिस्बत हालिय समस्याओं को केवल छापें" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' मिटा रहा है" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "रिपोर्टिंग के बाद PROBLEM_DIR हटाएँ" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' मिटा रहा है" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "क्रिया: remove(rm), info(i), skip(s):" +@@ -2019,21 +2076,21 @@ msgstr "क्रिया: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "क्रिया: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' की रिपोर्टिंग" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "ENTER को अगली समस्या के लिए दबाएँ:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "बिना --since argumen के, सभी पता किए समस्या पर बार-बार आता है." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "टाइमस्टैंप के बाद पता चली समस्या को केवल दिखाता है" + +diff --git a/po/hr.po b/po/hr.po +index 50a3e0d..64c8b3e 100644 +--- a/po/hr.po ++++ b/po/hr.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "Language: hr\n" + "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" + "4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -302,14 +302,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -320,90 +320,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -465,73 +475,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -543,68 +554,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -628,7 +639,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -638,6 +650,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -861,6 +878,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1080,69 +1126,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1691,71 +1737,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1763,49 +1815,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1814,21 +1871,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/hu.po b/po/hu.po +index 22f7efa..afd9667 100644 +--- a/po/hu.po ++++ b/po/hu.po +@@ -8,21 +8,23 @@ + # Jiří Moskovčák , 2011 + # Máté Gelei , 2011 + # Peter Bojtos , 2013 ++# Porcsin László , 2015. #zanata ++# Szűcs Kornél Géza , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-12-12 08:30-0500\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-07-14 09:43-0400\n" ++"Last-Translator: Szűcs Kornél Géza \n" + "Language-Team: Hungarian (http://www.transifex.com/projects/p/fedora-abrt/" + "language/hu/)\n" + "Language: hu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -64,7 +66,7 @@ msgstr "DBus szolgáltatáson keresztül elérhetetlen a NetworkManager: %s" + 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:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' tulajdona nem átvehető" +@@ -359,7 +361,7 @@ msgstr "Rólunk" + msgid "Quit" + msgstr "Kilépés" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -369,7 +371,7 @@ msgstr "" + "\n" + "Lekérdezi a csomagadatbázist, és menti a csomagot valamint a komponens nevét" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -380,80 +382,90 @@ msgstr "" + msgid "Problem directory" + msgstr "Probléma könyvtár" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Konfigurációs fájl" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [opciók]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + 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:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Jelentés a rendszernaplóba" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Programnevek hozzáadása a log-hoz" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Ismeretlen hiba" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' nem egy érvényes hibamappa" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "'%s' elemek nem módosíthatóak" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Nincs engedélyezve" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Módosításhoz a probléma nem elérhető" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chown parancs végrehajtása sikertelen a mappán. Ellenőrizze a rendszer " + "logfájljait a további részletekért." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' nem érvényes elem név" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' mérete nem megállapítható" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "Nem maradt hibagyűjtő terület" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "A probléma mappából '%s' nem törölhető '%s'" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -462,12 +474,12 @@ msgstr "" + "A '%s' név elveszett, kérem elllenőrizze, hogy más futó szolgáltatás nem épp " + "ezzel a névvel aktív-e vagy sem.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Kilépés NUM másodperc inaktivitás után" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Ennek a programnak root jogokkal kell futnia." + +@@ -545,75 +557,76 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "Maximális gyorstár mérete Mbyte-ban. Alapértelmezésben " + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "Érvénytelen számú paraméter" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Ismeretlen opcionális érték: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -625,68 +638,77 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++# translation auto-copied from project abrt, version master, document abrt, author Szűcs Kornél Géza ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Nem egy könyvtár: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++# translation auto-copied from project abrt, version master, document abrt, author Szűcs Kornél Géza ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Átugrás: '{0}' (perjellel kezdődik)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++# translation auto-copied from project abrt, version master, document abrt, author Szűcs Kornél Géza ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Átugrás: '{0}' (ponttal kezdődik)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++# translation auto-copied from project abrt, version master, document abrt, author Szűcs Kornél Géza ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Átugrás: '{0}' (szóközt tartalmaz)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++# translation auto-copied from project abrt, version master, document abrt, author Szűcs Kornél Géza ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Átugrás: '{0}' (tabulátort tartalmaz)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++# translation auto-copied from project abrt, version master, document abrt, author Szűcs Kornél Géza ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Ismeretlen fájltípus: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++# translation auto-copied from project abrt, version master, document abrt, author Szűcs Kornél Géza ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "Kicsomagolás '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++# translation auto-copied from project abrt, version master, document abrt, author Szűcs Kornél Géza ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "'{0}' könyvtár létrehozása sikertelen" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++# translation auto-copied from project abrt, version master, document abrt, author Szűcs Kornél Géza ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "Kicsomagolás sikertelen '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -710,7 +732,8 @@ msgstr "Sikertelen chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Hibagyüjtő mappa törlése sikertelen: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Probléma adatok nem elérhetőek az abrt-dbus szolgáltatásból: %s" +@@ -720,6 +743,11 @@ 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/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -998,6 +1026,35 @@ msgstr "Hiányzó debuginfo fájl: {0}" + msgid "All debuginfo files are available" + msgstr "MInden debuginfo fájl elérhető" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1242,7 +1299,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "Tainted állapotú modulok: %s" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1252,54 +1309,54 @@ msgstr "" + "\n" + "Bontsa ki az oppsot okozó fájlt a (standard bemenetre)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + 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:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + 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:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + 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:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + 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:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + 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:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + 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:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Kivárás %d másodpercig" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1309,11 +1366,11 @@ msgstr "" + "\n" + "Bontsa ki az Xorg összeomlást a FILE-ból (vagy szabványos bemenetről)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Nyomtassa ki az összeomlási adatokat a szabványos kimenetre" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Készítsen mindig új mappát DIR mappában minden egyes ütközéshez amit talál" +@@ -1915,79 +1972,85 @@ msgstr "A nyomtatás során talált oops " + msgid "Delete files with found oopses" + msgstr "Fájlok törlése közben oops történt" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + "'%s' egyidejűleg egyszerre több problémagyüjtő könyvtára is azonosított" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Használat: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Listázza a még be nem jelentett hibákat [DIR könyvtárakban]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Hibagyűjtő DIR könyvtár eltávolítása" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Elemzi és bejelenti a hibaadatokat a DIR könyvtárban" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Információk nyomtatása DIR könyvtárról" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Írja ki a legutóbbi összeomlások számát" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + 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:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [opciók] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "Csak a nem jelentett problémákat listázza" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Részletes jelentés megjelenítése" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + 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:192 ++#: ../src/cli/list.c:186 + 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" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1998,55 +2061,60 @@ msgstr "" + "engedélyezze root jogú felhasználóként a 'abrt-auto-reporting enabled' " + "paranccsal.\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [opciók] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + 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:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Nincs ilyen problémát tartalmazó könyvtár '%s'" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + "Jelenítse meg csak azoknak az eseteknek a számát ahol minden üzenet nélkül " + "történt" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Csak azoknak az eseteknek a számát jelenítse meg, ami a megjelölt időbélyeg " + "óta történt" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "Az ABRT több hibát is talált %u (s) . További információhoz futtasa az abrt-" + "cli list %s parancsot\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2055,21 +2123,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/ia.po b/po/ia.po +index c9e1fd4..63d78d9 100644 +--- a/po/ia.po ++++ b/po/ia.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/ia/)\n" + "Language: ia\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -56,7 +56,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -310,14 +310,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -329,92 +329,102 @@ msgid "Problem directory" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "File de configuration" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Registrar in syslog" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Adder nomines de programma in registro" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -478,73 +488,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -556,68 +567,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -641,7 +652,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -651,6 +663,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -879,6 +896,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1098,7 +1144,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1106,65 +1152,65 @@ msgid "" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Print found oopses on standard output" + msgstr "Imprimer le \"oops\" trovate sur output 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Identic a \"-d locodelinstantaneo\"; le loco del instantaneo es specificate " + "in abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1808,72 +1854,78 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Monstrar un reporto detaliate" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1881,49 +1933,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1932,21 +1989,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/id.po b/po/id.po +index 87b35bc..2bf89fc 100644 +--- a/po/id.po ++++ b/po/id.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -22,7 +22,7 @@ msgstr "" + "language/id/)\n" + "Language: id\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -58,7 +58,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -308,14 +308,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -326,90 +326,100 @@ msgstr "" + msgid "Problem directory" + msgstr "Direktori masalah" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Berkas konfigurasi" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Catat ke syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Menambahkan nama program untuk log" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -471,73 +481,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -549,68 +560,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -634,7 +645,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -644,6 +656,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -867,6 +884,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1086,69 +1132,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1701,71 +1747,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1773,49 +1825,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1824,21 +1881,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/ilo.po b/po/ilo.po +index 4126acd..964288f 100644 +--- a/po/ilo.po ++++ b/po/ilo.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/ilo/)\n" + "Language: ilo\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/is.po b/po/is.po +index c0ad8f3..292e503 100644 +--- a/po/is.po ++++ b/po/is.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/is/)\n" + "Language: is\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/it.po b/po/it.po +index 986806c..2ad531e 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -19,17 +19,17 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-06 06:14-0500\n" ++"PO-Revision-Date: 2015-07-16 10:44-0400\n" + "Last-Translator: Francesco Valente \n" + "Language-Team: Italian (http://www.transifex.com/projects/p/fedora-abrt/" + "language/it/)\n" + "Language: it\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -70,7 +70,7 @@ msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + "Impossibile determinare lo stato della rete tramite NetworkManager: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Impossibile ottenere la proprietà di '%s'" +@@ -358,7 +358,7 @@ msgstr "Informazioni" + msgid "Quit" + msgstr "Esci" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -369,7 +369,7 @@ msgstr "" + "Interroga il database del pacchetto e salva il nome del componente e quello " + "del pacchetto" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -380,81 +380,91 @@ msgstr "" + msgid "Problem directory" + msgstr "Directory del problema" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "File di configurazione" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [opzioni]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + 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:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Log su syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Aggiungi i nomi dei programmi sul log" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Errore sconosciuto" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' non è una directory di problema valida" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "Impossibile modificare l'elemento '%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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Non Autorizzato" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Impossibile accedere al problema per la modifica" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Modifica proprietario della directory fallita. Controllare i log del sistema " + "per maggiori informazioni." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "Impossibile accedere al problema per la lettura" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' non è un nome di elemento valido" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Impossibile ottenere la dimensione di '%s'" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "Nessuno spazio del problema rimasto" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "Impossibile cancellare l'elemento '%s' dalla directory del problema '%s'" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "Impossibile accedere al problema" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -463,12 +473,12 @@ msgstr "" + "Il nome '%s' è stato perso, verificare che altri servizi che utilizzano " + "questo nome non siano in esecuzione.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Esci dopo NUM secondi di inattività" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Questo programma deve essere eseguito come root." + +@@ -546,75 +556,76 @@ msgstr "Numero di thread di lavoro simultanei. L'impostazione predfinita è" + msgid "Maximal cache size in MiB. Default is " + msgstr "Dimensione cache massima in MiB. L'impostazione predefinita è" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr " Disabilita l'autenticazione" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Nome utente per il Red Hat Support" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Password per il Red Hat Support, se non specificata verrà richiesto di " + "inserirne una" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Tipo di certificato o percorsi per il certificato SSL uReport" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "Specificare --username per --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "Usare --username o --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "Usare --username o --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "Usare --anonymous o --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "Numero non valido di argomenti" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valore opzione sconosciuto: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "Password:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "Impossibile continuare senza password\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "Auto reporting autenticato con HTTP" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "Auto reporting autenticato con client SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "auto reporting anonimo" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -635,68 +646,68 @@ msgstr "" + "caricati\n" + " FILENAME - Nome del file dell'archivio caricato\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Non è una directory: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Saltato: '{0}' (inizia con barra)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Saltato: '{0}' (inizia con un punto)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Saltato: '{0}' (contiene ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Saltato: '{0}' (presenta uno spazio)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Saltato: '{0}' (presenta un tab)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Impossibile modificare la directory su '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Tipo di file sconosciuto: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Impossibile creare una directory operativa in '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Impossibile spostare '{0}' su '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Impossibile copiare '{0}' su '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Errore di verifica su '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Estrazione '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Impossibile creare la directory '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Impossibile estrarre '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' processato con successo" + +@@ -720,7 +731,8 @@ msgstr "Impossibile ottenere la proprietà '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Cancellazione directory del problema non riuscita: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Impossibile ottenere i dati del problema da abrt-dbus: %s" +@@ -730,6 +742,13 @@ 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/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++"Impossibile eseguire il test per controllare l'esistenza dell'elemento su " ++"abrt-dbus: %s" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -1007,6 +1026,40 @@ msgstr "File debuginfo mancante: {0}" + msgid "All debuginfo files are available" + msgstr "Tutti i file contenenti le informazioni di debug sono disponibili" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "Non interattivo, rispondere 'Si' a tutte le domande" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "- significa STDIN, default: build_ids" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "Scarica solo i file specificati" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "Pattern da usare durante la ricerca dei repo, default: *debug*" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "Opzione ignorata" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1253,7 +1306,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "Moduli corrotti: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1263,51 +1316,51 @@ msgstr "" + "⏎\n" + "Estrae errori da FILE (o dall'input standard)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + 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:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "Salva l'informazione estratta in PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Rendi la directory del problema leggibile a tutti" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Aumenta la creazione della directory del problema a 1 per secondo" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + 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:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "Impossibile compilare regex" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "Impossibile aggiornare il problema: travati più di un oops" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "In sospensione per %d secondi" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1317,11 +1370,11 @@ msgstr "" + "\n" + "Estrae il crash di Xorg da FILE (o da standard input)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Stampa i dati trovati relativi al crash sullo standard output" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "Crea una nuova directory del problema in DIR per ogni crash rilevato" + +@@ -1924,44 +1977,52 @@ msgstr "Stampa gli errori trovati" + msgid "Delete files with found oopses" + msgstr "Cancella file con errori trovati" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identifica più di una directory del problema" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Utilizzo: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "Utilizzo: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Elenca i problemi [in DIR]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Rimuovi la directory del problema DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analizza e riporta i dati del problema in DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Stampa le informazioni sulla DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Stampa il contatore dei crash recenti" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Elabora problemi multipli" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++"Riporto privato abilitato, usare 'abrt-cli -a COMMAND' per ottenere i " ++"problemi rilevati." ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Consultare 'abrt-cli COMMAND --help' per maggiori informazioni" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -1969,28 +2030,28 @@ msgstr "" + "%sEsegui 'abrt-cli report %s' per creare un caso nel Portale clienti di Red " + "Hat\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [opzioni] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [options]" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "Elenca solo problemi non riportati" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Mostra una notifica dettagliata" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "Elenca solo i problemi più recenti della data specificata" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "Elenca solo i problemi più vecchi della data specificata" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2000,51 +2061,56 @@ 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:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [opzioni] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "I testi con dimensioni maggiori di questo verranno mostrati ridotti" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Directory '%s' del problema non trovata" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& status" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Stampa solo il contatore del problema senza nessun messaggio" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Stampa solo i problemi più recenti di un timestamp specificato" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT ha trovato %u problema(i). Per maggiori informazioni usare: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "Impossibile trovare il problema '%s'" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Rimozione '%s'" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Rimuovi PROBLEM_DIR dopo la notifica" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Rimozione '%s'" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Azioni: remove(rm), info(i), skip(s):" +@@ -2053,21 +2119,21 @@ msgstr "Azioni: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Azioni: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Notifica '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Per il problema successivo premere ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Senza l'argomento --since, ripetere su tutti i problemi rilevati." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Seleziona solo i problemi rilevati dopo il timestamp" + +diff --git a/po/ja.po b/po/ja.po +index da482e4..25c97de 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -17,17 +17,17 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-08 11:11-0500\n" ++"PO-Revision-Date: 2015-07-16 10:25-0400\n" + "Last-Translator: Noriko Mizumoto \n" + "Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ja/)\n" + "Language: ja\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -63,7 +63,7 @@ msgstr "DBus で NetworkManager に接続できません: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager でネットワークの状態を判断できません: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' の所有権を取得できません" +@@ -333,7 +333,7 @@ msgstr "ABRT について" + msgid "Quit" + msgstr "終了" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -343,7 +343,7 @@ msgstr "" + "\n" + "パッケージのデータベースに問い合わせを行い、 パッケージとコンポーネント名を保存します" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -354,90 +354,100 @@ msgstr "" + msgid "Problem directory" + msgstr "問題ディレクトリ" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "設定ファイル" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [オプション]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "NUM をクライアントの uid として使用する" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "syslog にログする" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "ログにプログラム名を追加する" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "不明なエラーです" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "「%s」は有効な問題ディレクトリではありません" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "権限がありません" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "問題にアクセスして修正できません" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "ディレクトリの所有者変更に失敗しました。詳細はシステムログを確認してください。" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "問題にアクセスして読み込むことができません" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' は有効なエレメント名ではありません" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' の容量を取得できません" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "残っている問題領域はありません" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "「%s」エレメントを問題ディレクトリの「%s」から削除できません" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "問題にアクセスできません" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "'%s' の名前を紛失しました。その名前を持つ他のサービスが実行していないかチェックして下さい。\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "休止状態が NUM 秒以上続いた場合は終了します" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "このプログラムは root で実行しなければなりません" + +@@ -509,73 +519,74 @@ msgstr "同時実行ワーカー数。規定値は次のとおりです。" + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB 単位の最大キャッシュ容量。規定値は次のとおりです。" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "認証をオフにする" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Red Hat サポートユーザー名" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support パスワード、入力しないとあとで入力が求められます" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL 証明書パスまたは証明書タイプ" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "--password には --username も指定してください" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "--username または --certificate のいずれかを使用します" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "--username または --anonymous のいずれかを使用します" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "--anonymous または --certificate のいずれかを使用します" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "引数の数が無効な数です" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "不明なオプション値です: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "パスワード:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "パスワードを入力しないと先に進めません\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP 認証の自動報告" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL クライアント認証の自動報告" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "anonymous 自動報告" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -594,68 +605,68 @@ msgstr "" + " UPLOAD_DIR - アップロード済みアーカイブが保存されるディレクトリ\n" + " FILENAME - アップロード済みアーカイブファイル名\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ディレクトリではありません: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "スキップ中: '{0}' (スラッシュで開始)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "スキップ中: '{0}' (ドットで開始)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "スキップ中: '{0}' (.. を含む)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "スキップ中: '{0}' (空白を含む)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "スキップ中: '{0}' (タブを含む)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}' にディレクトリを変更できません" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "不明なファイルタイプ: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' に作業ディレクトリを作成できません" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' を '{1}' に移動できません" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' を '{1}' にコピーできません" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' で確認エラー" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' を解凍中" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ディレクトリを作成できません" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' を解凍できません" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' が正常に処理されました" + +@@ -679,7 +690,8 @@ msgstr "'%s の chown ができません: %s" + msgid "Deleting problem directory failed: %s" + msgstr "問題ディレクトリの削除に失敗しました: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus から問題のデータを取り込めません: %s" +@@ -687,7 +699,12 @@ msgstr "abrt-dbus から問題のデータを取り込めません: %s" + #: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "abrt-dbus から問題の一覧を取りこめません: %s" ++msgstr "abrt-dbus で問題の一覧を取りこめません: %s" ++ ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "abrt-dbus でエレメントが存在しているかどうかの検証ができません : %s" + + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -953,6 +970,40 @@ msgstr "debuginfo ファイルがありません: {0}" + msgid "All debuginfo files are available" + msgstr "すべての debuginfo ファイルが利用可能です" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"BUILD_IDS_FILE に記載されているすべての build-id の debuginfo パッケージを\n" ++"ABRT システムキャッシュにインストールします。" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "非対話式、すべての質問に 'Yes' と答える" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "- STDIN の意味、デフォルト: build_ids" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "指定したファイルのみダウンロードする" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "リポジトリ検索に使用するパターン、デフォルト: *debug*" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "無視オプション" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1184,7 +1235,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "破損モジュール: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1193,51 +1244,51 @@ msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "FILE (または標準入力) から oops を抽出します" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "検出される oops ごと DIR 内に新規の問題ディレクトリを作成します" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation と同じです、 DumpLocation は abrt.conf で指定します" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "抽出した情報を PROBLEM に保存します" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "問題ディレクトリを誰でも見れるようにします" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "問題のディレクトリの作成を毎秒 1 個に制限" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "検索文字列を標準出力に表示して終了" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "regex のコンパイルに失敗しました" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "問題を更新できません: 複数のウップスが見つかりました" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d 秒スリープします" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1246,11 +1297,11 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "FILE (または標準入力) から Xorg クラッシュを抽出します" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "発見したクラッシュデータを標準出力に表示する" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "検出されるクラッシュごと DIR 内に問題ディレクトリを作成します" + +@@ -1822,71 +1873,77 @@ msgstr "検出した oops を表示" + msgid "Delete files with found oopses" + msgstr "検出した oops を含んでいるファイルを削除" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' が複数の問題ディレクトリを確認しました" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "使い方: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "使い方: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "問題を一覧表示する [in DIRs]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "DIR 問題ディレクトリを削除する" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR 内の問題データを分析、 報告する" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR に関する情報を出力する" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "最新のクラッシュ回数を表示する" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "複数の問題を処理する" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "プライベートレポートが有効になっています、'abrt-cli -a COMMAND' を使って検出された問題を確認してください。" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "詳細については abrt-cli COMMAND --help を参照してください" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "Red Hat カスタマーポータルにケースを作成するため %s'abrt-cli report を実行する%s'\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [オプション] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [options]" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "報告されていない問題のみを表示する" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "詳細報告を表示する" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "指定したタイムスタンプより新しい問題のみを表示します" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "指定したタイムスタンプよりも古い問題のみを表示します" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1896,49 +1953,54 @@ msgstr "" + "自動報告機能は無効になっています。root の特権を持つユーザーで\n" + "'abrt-auto-reporting enabled' を発行し、この機能を有効にすることを検討してみてください\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [オプション] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "これより大きなテキストは要約して表示されます" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "そのような問題ディレクトリ '%s' はありません" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& status" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "問題の件数のみを表示し、メッセージは表示しません" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "指定されたタイムスタンプよりも新しい問題のみを表示する" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "問題 '%s' が見つかりません" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' を削除中" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "レポート後に PROBLEM_DIR を削除します" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' を削除中" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "アクション: 削除(rm), 情報(i), スキップ(s):" +@@ -1947,21 +2009,21 @@ msgstr "アクション: 削除(rm), 情報(i), スキップ(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "アクション: 削除(rm), レポート(e), 情報(i), スキップ(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' をレポート中" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "次の問題に移るには、ENTER を押します:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since 引数がないと、すべての検出済み問題を繰り返します。" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "タイムスタンプ後に検出された問題のみを選択します" + +diff --git a/po/ka.po b/po/ka.po +index c650c41..6f41e5f 100644 +--- a/po/ka.po ++++ b/po/ka.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/ka/)\n" + "Language: ka\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -303,14 +303,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -321,90 +321,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "კონფიგურაციის ფაილი" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "ჟურნალირება syslog-ში" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -466,73 +476,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -544,68 +555,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -629,7 +640,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -639,6 +651,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -862,6 +879,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1081,69 +1127,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1692,71 +1738,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "დეტალური ანგარიშის ჩვენება" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1764,49 +1816,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1815,21 +1872,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/kk.po b/po/kk.po +index 67f118d..cde55ce 100644 +--- a/po/kk.po ++++ b/po/kk.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/kk/)\n" + "Language: kk\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/km.po b/po/km.po +index f655e17..ae7ad9f 100644 +--- a/po/km.po ++++ b/po/km.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/km/)\n" + "Language: km\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/kn.po b/po/kn.po +index 52219bb..edbd6a7 100644 +--- a/po/kn.po ++++ b/po/kn.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -23,7 +23,7 @@ msgstr "" + "language/kn/)\n" + "Language: kn\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -65,7 +65,7 @@ msgstr "DBus ಮುಖಾಂತರ NetworkManager ಗೆ ಸಂಪರ್ಕಸ + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager ಮುಖಾಂತರ ಜಾಲಬಂಧ ಸ್ಥಿತಿಯನ್ನು ನಿರ್ಧರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ನ ಮಾಲಿಕತ್ವವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" +@@ -351,7 +351,7 @@ msgstr "ಕುರಿತು" + msgid "Quit" + msgstr "ನಿರ್ಗಮಿಸು" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -361,7 +361,7 @@ msgstr "" + "\n" + "Query package database and save package and component name" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -372,80 +372,90 @@ msgstr "" + msgid "Problem directory" + msgstr "ತೊಂದರೆಯ ಕೋಶ" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "ಸಂರಚನಾ ಕಡತ" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [ಆಯ್ಕೆಗಳು]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "NUM ಅನ್ನು ಕ್ಲೈಂಟ್ uid ಆಗಿ ಬಳಸು" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "syslog ಗೆ ದಾಖಲಿಸು" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "ಪ್ರೊಗ್ರಾಮ್‌ನ ಹೆಸರುಗಳನ್ನು ದಾಖಲೆಗೆ ಸೇರಿಸು" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "ಗೊತ್ತಿರದ ದೋಷ" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' ಎನ್ನುವುದು ಒಂದು ಮಾನ್ಯವಾದ ತೊಂದರೆಯ ಕೋಶವಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ಅಧಿಕಾರವಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "ಮಾರ್ಪಡಿಸುವ ಸಲುವಾಗಿ ತೊಂದರೆಯನ್ನು ತಲುಪಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "ಕೋಶವನ್ನು chown ಮಾಡುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ. ಹೆಚ್ಚಿನ ವಿವರಗಳಿಗಾಗಿ ವ್ಯವಸ್ಥೆಯ " + "ದಾಖಲೆಗಳನ್ನು ಪರಿಶೀಲಿಸಿ." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' ಎನ್ವುವುದು ಒಂದು ಮಾನ್ಯವಾದ ಘಟಕದ ಹೆಸರಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' ಗಾತ್ರವನ್ನು ಪಡೆಯಲಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "ಯಾವುದೆ ತೊಂದರೆ ಸ್ಥಳವು ಉಳಿದಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "'%s' ಘಟಕವನ್ನು '%s' ತೊಂದರೆಯ ಕೋಶದಿಂದ ಅಳಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -454,12 +464,12 @@ msgstr "" + "'%s' ಎಂಬ ಹೆಸರು ಕಾಣೆಯಾಗಿದೆ, ಇದೇ ಹೆಸರಿನ ಇನ್ನೊಂದು ಸೇವೆಯು ಚಾಲನೆಯಲ್ಲಿಲ್ಲವೆ ಎಂದು " + "ಪರೀಕ್ಷಿಸಿ.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM ಸೆಕೆಂಡುಗಳ ನಿಷ್ಕ್ರಿಯತೆಯ ನಂತರ ನಿರ್ಗಮಿಸು" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ಈ ಪ್ರೊಗ್ರಾಮ್ ಅನ್ನು ನಿರ್ವಾಹಕರಾಗಿ ಚಲಾಯಿಸಬೇಕು." + +@@ -537,75 +547,76 @@ msgstr "ಏಕಕಾಲದ ಕೆಲಸಗಾರರ ಸಂಖ್ಯೆ. ಪೂ + msgid "Maximal cache size in MiB. Default is " + msgstr "ಕ್ಯಾಶೆಯ ಗರಿಷ್ಟ ಗಾತ್ರ, MiB ಯಲ್ಲಿ. ಪೂರ್ವನಿಯೋಜಿತವು ಹೀಗಿದೆ" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "ದೃಢೀಕರಣವನ್ನು ಆಫ್ ಮಾಡುತ್ತದೆ" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Red Hat ಸಪೋರ್ಟ್‌ನ ಬಳಕೆದಾರ ಹೆಸರು" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat ಸಪೋರ್ಟ್‌ಗಾಗಿನ ಗುಪ್ತಪದ, ನೀಡಲಾಗಿರದೆ ಇದ್ದರೆ, ಒಂದು ಪ್ರಾಂಪ್ಟ್ ಅನ್ನು " + "ನೀಡಲಾಗುತ್ತದೆ" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL ಪ್ರಮಾಣಪತ್ರದ ಮಾರ್ಗಗಳು ಅಥವ ಪ್ರಮಾಣಪತ್ರದ ಬಗೆ" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "--password ಕ್ಕಾಗಿ ನೀವು --username ಅನ್ನೂ ಸಹ ಒದಗಿಸಬೇಕು" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "ನೀವು --username ಮತ್ತು --certificate ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "ನೀವು --username ಮತ್ತು --anonymous ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "ನೀವು --anonymous ಮತ್ತು --certificate ನಲ್ಲಿ ಒಂದನ್ನು ಬಳಸಬಹುದು" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "ಅಮಾನ್ಯವಾದ ಆರ್ಗ್ಯುಮೆಂಟ್‌ಗಳ ಸಂಖ್ಯೆ" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ಗೊತ್ತಿರದ ಆಯ್ಕೆ ಮೌಲ್ಯ: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "ಗುಪ್ತಪದ:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "ಗುಪ್ತಪದವಿಲ್ಲದೆ ಮುಂದುವರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP ಯು ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ದೃಢೀಕರಿಸಿದೆ" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL ಕ್ಲೈಂಟ್‌ ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ದೃಢೀಕರಿಸಿದೆ" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "ಅನಾಮಧೇಯವಾಗಿ ಸ್ವಯಂ ವರದಿ ಮಾಡುವಿಕೆ" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -625,68 +636,68 @@ msgstr "" + " UPLOAD_DIR - ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ಗಳನ್ನು ಇರಿಸಲಾಗುವ ಕೋಶ\n" + " FILENAME - ಅಪ್‌ಲೋಡ್ ಆರ್ಕೈವ್‌ ಕಡತದ ಹೆಸರು\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ಒಂದು ಕೋಶವಲ್ಲ: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಅಡ್ಡಗೆರೆಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಚುಕ್ಕಿಯಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (.. ಅನ್ನು ಹೊಂದಿದೆ)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಖಾಲಿಸ್ಥಳವನ್ನು ಹೊಂದಿದೆ)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "ಕಡೆಗಣಿಸಲಾಗುತ್ತಿದೆ: '{0}' (ಟ್ಯಾಬ್ ಅನ್ನು ಹೊಂದಿದೆ)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ಕೋಶವನ್ನು '{0}' ಗೆ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "ಗೊತ್ತಿರದ ಕಡತದ ಬಗೆ: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' ನಲ್ಲಿ ಕೆಲಸ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ಅನ್ನು '{1}' ಗೆ ಸ್ಥಳಾಂತರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' ಅನ್ನು '{1}' ಗೆ ಪ್ರತಿಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' ನಲ್ಲಿ ಪರಿಶೀಲನಾ ದೋಷ" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' ಅನ್ನು ಅನ್‌ಪ್ಯಾಕ್‌ ಮಾಡಲಾಗುತ್ತಿದೆ" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ನಲ್ಲಿ ಕೋಶವನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' ಅನ್ನು ಹೊರತೆಗೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' ಅನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸಂಸ್ಕರಿಸಲಾಗಿದೆ" + +@@ -710,7 +721,8 @@ msgstr "'%s' ಅನ್ನು chown ಮಾಡಲಾಗಿಲ್ಲ: %s" + msgid "Deleting problem directory failed: %s" + msgstr "ತೊಂದರೆಯ ಕೋಶವನ್ನು ಅಳಿಸುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ದತ್ತಾಂಶವನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" +@@ -720,6 +732,11 @@ msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ದತ್ತಾಂಶವನ್ + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ಇಂದ ತೊಂದರೆಯ ಪಟ್ಟಿಯನ್ನು ಪಡೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: %s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -997,6 +1014,35 @@ msgstr "debuginfo ಕಡತವು ಕಾಣಿಸುತ್ತಿಲ್ಲ: {0}" + msgid "All debuginfo files are available" + msgstr "debuginfo ಕಡತಗಳಿಗಾಗಿ ಪ್ಯಾಕೇಜುಗಳನ್ನು ಪತ್ತೆ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1242,7 +1288,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr " ಪರವಾನಗಿ ಸರಿ ಇರದ ಮಾಡ್ಯೂಲ್‌ಗಳು: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1252,53 +1298,53 @@ msgstr "" + "\n" + "FILE ನಿಂದ oops ಅನ್ನು ಹೊರತೆಗೆ (ಅಥವ ಶಿಷ್ಟವಾದ ಇನ್‌ಪುಟ್)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ DIR ಯಲ್ಲಿ ಹೊಸ ತೊಂದರೆ ಕೋಶವನ್ನು ರಚಿಸು" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation ನಂತೆಯೆ, abrt.conf ನಲ್ಲಿ DumpLocation ಅನ್ನು ಸೂಚಿಸಲಾಗಿರುತ್ತದೆ" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "ಹೊರತೆಗೆಯಲಾದ ಮಾಹಿತಿಯನ್ನು PROBLEM ನಲ್ಲಿ ಉಳಿಸು" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "ದೋಷದ ಕೋಶವನ್ನು ಜಗತ್ತು ಓದುವ ರೀತಿಯಲ್ಲಿ ಮಾಡಿ" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "ತೊಂದರೆ ಕೋಶದ ರಚನೆಯು ಪ್ರತಿ ಸೆಕೆಂಡಿಗೆ 1 ಇರುವಂತೆ ಹತೋಟಿಯಲ್ಲಿಡು" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "ಹುಡುಕು ವಾಕ್ಯಾಂಶವನ್ನು(ಗಳನ್ನು) stdout ಗೆ ಮುದ್ರಿಸು ಮತ್ತು ನಿರ್ಗಮಿಸು" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "regex ಅನ್ನು ಕಂಪೈಲ್ ಮಾಡಲು ವಿಫಲಗೊಂಡಿದೆ" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + "ತೊಂದರೆಯನ್ನು ಅಪ್‌ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ; ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ oops ಕಂಡುಬಂದಿದೆ" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d ಸೆಕೆಂಡುಗಳವರೆಗೆ ಜಡವಾಗಿರುತ್ತದೆ" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1308,11 +1354,11 @@ msgstr "" + "\n" + "Xorg ಕುಸಿತವನ್ನು FILE (ಅಥವ ಶಿಷ್ಟವಾದ ಇನ್‌ಪುಟ್‌) ಇಂದ ಹೊರತೆಗೆ" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "ಕಂಡು ಬಂದ ಕುಸಿತದ ದತ್ತಾಂಶವನ್ನು ಶಿಷ್ಟವಾದ ಔಟ್‌ಪುಟ್‌ಗೆ ಮುದ್ರಿಸು" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "ಕಂಡುಬಂದ ಪ್ರತಿಯೊಂದು oops ಗೂ ಸಹ DIR ಯಲ್ಲಿ ಕುಸಿತ ಕೋಶವನ್ನು ರಚಿಸು" + +@@ -1921,44 +1967,50 @@ msgstr "ಕಂಡುಬಂದ oopses ಅನ್ನು ಮುದ್ರಿಸು" + msgid "Delete files with found oopses" + msgstr "ಕಂಡುಬಂದ oopses ಗಳಿಂದ ಕಡತಗಳನ್ನು ಅಳಿಸು" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ಒಂದಕ್ಕಿಂತ ಹೆಚ್ಚಿನ ತೊಂದರೆ ಕೋಶವನ್ನು ಗುರುತಿಸುತ್ತದೆ" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ಬಳಕೆ: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "ತೊಂದರೆಗಳನ್ನು ಪಟ್ಟಿ ಮಾಡಿ [DIRಗಳಲ್ಲಿ]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "ತೊಂದರೆಯ ಕೋಶ DIR ಅನ್ನು ತೆಗೆದುಹಾಕು" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "ತೊಂದರೆಯ ಮಾಹಿತಿಯನ್ನು DIR ನಲ್ಲಿ ವಿಶ್ಲೇಷಿಸು ಹಾಗು ವರದಿ ಮಾಡು" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR ಬಗೆಗಿನ ಮಾಹಿತಿಯನ್ನು ಮುದ್ರಿಸು" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "ಇತ್ತೀಚಿನ ಕ್ರಾಶ್‌ಗಳ ಎಣಿಕೆಯನ್ನು ಮುದ್ರಿಸಲಾಗುತ್ತಿದೆ" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "ಅನೇಕ ತೊಂದರೆಗಳನ್ನು ಸಂಸ್ಕರಿಸಿ" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ 'abrt-cli COMMAND --help' ಅನ್ನು ನೋಡಿ" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -1966,31 +2018,31 @@ msgstr "" + "%sRed Hat ಕಸ್ಟಮರ್‌ ಪೋರ್ಟಲ್‌ನಲ್ಲಿ ಒಂದು ಪ್ರಕರಣವನ್ನು ತೆರೆಯಲು 'abrt-cli report " + "%s' ಅನ್ನು ಚಲಾಯಿಸಿ\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "ವರದಿ-ಮಾಡದೆ ಇರುವ ತೊಂದರೆಗಳನ್ನು ಮಾತ್ರ ಪಟ್ಟಿ ಮಾಡು" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "ವಿವರವಾದ ವರದಿಯನ್ನು ತೋರಿಸು" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಅತ್ಯಂತ ಇತ್ತೀಚಿನ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ " + "ತೋರಿಸು" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಹಳೆಯ ತೊಂದರೆಯ ಎಣಿಕೆ ಪಟ್ಟಿಯನ್ನು ಮಾತ್ರ ತೋರಿಸು" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2001,53 +2053,58 @@ msgstr "" + "ಅಧಿಕಾರಗಳನ್ನು ಹೊಂದಿರುವ ಬಳಕೆದಾರರ\n" + "ಮೂಲಕ 'abrt-auto-reporting enabled' ಅನ್ನು ಚಲಾಯಿಸುವ ಮೂಲಕ ಇದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "ಇದಕ್ಕಿಂತ ದೊಡ್ಡದಾದ ಪಠ್ಯವನ್ನು ಸಂಕ್ಷೇಪವಾಗಿ ತೋರಿಸಲಾಗುತ್ತದೆ" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "ಅಂತಹ ಯಾವುದೆ ತೊಂದರೆ ಕೋಶ'%s' ಇಲ್ಲ" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& ಸ್ಥಿತಿ [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "ಯಾವುದೆ ಸಂದೇಶವಿಲ್ಲದೆ ಕೇವಲ ತೊಂದರೆಯ ಎಣಿಕೆಯನ್ನು ಮಾತ್ರ ಮುದ್ರಿಸು" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "ನಿರ್ದಿಷ್ಟ ಸಮಯಮುದ್ರೆಯ ಬದಲಿಗೆ ಅತ್ಯಂತ ಇತ್ತೀಚಿನ ತೊಂದರೆಯ ಎಣಿಕೆಯನ್ನು ಮಾತ್ರ " + "ಮುದ್ರಿಸು" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' ಅನ್ನು ಅಳಿಸಲಾಗುತ್ತಿದೆ" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "ಮತ್ತು ವರದಿ [ಆಯ್ಕೆಗಳು] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "ವರದಿ ಮಾಡಿದ ನಂತರ PROBLEM_DIR ಅನ್ನು ತೆಗೆದುಹಾಕು" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' ಅನ್ನು ಅಳಿಸಲಾಗುತ್ತಿದೆ" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "ಕ್ರಿಯೆಗಳು: remove(rm), info(i), skip(s):" +@@ -2056,22 +2113,22 @@ msgstr "ಕ್ರಿಯೆಗಳು: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "ಕ್ರಿಯೆಗಳು: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' ಅನ್ನು ವರದಿ ಮಾಡಲಾಗುತ್ತಿದೆ" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "ಮುಂದಿನ ಸಮಸ್ಯೆಗಾಗಿ ENTER ಅನ್ನು ಒತ್ತಿ:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since ಆರ್ಗ್ಯುಮೆಂಟ್ ಇಲ್ಲದೆ, ಅಳಿಸಲಾದ ಎಲ್ಲಾ ಸಮಸ್ಯೆಗಳ ಮೇಲೆ ಪುನರಾವರ್ತಿಸುತ್ತದೆ." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "ಈ ಸಮಯಮುದ್ರೆಯ ನಂತರ ಕಂಡುಬಂದ ಸಮಸ್ಯೆಗಳನ್ನು ಮಾತ್ರ ಆರಿಸು" + +diff --git a/po/ko.po b/po/ko.po +index 3311572..22dd209 100644 +--- a/po/ko.po ++++ b/po/ko.po +@@ -8,21 +8,22 @@ + # eukim , 2014 + # Jiří Moskovčák , 2011 + # , 2011-2012, 2013 ++# Eun-Ju Kim , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-12-16 02:58-0500\n" +-"Last-Translator: eukim \n" ++"PO-Revision-Date: 2015-07-19 09:20-0400\n" ++"Last-Translator: Eun-Ju Kim \n" + "Language-Team: Korean (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ko/)\n" + "Language: ko\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -59,7 +60,7 @@ msgstr "DBus를 통해 NetworkManager에 연결할 수 없음: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager를 통해 네트워크 상태를 지정할 수 없음: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'의 소유 권한을 갖을 수 없음 " +@@ -325,7 +326,7 @@ msgstr "ABRT에 대해 " + msgid "Quit" + msgstr "종료 " + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -334,7 +335,7 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "패키지 데이터베이스를 쿼리하고 패키지 및 구성 요소 이름을 저장합니다 " + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -345,90 +346,100 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n" + msgid "Problem directory" + msgstr "문제가 있는 디렉토리 " + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "설정 파일 " + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "NUM을 클라이언트 uid로 사용 " + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "syslog에 로그 " + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "로그에 프로그램 이름 추가 " + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "알 수 없는 오류" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s'는 유효한 문제 디렉토리가 아닙니다" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "권한이 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "수정하기 위해 문제에 액세스할 수 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "디렉토리의 소유자 변경에 실패했습니다. 보다 자세한 내용은 시스템 로그를 확인하십시오. " + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "문제에 액세스하여 불러올 수 없습니다 " ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s'은 유효한 요소 이름이 아닙니다 " + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' 용량을 얻을 수 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "남은 문제 공간이 없음 " + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "문제 디렉토리 '%s'에서 요소 '%s'를 삭제할 수 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "문제에 액세스할 수 없습니다" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "'%s'의 이름이 분실되었습니다. 이 이름을 갖는 다른 서비스가 실행되고 있지 않은지 확인하십시오.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM 초 동안 동작하지 않을 경우 종료합니다 " + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "이 프로그램은 root로 실행해야 합니다." + +@@ -501,74 +512,74 @@ msgstr "동시 작업자 수 입니다. 기본값은 다음과 같습니다 " + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB 단위의 최대 캐시 용량입니다. 기본값은 다음과 같습니다 " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "인증을 해제" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Red Hat Support 사용자 이름" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" +-msgstr "" ++msgstr "Red Hat Support 암호를 지정하지 않은 경우 이를 요청하는 메세지가 나타납니다" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "uReport SSL 인증서 경로 또는 인증서 유형" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "--password의 --username을 지정하십시오" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "--username 또는 --certificate 중 하나를 사용할 수 있습니다" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "--username 또는 --anonymous 중 하나를 사용할 수 있습니다" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "--anonymous 또는 --certificate 중 하나를 사용할 수 있습니다" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "잘못된 인수 개수 " + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "알 수 없는 옵션 값: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" +-msgstr "" ++msgstr "암호: " + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "암호없이 계속 진행할 수 없습니다\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "HTTP 인증 자동 보고" + +-#: ../src/daemon/abrt-auto-reporting.c:349 +-#, fuzzy ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" +-msgstr "자동 단축형 보고서 " ++msgstr "SSL 클라이언트 인증 자동 보고" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "익명으로 자동 보고" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -587,68 +598,68 @@ msgstr "" + " UPLOAD_DIR - 업로드된 아카이브가 저장될 디렉토리\n" + " FILENAME - 업로드된 아카이브 파일 이름 \n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "디렉토리가 아닙니다: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "생략 중: '{0}' (슬래시로 시작)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "생략 중: '{0}' (점으로 시작)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "생략 중: '{0}' (.. 포함)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "생략 중: '{0}' (공백 포함)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "생략 중: '{0}' (탭 포함)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}'로 디렉토리를 변경할 수 없습니다 " + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "알 수 없는 파일 형식: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}'에 작업 디렉토리를 생성할 수 없습니다 " + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}'을 '{1}'로 이동할 수 없습니다 " + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}'을 '{1}'에 복사할 수 없습니다 " + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}'에서 확인 오류 " + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' 압축 해제 중 " + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' 디렉토리를 생성할 수 없습니다 " + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}'을 압축 해제할 수 없습니다 " + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}'이 성공적으로 처리되었습니다 " + +@@ -672,7 +683,8 @@ msgstr "'%s'의 chown할 수 없음: %s" + msgid "Deleting problem directory failed: %s" + msgstr "문제 디렉토리 삭제 실패: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus에서 문제 데이터를 가져올 수 없음: %s" +@@ -682,6 +694,11 @@ msgstr "abrt-dbus에서 문제 데이터를 가져올 수 없음: %s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus에서 문제 목록을 가져올 수 없음: %s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr " abrt-dbus에서 요소가 존재하는지 여부를 검증할 수 없습니다: %s" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -939,6 +956,40 @@ msgstr "debuginfo 파일이 누락되어 있습니다: {0}" + msgid "All debuginfo files are available" + msgstr "모든 debuginfo 파일이 사용 가능합니다" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"BUILD_IDS_FILE에 있는 모든 build-id의 debuginfo 패키지를\n" ++"ABRT 시스템 캐시에 설치합니다." ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "비 대화식 모든 질문에 'Yes'라고 대답 " ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "- STDIN의 의미, 기본값: build_ids" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "지정한 파일만 다운로드" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "리포지터리 검색시 사용할 패턴, 기본값: *debug*" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "무시된 옵션" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1169,7 +1220,7 @@ msgstr "커널에 문제가 발생했지만 커널 자체가 손상되어 있습 + msgid " Tainted modules: %s." + msgstr "잘못된 모듈: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1178,51 +1229,51 @@ msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "FILE (또는 표준 입력)에서 oops를 추출합니다" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "발견된 모든 oops에 대해 DIR에 새로운 문제 디렉토리를 생성 " + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation과 동일, DumpLocation은 abrt.conf에 지정됩니다 " + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "추출한 정보를 PROBLEM에 저장합니다 " + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "문제 디렉토리를 전역에서 읽기 가능하게 합니다 " + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "1 초당 한 개로 문제 디렉토리 생성 제한 " + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "검색 문자열을 표준 출력에 인쇄하고 종료 " + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "regex 컴파일에 실패했습니다 " + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "문제를 업데이트할 수 없습니다: 하나 이상의 oops 발견 " + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d 초 동안 절전 " + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1231,11 +1282,11 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "FILE (또는 표준 입력)에서 Xorg 크래시를 추출합니다" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "검색된 크래시 데이터를 표준 출력에 인쇄 " + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "발견된 모든 크래시에 대해 DIR에 문제 디렉토리를 생성" + +@@ -1806,71 +1857,77 @@ msgstr "검색된 oopses를 출력합니다 " + msgid "Delete files with found oopses" + msgstr "검색된 oopses가 있는 파일을 삭제합니다 " + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s'가 하나 이상의 문제 디렉토리를 확인했습니다 " + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "사용법: abrt-cli [--version] COMMAND [DIR]... " ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "사용법: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr " [in DIRs]에 문제 나열 " + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "문제 디렉토리 DIR 제거 " + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR에 문제가 있는 데이터를 분석 및 보고 " + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR에 관한 정보 출력 " + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "최근 충돌 횟수를 출력" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "여러 문제 처리 " + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "비공개 보고서가 활성화되어 있습니다. 'abrt-cli -a COMMAND'를 사용하여 감지된 문제를 확인합니다. " ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "보다 자세한 내용은 'abrt-cli COMMAND --help'에서 참조하십시오 " + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "%s 'abrt-cli report %s'를 실행하여 Red Hat 고객 포털에 기술 문의를 작성합니다 \n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [options]" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "보고되지 않는 문제만 나열합니다 " + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "상세 보고를 표시합니다 " + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "지정된 타임 스탬프 보다 최신의 문제만 나열 " + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "지정된 타임 스탬프보다 오래된 문제만 나열합니다 " + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1880,50 +1937,55 @@ msgstr "" + "자동보고 기능은 비활성화되어 있습니다. root 권한을 가진 사용자로\n" + "'abrt-auto-reporting enabled'를 실행하여 이를 활성화합니다\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "이보다 더 큰 텍스트는 요약하여 표시됩니다" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "이러한 문제 디렉토리 '%s'가 없음 " + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& status" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "아무 메세지를 표시하지 않고 문제의 건수만 출력 " + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "지정된 타임 스탬프 보다 최신의 문제만 출력" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "문제 '%s'을/를 찾을 수 없음" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' 삭제 중 " ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "보고 후 PROBLEM_DIR 삭제 " + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' 삭제 중 " +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "동작: 삭제(rm), 정보(i), 생략(s):" +@@ -1932,21 +1994,21 @@ msgstr "동작: 삭제(rm), 정보(i), 생략(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "동작: 삭제(rm), 보고 (e), 정보(i), 생략(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' 보고 중 " + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "다음 문제로 이동하려면 ENTER를 누릅니다: " + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since 인수가 없으면 감지된 모든 문제를 반복합니다 " + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "타임 스탬프 후 감지된 문제만 선택합니다 " + +diff --git a/po/ky.po b/po/ky.po +index d373be0..5baa9b7 100644 +--- a/po/ky.po ++++ b/po/ky.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/ky/)\n" + "Language: ky\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/lt.po b/po/lt.po +index 1356747..44874f4 100644 +--- a/po/lt.po ++++ b/po/lt.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "Language: lt\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "(n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -55,7 +55,7 @@ msgstr "Nepavyksta prisijungti prie NetworkManager per DBus: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Nepavyksta nustatyti tinklo būsenos per NetworkManager: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nepavyko tapti „%s“ savininku" +@@ -312,7 +312,7 @@ msgstr "Apie" + msgid "Quit" + msgstr "Išeiti" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -322,7 +322,7 @@ msgstr "" + "\n" + "Užklausti paketų duomenų bazės ir įrašyti paketo ir komponento pavadinimus" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -333,80 +333,90 @@ msgstr "" + msgid "Problem directory" + msgstr "Problemų katalogas" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Konfigūracijos failas" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [parinktys]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "Naudoti NUM kaip kliento uid" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Įrašyti į syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Pridėti programų pavadinimus žurnalizavimui" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Nežinoma klaida" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "„%s“ nėra tinkamas problemų katalogas" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "„%s“ elementas negali būti pakeistas" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Neleista" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Nepavyksta prieiti problemos pakeitimui" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Nepavyko pakeisti aplanko savininko. Daugiau informacijos rasite sistemos " + "žurnaluose." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "„%s“ nėra tinkamas elemento pavadinimas" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Nepavyko gauti „%s“ dydžio" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "Nėra likusios problemų vietos" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nepavyksta ištrinti elemento „%s“ iš problemų katalogo „%s“" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -415,12 +425,12 @@ msgstr "" + "Vardas „%s“ buvo prarastas, patikrinkite, ar neveikia kita tarnyba su šiuo " + "vardu.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Išeiti po NUM sekundžių neaktyvumo" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Šią programą reikia paleisti root naudotojo teisėmis." + +@@ -496,75 +506,76 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "Didžiausias podėlio dydis MiB. Numatyta " + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "Neteisingas argumentų skaičius" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Nežinoma parametro vertė: „%s“\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -576,68 +587,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -661,7 +672,8 @@ msgstr "Nepavyko chown „%s“: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Nepavyko ištrinti problemos katalogo: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Nepavyko gauti problemos duomenų iš abrt-dbus: %s" +@@ -671,6 +683,11 @@ 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/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -944,6 +961,35 @@ msgstr "Trūksta derinimo informacijos failo: {0}" + msgid "All debuginfo files are available" + msgstr "Yra visi derinimo informacijos failai" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1187,7 +1233,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr " Sugadinti moduliai: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1197,51 +1243,51 @@ msgstr "" + "\n" + "Išgauti oops iš FILE (arba standartinės įvesties)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + 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:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "Įrašyti išgautą informaciją į PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Padaryti problemų katalogą skaitomą pasauliui" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Nustatyti problemų aplankų kūrimą į 1 per sekundę" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + 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:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + 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:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Miegama %d sekundžių" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1251,11 +1297,11 @@ msgstr "" + "\n" + "Išgauti Xorg lūžimą iš FAILO (arba standartinės įvesties)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Atspausdinti rastus lūžimo duomenis standartinėje išvestyje" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Sukurti naują problemos katalogą KAT kataloge kiekvienam rastam lūžimui" +@@ -1855,73 +1901,79 @@ msgstr "Atspausdinti rastus oops" + msgid "Delete files with found oopses" + msgstr "Ištrinti failus su rastais oops" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "„%s“ nurodo daugiau nei vieną problemos aplanką" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Naudojimas: abrt-cli [--version] KOMANDA [KAT]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Pašalinti problemos katalogą KAT" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analizuoti ir pranešti KAT problemos duomenis" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Atspausdinti informaciją apie KAT" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Atspausdinti nesenų lūžimų skaičių" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Daugiau informacijos gausite įvykdę „abrt-cli KOMANDAS --help“" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [parinktys] [KAT]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "Išvardinti tik nepraneštas problemas" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Rodyti detalią ataskaitą" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + 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:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "Išvardinti tik problemas, kurios senesnės nei nurodyta laiko žymo" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1932,51 +1984,56 @@ msgstr "" + "teisėmis\n" + "„abrt-auto-reporting enabled“\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [parinktys] KAT..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "Ilgesnis nei toks tekstas bus rodomas sutrumpintas" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Nėra tokio problemos aplanko „%s“" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& būsena [KAT]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Atspausdinti tik problemų skaičių be jokių pranešimų" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Atspausdinti tik problemas, naujesnes nei nurodyta laiko žyma" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT aptiko %u problemą(as). Daugiau informacijos gausite įvykdę: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1985,21 +2042,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/lv.po b/po/lv.po +index 4a9b3e1..823a0ad 100644 +--- a/po/lv.po ++++ b/po/lv.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "Language: lv\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " + "2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -55,7 +55,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -303,14 +303,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -321,90 +321,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Konfigurācijas datne" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [iespējas]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Nezināma kļūda" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' nav derīgs elementa nosaukums" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -466,73 +476,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -544,68 +555,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -629,7 +640,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -639,6 +651,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -862,6 +879,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1081,69 +1127,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1693,71 +1739,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Parādīt detalizētu ziņojumu" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1765,49 +1817,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1816,21 +1873,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/mai.po b/po/mai.po +index 52a4711..083d4fe 100644 +--- a/po/mai.po ++++ b/po/mai.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/mai/)\n" + "Language: mai\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/mk.po b/po/mk.po +index 239f545..695e203 100644 +--- a/po/mk.po ++++ b/po/mk.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/mk/)\n" + "Language: mk\n" + "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/ml.po b/po/ml.po +index 3c8e724..cb1a171 100644 +--- a/po/ml.po ++++ b/po/ml.po +@@ -6,21 +6,22 @@ + # Ani Peter , 2014 + # Jiří Moskovčák , 2011 + # Ani Peter , 2015. #zanata ++# Jakub Filak , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-08 10:57-0500\n" +-"Last-Translator: Ani Peter \n" ++"PO-Revision-Date: 2015-07-15 05:08-0400\n" ++"Last-Translator: Jakub Filak \n" + "Language-Team: Malayalam (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ml/)\n" + "Language: ml\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -64,7 +65,7 @@ msgstr "" + "NetworkManager മുഖേന നെറ്റ്‌വര്‍ക്ക് അവസ്ഥ കണ്ടുപിടിയ്ക്കുവാന്‍ സാധ്യമല്ല: " + "%s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'-ന്റെ അവകാശം സ്വീകരിയ്ക്കുവാന്‍ സാധ്യമല്ല" +@@ -353,7 +354,7 @@ msgstr "സംബന്ധിച്ചു് " + msgid "Quit" + msgstr "പുറത്തു് കടക്കുക " + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -364,7 +365,7 @@ msgstr "" + "പാക്കേജ് ഡേറ്റാബെയിസ് ചോദ്യം ചെയ്തു്, പാക്കേജും ഘടകത്തിന്റെ പേരും " + "സൂക്ഷിയ്ക്കുക" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -375,81 +376,91 @@ msgstr "" + msgid "Problem directory" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "ക്രമീകരണ ഫയല്‍" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "ക്ലയന്റ് യുഐഡി ആയി NUM ഉപയോഗിയ്ക്കുക" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "syslog-ലേക്കു് പ്രവേശിയ്ക്കുക" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "ലോഗിലേക്കു് പ്രോഗ്രാമിന്റെ പേരുകള്‍ ചേര്‍ക്കുക" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "അപരിചിതമായ പിശക്" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' ശരിയായൊരു പ്രശ്ന ഡയറക്ടറിയല്ല" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "അധികാരമില്ല" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "മാറ്റം വരുത്തുന്നതിനായി പ്രശ്നം കാണിയ്ക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "ഡയറക്ടറി ചൌണ്‍ ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു. കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി " + "സിസ്റ്റം ലോഗുകള്‍ പരിശോധിയ്ക്കുക." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' ശരിയായൊരു എലമെന്റ് നാമമല്ല is not a valid element name" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s'-ന്റെ വ്യാപ്തി ലഭ്യമല്ല" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "സ്ഥലം ലഭ്യമല്ല" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "'%s' എലമെന്റ് വെട്ടി നീക്കുവാന്‍ സാധ്യമല്ല ('%s' ഡയറക്ടറിയില്‍ നിന്നും)" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -458,12 +469,12 @@ msgstr "" + "'%s' എന്ന നാമം നഷ്ടമായി, ഈ പേരില്‍ മറ്റൊരു സര്‍വീസും പ്രവര്‍ത്തനത്തിലില്ല " + "എന്നു് ദയവായി ഉറപ്പാക്കുക.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM നിമിഷങ്ങള്‍ നിഷ്ക്രിയമായശേഷം പുറത്തു് കടക്കുക" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ഈ പ്രോഗ്രാം റൂട്ടായി പ്രവര്‍ത്തിപ്പിയ്ക്കണം." + +@@ -540,77 +551,78 @@ msgstr "ഒരേപോലെ ജോലിചെയ്യുന്നവരു + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB-ല്‍ ഏറ്റവും കൂടിയ ക്യാഷ് വ്യാപ്തി. സ്വതവേയുള്ളതു്" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "ആധികാരികത ഉറപ്പാക്കല്‍ സംവിധാനം ഓഫ് ചെയ്യുന്നു" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Red Hat പിന്തുണയ്ക്കുള്ള ഉപയോക്തൃനാമം" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat പിന്തുണയ്ക്കുള്ള രഹസ്യവാക്ക്, നല്‍കിയിട്ടില്ലെങ്കില്‍, ഇതിനായി " + "ആവശ്യപ്പെടുന്നു" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + "uReport എസ്എസ്എല്‍ സര്‍ട്ടിഫിക്കേറ്റ് പാഥ് അല്ലെങ്കില്‍ സര്‍ട്ടിഫിക്കേറ്റ് " + "രീതി" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr " --password-നുള്ള --username നല്‍കേണ്ടതുണ്ടു്" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "--username അല്ലെങ്കില്‍ --certificate ഉപയോഗിയ്ക്കാം" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "--username അല്ലെങ്കില്‍ --anonymous ഉപയോഗിയ്ക്കാം" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "--anonymous അല്ലെങ്കില്‍ --certificate ഉപയോഗിയ്ക്കാം" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "ആര്‍ഗ്യുമെന്റുകളുടെ തെറ്റായ എണ്ണം" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "അപരിചിതമായ മൂല്ല്യം: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "രഹസ്യവാക്ക്:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "രഹസ്യവാക്കില്ലാതെ തുടരുവാന്‍ സാധ്യമല്ല\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "എച്ടിടിപി ആധികാരികതയുള്ള ഓട്ടോ റിപോര്‍ട്ടിങ്" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "എസ്എസ്എല്‍ ക്ലയന്റ് ആധികാരികതയുള്ള ഓട്ടോ റിപോര്‍ട്ടിങ്" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "അപരിചിതമായ ഓട്ടോ റിപോര്‍ട്ടിങ്" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -630,68 +642,68 @@ msgstr "" + " UPLOAD_DIR - അപ്‌ലോഡ് ചെയ്ത ഡയറക്ടറികള്‍ സൂക്ഷിയ്ക്കുന്ന ഡയറക്ടറി\n" + " FILENAME - അപ്‌ലോഡ് ചെയ്ത് ആര്‍ക്കൈവ് ഫയല്‍ നാമം.\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ഡയറക്ടറിയല്ല: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (സ്ലാഷില്‍ ആരംഭിയ്ക്കുന്നു)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (കുത്തില്‍ ആരംഭിയ്ക്കുന്നു)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (.. അടങ്ങുന്നു)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (സ്പെയിസ് അടങ്ങുന്നു)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "ഉപേക്ഷിയ്ക്കുന്നു: '{0}' (ടാബ് അടങ്ങുന്നു)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ഡയറക്ടറിയെ '{0}'-ലേക്ക് മാറ്റുവാന്‍ സാധ്യമല്ല" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "അപരിചിതമായ ഫയല്‍ രീതി: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}'-ല്‍ പ്രവര്‍ത്തനത്തിലുള്ള ഡയറക്ടറി തയ്യാറാക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}'-നെ '{1}'-ലേക്ക് നീക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}'-നെ '{1}'-ലേക്ക് നീക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}'-ല്‍ ഉറപ്പാക്കുന്നതില്‍ പിശക്" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' തുറക്കുന്നു" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ഡയറക്ടറി തയ്യാറാക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' തുറക്കുവാന്‍ സാധ്യമല്ല" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' വിജയകരമായി നടപ്പിലാക്കി" + +@@ -715,7 +727,8 @@ msgstr "'%s' chown ചെയ്യുവാന്‍ സാധ്യമല്ല + msgid "Deleting problem directory failed: %s" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി വെട്ടിനീക്കുന്നതില്‍ പരാജയം: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -727,6 +740,11 @@ msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + "abrt-dbus-ല്‍ നിന്നും പ്രശ്നമുള്ള പട്ടിക ലഭ്യമാക്കുവാന്‍ സാധ്യമല്ല: %s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -1009,6 +1027,35 @@ msgstr "debuginfo ഫയല്‍ ലഭ്യമല്ല: {0}" + msgid "All debuginfo files are available" + msgstr "എല്ലാ debuginfo ഫയലുകളും ലഭ്യമാണു്" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1256,7 +1303,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr " ലൈസന്‍സ് പ്രശ്നങ്ങളുള്ള ഘടകങ്ങള്‍: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1266,55 +1313,55 @@ msgstr "" + "\n" + "FILE-ല്‍ നിന്നും ഒഒപിഎസ് ലഭ്യമാക്കുക (അല്ലെങ്കില്‍ സാധാരണയുള്ള ഇന്‍പുട്ട്)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "എല്ലാ oops-നും DIR-ലുള്ള തകരാറിനുള്ള ഡയറക്ടറി തയ്യാറാക്കുക" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation പോലെ തന്നെ, abrt.conf-ല്‍ DumpLocation " + "നിഷ്കര്‍ഷിച്ചിരിയ്ക്കുന്നു" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "PROBLEM-ല്‍ ലഭ്യമാക്കിയ വിവരം സൂക്ഷിയ്ക്കുക" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി ലഭ്യമാക്കുക" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + "ത്രോട്ടില്‍ പ്രശ്നം ഡയറക്ടറി തയ്യാറാക്കുന്നതു് ഒരു സെക്കന്‍ഡില്‍ ഒന്നു്" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout-ലേക്കു് തെരയുന്ന സ്ട്രിങ് പ്രിന്റ് ചെയ്തു് പുറത്തു് കടക്കുക" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "regex കംപൈല്‍ ചെയ്യുന്നതില്‍ പരാജയപ്പെട്ടു" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + "പ്രശ്നം പരിഷ്കരിയ്ക്കുവാന്‍ സാധ്യമല്ല: ഒന്നില്‍ കൂടുതല്‍ oops ലഭ്യമായി" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d നിമിഷത്തേക്കു് മയങ്ങുന്നു" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1324,11 +1371,11 @@ msgstr "" + "\n" + "FILE-ല്‍ നിന്നും Xorg ക്രാഷ് ലഭ്യമാക്കുക (അല്ലെങ്കില്‍ സാധാരണ ഇന്‍പുട്ട്)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "സാധാരണ ഔട്ട്പുട്ടിലേക്കു് ലഭ്യമായ ക്രാഷ് ഡേറ്റാ പ്രിന്റ് ചെയ്യുക" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "എല്ലാ ക്രാഷിനും DIR-ലുള്ള തകരാറിനുള്ള ഡയറക്ടറി തയ്യാറാക്കുക" + +@@ -1714,7 +1761,7 @@ msgid "" + msgstr "" + "അസുരക്ഷിതമായ കണക്ഷന്‍ <a href=\"https://fedorahosted.org/abrt/wiki/" + "AbrtRetraceServerInsecureConnection\" >(warning)</a> " +-"അനുവദിയ്ക്കുന്നതിനായി \"അസുരക്ഷിതം\" എഴുതുക" ++"അനുവദിയ്ക്കുന്നതിനായി \"insecure\" എഴുതുക" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 + msgid "Collect .xsession-errors" +@@ -1944,44 +1991,50 @@ msgstr "കണ്ടുപിടിച്ച ഒഒപിഎസുകള്‍ + msgid "Delete files with found oopses" + msgstr "കണ്ടുപിടിച്ച ഒഒപിഎസുകളുള്ള ഫയലുകള്‍ വെട്ടി നീക്കുക" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ഒന്നില്‍ കൂടുതല്‍ പ്രശ്നമുള്ള ഡയറക്ടറി തിരിച്ചറിയുന്നു" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "പ്രശ്നങ്ങള്‍ ലഭ്യമാക്കുക [DIR-കളില്‍]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "പ്രശ്നമുള്ള ഡയറക്ടറി DIR നീക്കം ചെയ്യുക" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR-ല്‍ പ്രശ്നമുള്ള ഡേറ്റാ നിരീക്ഷിച്ചു് രേഖപ്പെടുത്തുക" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR സംബന്ധിച്ചുള്ള വിവരം പ്രിന്റ് ചെയ്യുക" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "പുതിയ തകരാറുകളുടെ എണ്ണം പ്രിന്റ് ചെയ്യുക" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "അനവധി പ്രശ്നങ്ങള്‍ നടപ്പിലാക്കുക" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "കൂടുതല്‍ വിവരങ്ങള്‍ക്കായി 'abrt-cli COMMAND --help' കാണുക." + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -1990,30 +2043,30 @@ msgstr "" + "report %s'\n" + "\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "രേഖപ്പെടുത്താത്ത പ്രശ്നങ്ങള്‍ മാത്രം ലഭ്യമാക്കുക" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "വിശദമായ രേഖപ്പെടുത്തല്‍ കാണിയ്ക്കുക" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പുതിയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + "നല്‍കിയിരിയ്ക്കുന്ന സമയത്തിനേക്കാള്‍ പഴയ പ്രശ്നങ്ങള്‍ മാത്രം കാണിയ്ക്കുക" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2024,53 +2077,58 @@ msgstr "" + "ഉപയോക്താവായി 'abrt-auto-reporting enabled' നല്‍കി\n" + "ഇതു് പ്രവര്‍ത്തന സജ്ജമാക്കുക.\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "ഇതിലും വലുതായ വാചകം അബ്രിഡ്ജമായ കാണിയ്ക്കുന്നു" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "'%s' പോലുള്ള പ്രശ്നമുള്ള ഡയറക്ടറി ലഭ്യമല്ല" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& അവസ്ഥ [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "സന്ദേശമില്ലാതെ പ്രശ്നത്തിന്റെ എണ്ണം മാത്രം പ്രിന്റ് ചെയ്യുക" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "നല്‍കിയിരിയ്ക്കുന്ന ടൈംസ്റ്റാമ്പിനേക്കാള്‍ പുതുതായ പ്രശ്നങ്ങള്‍ മാത്രം " + "പ്രിന്റ് ചെയ്യുക" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "എബിആര്‍റ്റി %u പ്രശ്നങ്ങള്‍ കണ്ടുപിടിച്ചിരിയ്ക്കുന്നു. കൂടുതല്‍ " + "വിവരങ്ങള്‍ക്കായി പ്രവര്‍ത്തിപ്പിക്കേണ്ടതു്: abrt-cli list%s\n" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' വെട്ടി നീക്കുന്നു" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "രേഖപ്പെടുത്തിയ ശേഷം PROBLEM_DIR നീക്കം ചെയ്യുക" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' വെട്ടി നീക്കുന്നു" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "പ്രവര്‍ത്തികള്‍: remove(rm), info(i), skip(s):" +@@ -2079,23 +2137,23 @@ msgstr "പ്രവര്‍ത്തികള്‍: remove(rm), info(i), skip + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "പ്രവര്‍ത്തികള്‍: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' രേഖപ്പെടുത്തുന്നു" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "അടുത്ത പ്രശ്നത്തിന് ENTER അമര്‍ത്തുക:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since ആര്‍ഗ്യുമെന്റില്ലാതെ, ലഭ്യമായ പ്രശ്നങ്ങളിലെല്ലാം ആവര്‍ത്തിയ്ക്കുന്നു." + "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "ടൈംസ്റ്റാബിനു് ശേഷം ലഭിച്ച പ്രശ്നങ്ങള്‍ മാത്രം തെരഞ്ഞെടുക്കുന്നു" + +diff --git a/po/mn.po b/po/mn.po +index 66a599e..ed4dd44 100644 +--- a/po/mn.po ++++ b/po/mn.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/mn/)\n" + "Language: mn\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/mr.po b/po/mr.po +index 5072002..26138ba 100644 +--- a/po/mr.po ++++ b/po/mr.po +@@ -11,7 +11,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "Language-Team: Marathi \n" + "Language: mr\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -58,7 +58,7 @@ msgstr "डिबस: %s वरील नेटवर्कमॅनेजरश + msgid "Can't determine network status via NetworkManager: %s" + msgstr "नेटवर्कमॅनेजर: %s तर्फे नेटवर्क स्थिती ओळखणे अशक्य" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ची मालकी प्राप्त करणे अशक्य" +@@ -341,7 +341,7 @@ msgstr "विषयी" + msgid "Quit" + msgstr "बाहेर पडा" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -351,7 +351,7 @@ msgstr "" + "\n" + "संकुल डाटाबेसची चौकशी करा व संकुल व घटकाचे नाव साठवा" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -362,78 +362,88 @@ msgstr "" + msgid "Problem directory" + msgstr "प्रॉब्लेम डिरेक्ट्री" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "संरचना फाइल" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "NUM चा क्लाएंट uid म्हणून वापर करा" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "syslog करीता लॉग" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "लॉगमध्ये कार्यक्रम नावे समाविष्ट करा" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "अपरिचीत त्रुटी" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' वैध अडचण डिरेक्ट्री नाही" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ओळख पटली नाही" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "संपादनकरीता अडचणकरीता प्रवेश अशक्य" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "डिरेक्ट्रीला Chown करणे अपयशी. अधिक तपशीलकरीता प्रणाली लॉग तपासा." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' वैध एलिमेंट नाव नाही" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s'ची आकार प्राप्ति अशक्य" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "प्रॉबलेम जागा बाकी नाही" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "एलिमेंट '%s' ला प्रॉबलेम डिरेक्ट्रि '%s' पासून नष्ट करणे अशक्य" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -442,12 +452,12 @@ msgstr "" + "नाव '%s' हरवले आहे, कृपया नावाची मालकी असलेली सर्व्हिस सुरू नाही याची तपासणी " + "करा.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "निष्क्रिय झाल्यावर NUM सेकंदानंतर बाहेर पडा" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "हा प्रोग्राम रूट वापरकर्ता म्हणून चालवा." + +@@ -521,73 +531,74 @@ msgstr "कंकरंट वर्कर्सची संख्या. प + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB मधील कमाल कॅशे आकार. पूर्वनिर्धारित आहे " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "ओळख पटवणे बंद करते" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Red Hat Support वापकर्ता नाव" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support पासवर्ड, दिले नसल्यास, त्याकरिता विनंती दिली जाईल" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL प्रमाणपत्र मार्ग किंवा प्रमाणपत्र प्रकार" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "--password करिता --username देखील निर्देशीत करावे लागेल" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "एकतर --username किंवा --certificate यांचा वापर शक्य आहे" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "एकतर --username किंवा --anonymous यांचा वापर शक्य आहे" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "एकतर --anonymous किंवा --certificate यांचा वापर शक्य आहे" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "अवैध बाबींची संख्या" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "अपरिचीत पर्याय मूल्य: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "पासवर्ड:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "पासवर्डविना पुढे जाणे अशक्य\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP ऑथेंटिकेटेड स्व अहवाल" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL क्लाएंट ऑथेंटिकेटेड स्व अहवाल" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "निनावी स्व अहवाल" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -607,68 +618,68 @@ msgstr "" + " UPLOAD_DIR - अपलोड केलेले आर्काइव्ह जेथे साठविले जातात ती डिरेक्ट्री\n" + " FILENAME - आर्काइव्ह फाइल नाव अपलोड केले\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "डिरेक्ट्री नाही: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "वगळत आहे: '{0}' (स्लॅशपासून सुरू होते)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "वगळत आहे: '{0}' (डॉटपासून सुरू होते)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "वगळत आहे: '{0}' (समाविष्टीत आहे ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "वगळत आहे: '{0}' (स्पेस समाविष्टीत आहे)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "वगळत आहे: '{0}' (टॅब समाविष्टीत आहे)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "'{0}' करिता डिरेक्ट्री बदलणे अशक्य" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "अपरिचीत फाइल प्रकार: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' मध्ये कार्यरत डिरेक्ट्री निर्माण करणे अशक्य" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ला '{1}' करिता हलविणे अशक्य" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' चे '{1}' मध्ये प्रत करणे अशक्य" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' वरील तापसणी त्रुटी" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' खुले करत आहे" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' डिरेक्ट्रीचे निर्माण अशक्य" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' खुले करणे अशक्य" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' यशस्वीरित्या विश्लेषणीत केले" + +@@ -692,7 +703,8 @@ msgstr "'%s': %s chown करणे अशक्य" + msgid "Deleting problem directory failed: %s" + msgstr "अडचण डिरेक्ट्री: %s नष्ट करण्यास अपयशी" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus: %s पासून अडचण डाटा प्राप्त करणे अशक्य" +@@ -702,6 +714,11 @@ msgstr "abrt-dbus: %s पासून अडचण डाटा प्राप + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus: %s पासून अडचण सूची प्राप्त करणे अशक्य" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -975,6 +992,35 @@ msgstr "debuginfo फाइल: {0} आढळली नाही" + msgid "All debuginfo files are available" + msgstr "सर्व debuginfo फाइल्स् उपलब्ध आहे" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1214,7 +1260,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr " टैंटेड मॉड्युल्स: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1224,53 +1270,53 @@ msgstr "" + "\n" + "FILE (किंवा स्टँडर्ड इंपुट) पासून ऊप्स प्राप्त करा" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "प्रत्येक ऊप्सकरीता DIR मधील नवीन प्रॉबलेम डिरेक्ट्रि निर्माण करा" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation प्रमाणेच आहे, DumpLocation ला abrt.conf मध्ये निर्देशीत केले " + "जाते" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr " PROBLEM मध्ये प्राप्य माहिती साठवा" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "प्रॉब्लेम डिरेक्ट्री जग वाचनजोगी बनवा" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "प्रति 1 सेकंदकरिता थ्रॉटल अडचण डिरेक्ट्रीचे निर्माण" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout करीता सर्च स्ट्रिंग्स्ची छपाई करा व बाहेर पडू नका" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "रेगेक्स कंपाइल करण्यास अपयशी" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "अडचण सुधारित करणे अशक्य: एकापेक्षा जास्त ऊप्स आढळले" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d सेकंदकरिता निष्क्रीय झाले" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1280,11 +1326,11 @@ msgstr "" + "\n" + "FILE (किंवा स्टँडर्ड इंपुट) पासून Xorg क्रॅश प्राप्त करा" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "स्टँडर्ड आउटपुटवर क्रॅश डाटाची छपाई करा" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "प्रत्येक आढळलेल्या क्रॅशकरीता DIR मध्ये प्रॉबलेम डिरेक्ट्रि निर्माण करा" +@@ -1874,44 +1920,50 @@ msgstr "आढळलेल्या ऊप्सेसची छपाई कर + msgid "Delete files with found oopses" + msgstr "आढळलेल्या ऊप्सेसपासून फाइल्स नष्ट करा" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' एकापेक्षा जास्त अडचण डिरेक्ट्री ओळखते" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "वापर: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "अडचणींची सूची दाखवा [DIRs मध्ये]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "प्रॉब्लेम डिरेक्ट्री DIR काढून टाका" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR मध्ये प्रॉब्लेम डाटाचे विश्लेषण करा व कळवा" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR विषयी माहितीची छपाई करा" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "नुकतेच क्रॅशच्या प्रमाणची छपाई करा" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "बहु अडणी विश्लेषीत करा" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "अधिक माहितीकरीता 'abrt-cli COMMAND --help' पहा" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -1919,28 +1971,28 @@ msgstr "" + "Red Hat Customer Portal अंतर्गत घटना निर्माण करण्यासाठी %sरन 'abrt-cli " + "report %s'\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "फक्त-न कळवलेल्या अडचणींची सूची दाखवा" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "तपशील अहवाल दाखवा" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "निर्देशीत टाइमस्टॅम्पपेक्षा नवीन अडचणींची सूची दाखवा" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "फक्त निर्देशीत टाइमस्टॅम्पपेक्षा जुण्या अडचणीच दाखवा" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1951,49 +2003,54 @@ msgstr "" + "root परवानगी सक्षम वापरकर्ता नुरूप, 'abrt-auto-reporting enabled' असे यास " + "गृहीत धरा\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "यापेक्षा मोठे मजकूर अब्रिज्ड दाखवले जाईल" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "या प्रकारची अडचण डिरेक्ट्री '%s' नाही" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "व स्थिती [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "कोणत्याही संदेशविना फक्त अडचण प्रमाणाची छपाई करा" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "निर्देशीत टाइमस्टॅम्पपेक्षा नुकतेच अडचणींची छपाई करा" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' नष्ट करणे" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [पर्याय] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "कळविल्यानंतर PROBLEM_DIR काढून टाका" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' नष्ट करणे" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "कृती: remove(rm), info(i), skip(s):" +@@ -2002,21 +2059,21 @@ msgstr "कृती: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "कृती: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' कळविणे" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "पुढील अडचणीकरिता ENTER दाबा:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "--since बाबविना, सर्व आढळलेल्या अडचणींची पुनराकृती करते." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "फक्त टाइमस्टॅम्पनंतर आढळलेल्या अडचणींनाच पसंत करते" + +diff --git a/po/ms.po b/po/ms.po +index 4824646..0f8da3c 100644 +--- a/po/ms.po ++++ b/po/ms.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/ms/)\n" + "Language: ms\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/nb.po b/po/nb.po +index c925453..47c26df 100644 +--- a/po/nb.po ++++ b/po/nb.po +@@ -5,21 +5,22 @@ + # Translators: + # Jiří Moskovčák , 2011 + # Kjartan Maraas , 2011-2012 ++# Kjartan Maraas , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-12-12 08:30-0500\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-07-04 04:44-0400\n" ++"Last-Translator: Kjartan Maraas \n" + "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/fedora-" + "abrt/language/nb/)\n" + "Language: nb\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -35,27 +36,29 @@ msgid "" + "Therefore it is not necessary to bother you next time and require any " + "further action by you. \n" + msgstr "" ++"Rapporten som skal sendes inneholder ikke sikkerhetssensitive data. Det er " ++"derfor ikke nødvendig å bry deg med flere handlinger neste gang.\n" + + #: ../src/applet/applet.c:136 + msgid "Do you want to enable automatically submitted crash reports?" +-msgstr "" ++msgstr "Vil du slå på automatisk innsending av rapporter for krasj?" + + #: ../src/applet/applet.c:141 + msgid "Do you want to enable automatically submitted anonymous crash reports?" +-msgstr "" ++msgstr "Vil du slå på automatisk innsending av anonyme rapporter for krasj?" + + #. The NetworkManager DBus service is not available. + #: ../src/applet/applet.c:243 + #, c-format + msgid "Can't connect to NetworkManager over DBus: %s" +-msgstr "" ++msgstr "Kan ikke koble til NetworkManager over DBus: %s" + + #: ../src/applet/applet.c:267 + #, c-format + msgid "Can't determine network status via NetworkManager: %s" +-msgstr "" ++msgstr "Kan ikke bestemme nettverksstatus via NetworkManager: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan ikke ta eierskap av «%s»" +@@ -63,7 +66,7 @@ msgstr "Kan ikke ta eierskap av «%s»" + #: ../src/applet/applet.c:350 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "" ++msgstr "Kan ikke åpne katalog for skriving «%s»" + + #: ../src/applet/applet.c:417 + msgid "A problem has been detected" +@@ -77,7 +80,7 @@ msgstr "Et problem ble funnet i pakken %s" + #: ../src/applet/applet.c:429 + #, c-format + msgid "%s and the diagnostic data has been submitted" +-msgstr "" ++msgstr "%s og feilinformasjon har blitt sendt inn" + + #: ../src/applet/applet.c:589 ../src/plugins/abrt-retrace-client.c:131 + #: ../src/plugins/abrt-retrace-client.c:168 +@@ -88,7 +91,7 @@ msgstr "Kan ikke kjøre «%s»" + #: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" +-msgstr "" ++msgstr "Kan ikke lukke varsel: %s" + + #: ../src/applet/applet.c:706 + msgid "" +@@ -114,7 +117,7 @@ msgstr "Kjartan Maraas " + + #: ../src/applet/applet.c:858 + msgid "_Quit" +-msgstr "" ++msgstr "A_vslutt" + + #: ../src/applet/applet.c:860 + msgid "Hide" +@@ -122,7 +125,7 @@ msgstr "Skjul" + + #: ../src/applet/applet.c:862 + msgid "_About" +-msgstr "" ++msgstr "_Om" + + #: ../src/applet/applet.c:930 + msgid "Problem detected" +@@ -130,21 +133,21 @@ msgstr "Problem funnet" + + #: ../src/applet/applet.c:980 + msgid "Ignore forever" +-msgstr "" ++msgstr "Ignorer for alltid" + + #. Problem has been 'autoreported' and is considered as KNOWN + #. + #: ../src/applet/applet.c:991 ../src/applet/applet.c:1006 + msgid "Open" +-msgstr "" ++msgstr "Åpen" + + #: ../src/applet/applet.c:996 + msgid "The Problem has already been Reported" +-msgstr "" ++msgstr "Problemet er allerede rapportert" + + #: ../src/applet/applet.c:996 + msgid "A Known Problem has Occurred" +-msgstr "" ++msgstr "Et kjent problem har oppstått" + + #. Problem has not yet been 'autoreported' and can be + #. * 'autoreported' on user request. +@@ -159,27 +162,27 @@ msgstr "Et problem har oppstått" + + #: ../src/applet/applet.c:1046 + msgid "A Problem has been Reported" +-msgstr "" ++msgstr "Et problem har blitt rapportert" + + #: ../src/applet/applet.c:1054 + msgid "A New Problem has Occurred" +-msgstr "" ++msgstr "Et nytt problem har oppstått" + + #: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" +-msgstr "" ++msgstr "Kan ikke vise varsling: %s" + + #. TODO: Terminate child's process? + #: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" +-msgstr "" ++msgstr "Kan ikke lese fra GIO-kanal: «%s»" + + #: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" +-msgstr "" ++msgstr "Kan ikke sette koding på GIO-kanal: %s" + + #: ../src/applet/applet.c:1186 + #, c-format +@@ -209,15 +212,15 @@ msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Send uReport automatisk" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "Forenklet rapportering" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "Forenklet stille rapportering" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -258,7 +261,7 @@ msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "Spør før kjernedump lastes opp" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" +@@ -272,7 +275,7 @@ msgstr "" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Varsle om ufullstendige problemer" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" +@@ -283,16 +286,16 @@ msgstr "" + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +-msgstr "" ++msgstr "_Lukk" + + #: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" +-msgstr "" ++msgstr "_Forvalg" + + #: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "" ++msgstr "Konfigurasjon av problemrapportering" + + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +@@ -300,13 +303,13 @@ msgstr "" + + #: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "" ++msgstr "Om" + + #: ../src/configuration-gui/main.c:106 + msgid "Quit" +-msgstr "" ++msgstr "Avslutt" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -316,7 +319,7 @@ msgstr "" + "\n" + "Spør pakkedatabasen og lagre navn på pakke og komponent" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -327,90 +330,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Konfigurasjonsfil" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [alternativer]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Logg til syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Legg til programnavn i loggen" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Ukjent feil" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Ikke autorisert" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Avslutt etter NUM sekunder uten aktivitet" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Programmet må kjøres som root" + +@@ -472,73 +485,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " +-msgstr "" ++msgstr "& [" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Slår autentisering av" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Brukernavn for Red Hat brukerstøtte" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" +-msgstr "" ++msgstr "Passord for Red Hat brukerstøtte. Du blir spurt hvis det ikke oppgis" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" +-msgstr "" ++msgstr "Passord:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Kan ikke fortsette uten passord\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -550,68 +564,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Ukjent filtype: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -635,7 +649,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -645,10 +660,15 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +-msgstr "" ++msgstr "Kan ikke opprette midlertidig fil «%s»" + + #: ../src/lib/ignored_problems.c:250 + #, c-format +@@ -695,7 +715,7 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "Analyserer kjernedump «%s»" + + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format +@@ -814,11 +834,11 @@ msgstr "" + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" +-msgstr "" ++msgstr "Feil: %s" + + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" +-msgstr "Avslutt med brukerkommando" ++msgstr "Avslutter med brukerkommando" + + #: ../src/plugins/abrt-action-install-debuginfo.in:88 + #, c-format +@@ -868,6 +888,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1087,69 +1136,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1585,11 +1634,11 @@ msgstr "" + + #: ../src/plugins/https-utils.c:220 + msgid "Failed to enable SSL3." +-msgstr "" ++msgstr "Klarte ikke å slå på SSL3." + + #: ../src/plugins/https-utils.c:222 + msgid "Failed to enable TLS." +-msgstr "" ++msgstr "Klarte ikke å slå på TLS." + + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +@@ -1598,7 +1647,7 @@ msgstr "" + #: ../src/plugins/https-utils.c:233 + #, c-format + msgid "Can't connect to '%s'" +-msgstr "" ++msgstr "Kan ikke koble til «%s»" + + #: ../src/plugins/https-utils.c:241 + msgid "Failed to set certificate hook." +@@ -1619,7 +1668,7 @@ msgstr "" + + #: ../src/plugins/https-utils.c:267 + msgid "Failed to close SSL socket." +-msgstr "Klarte ikke å lukke SSL-plugg." ++msgstr "Klarte ikke å lukke SSL-kobling." + + #: ../src/plugins/https-utils.c:332 + #, c-format +@@ -1701,71 +1750,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Vis detaljert rapport" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1773,47 +1828,52 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" ++msgstr "Sletter «%s»" ++ ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" + msgstr "" + + #: ../src/cli/process.c:64 +@@ -1824,21 +1884,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" +-msgstr "" ++msgstr "Rapporterer «%s»" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" +-msgstr "" ++msgstr "Trykk linjeskift for neste problem:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +@@ -1922,8 +1982,8 @@ msgstr "" + + #: ../src/plugins/post_report.xml.in.h:2 + msgid "Executed after the reporting is finished" +-msgstr "" ++msgstr "Kjøres etter at rapporteringen er ferdig" + + #: ../src/plugins/post_report.xml.in.h:3 + msgid "Used for updating of the databases" +-msgstr "" ++msgstr "Brukes til å oppdatere databasene" +diff --git a/po/nds.po b/po/nds.po +index fcc34a8..e3c2360 100644 +--- a/po/nds.po ++++ b/po/nds.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/nds/)\n" + "Language: nds\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -302,14 +302,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -320,90 +320,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -465,73 +475,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -543,68 +554,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -628,7 +639,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -638,6 +650,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -861,6 +878,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1080,69 +1126,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1691,71 +1737,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1763,49 +1815,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1814,21 +1871,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/ne.po b/po/ne.po +index 68ac458..fa41a2d 100644 +--- a/po/ne.po ++++ b/po/ne.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/ne/)\n" + "Language: ne\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/nl.po b/po/nl.po +index 6fab281..d80a0e9 100644 +--- a/po/nl.po ++++ b/po/nl.po +@@ -6,21 +6,22 @@ + # Geert Warrink , 2014 + # Jiří Moskovčák , 2011 + # Richard E. van der Luit , 2012 ++# Geert Warrink , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-12-12 02:35-0500\n" ++"PO-Revision-Date: 2015-06-25 11:45-0400\n" + "Last-Translator: Geert Warrink \n" + "Language-Team: Dutch (http://www.transifex.com/projects/p/fedora-abrt/" + "language/nl/)\n" + "Language: nl\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -60,7 +61,7 @@ msgstr "Kan niet verbinden met NetworkManager via DBus: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Kan de netwerkstatus via NetworkManager niet bepalen: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan '%s' niet claimen" +@@ -349,7 +350,7 @@ msgstr "Over" + msgid "Quit" + msgstr "Verlaten" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -359,7 +360,7 @@ msgstr "" + "\n" + "Raadpleeg pakketdatabase en sla pakket- en componentnaam op" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -370,80 +371,92 @@ msgstr "" + msgid "Problem directory" + msgstr "Probleemmap" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Configuratiebestand" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [opties]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + 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:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Loggen naar syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Voeg programmanamen toe aan de log" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Onbekende fout" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' is geen geldige probleemmap" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "'%s' element kan niet veranderd worden" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Niet geauthoriseerd" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Krijg geen toegang tot het probleem om het te veranderen" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Veranderen van mapeigenaar mislukte. Controleer systeemlogs voor meer " + "details. " + +-#: ../src/dbus/abrt-dbus.c:559 ++# translation auto-copied from project abrt, version master, document abrt, author Geert Warrink ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "Krijg geen toegang tot het probleem om te lezen" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' is geen geldige element naam" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Kan grootte van '%s' niet verkrijgen" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "Er is geen probleemruimte meer" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Kan het element '%s' niet verwijderen uit de probleemmap '%s'" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++# translation auto-copied from project abrt, version master, document abrt, author Geert Warrink ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "Krijg geen toegang tot het probleem" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -452,12 +465,12 @@ msgstr "" + "De naam '%s' is verloren gegaan, controleer of er geen andere service draait " + "die eigenaar is van de naam.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Afsluiten na NUM seconden van inactiviteit" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Dit programma moet door root worden uitgevoerd" + +@@ -533,74 +546,76 @@ msgstr "Aantal gelijktijdige werkers. Standaard is " + msgid "Maximal cache size in MiB. Default is " + msgstr "Maximale cachegrootte in MiB. Standaard is " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Zet de authenticatie uit" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Red Hat Support gebruikersnaam" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" ++"Red Hat Support wachtwoord, als deze niet opgegeven wordt, zal een prompt " ++"gegeven worden" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "uReport SSL certificaatpaden of certificaattype" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "Je moet voor --password ook --username specificeren" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "Je kunt --username of --certificate gebruiken" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "Je kunt --username of --anonymous gebruiken" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "Je kunt --anonymous of --certificate gebruiken" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "Ongeldig aantal argumenten" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Onbekende optiewaarde: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" +-msgstr "" ++msgstr "Wachtwoord:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Kan niet verdergaan zonder wachtwoord\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "Automatisch rapporteren met HTTP authenticatie" + +-#: ../src/daemon/abrt-auto-reporting.c:349 +-#, fuzzy ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" +-msgstr "Stilzwijgend verkort rapporteren" ++msgstr "Automatisch rapporteren met SSL Cliënt authenticatie" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "Automatisch anoniem rapporteren" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -620,68 +635,68 @@ msgstr "" + " UPLOAD_DIR - Map waarin opgestuurde archieven opgeslagen worden\n" + " FILENAME - Bestandsnaam van opgestuurde archief\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Geen map: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Overslaan: '{0}' (begint met een slash)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Overslaan: '{0}' (begint met een punt)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Overslaan: '{0}' (bevat ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Overslaan: '{0}' (bevat een spatie)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Overslaan: '{0}' (bevat een tab)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Kan niet map niet veranderen naar '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Onbekend bestandstype: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Kan geen werkmap aanmaken in '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Kan '{0}' niet verplaatsen naar '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Kan '{0}' niet kopieren naar '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Verificatiefout op '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Uitpakken van '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Kan '{0}' map niet aanmaken" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Kan '{0}' niet uitpakken" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' is met succes verwerkt" + +@@ -705,7 +720,8 @@ msgstr "Kan niet chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Verwijderen probleemmap mislukt: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Kan geen probleemdata verkrijgen van abrt-dbus: %s" +@@ -715,6 +731,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" + ++# translation auto-copied from project abrt, version master, document abrt, author Geert Warrink ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "Kan met abrt-dbus niet testen of het element bestaat: %s" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -988,6 +1010,35 @@ msgstr "Ontbrekend debuginfo-bestand: {0}" + msgid "All debuginfo files are available" + msgstr "Alle debuginfo-bestanden zijn beschikbaar" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1230,7 +1281,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "Aangetaste modules: %s" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1240,53 +1291,53 @@ msgstr "" + "\n" + "Extraheer oops uit BESTAND (of standaard input)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + 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:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "Sla de geextraheerde informatie op in PROBLEEM" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Maak de probleemmap leesbaar voor iedereen" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + 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:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "Print zoekstring(s) naar stdout en sluit af" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "Compileren van regex mislukte" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + 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:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "In slaap voor %d seconden" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1296,11 +1347,11 @@ msgstr "" + "\n" + "Extraheer Xorg crash van FILE (of standaard input)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Print vond crashdata bij standaard output" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "Maak probleem map aan in MAP voor elke gevonden crash" + +@@ -1900,44 +1951,50 @@ msgstr "Print gevonden oopses" + msgid "Delete files with found oopses" + msgstr "Verwijder bestanden met gevonden oopses" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identificeert meer dan een probleemmap" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Gebruik: abrt-cli [--version] COMMANDO [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Toon problemen [in MAPpen]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Verwijder probleemmap DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyseer en rapporteer probleemdata in DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Print informatie over DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Print de telling van de recente crashes" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Verwerken van meerdere problemen" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Zie 'abrt-cli COMMANDO --help' voor meer informatie" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -1945,31 +2002,32 @@ msgstr "" + "%sVoer 'abrt-cli report %s' uit voor het aanmaken van een case in Red Hat " + "Customer Portal\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++# translation auto-copied from project abrt, version master, document abrt, author Geert Warrink ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [opties]" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "Toon alleen niet-gerapporteerde problemen" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Toon gedetailleerd rapport" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + 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:192 ++#: ../src/cli/list.c:186 + 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:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1981,51 +2039,57 @@ msgstr "" + "als een gebruiker met root rechten 'abrt-auto-reporting enabled' uit te " + "voeren.\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "Tekst groter dan dit zal verkort getoond worden" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Geen probleemmap '%s' bekend" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [MAP]..." ++# translation auto-copied from project abrt, version master, document abrt, author Geert Warrink ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& status" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Print alleen de probleem telling zonder een boodschap" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Print alleen de problemen recenter is dan opgegeven tijdstempel" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT heef %u probleem(problemen) ontdekt. Voor meer info voer je uit: abrt-" + "cli list%s\n" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Verwijderen van '%s'" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [opties] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Verwijder PROBLEM_DIR na het rapporteren" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Verwijderen van '%s'" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Acties: remove(rm), info(i), skip(s):" +@@ -2034,23 +2098,23 @@ msgstr "Acties: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Acties: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Rapporteren van '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Duw voor het volgende probleem op ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Zonder het --since argument, wordt over alle gedetecteerde problemen " + "geitereerd." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Selecteert alleen problemen die ontdekt zijn na tijdstempel" + +diff --git a/po/nn.po b/po/nn.po +index 00d6faa..eb39619 100644 +--- a/po/nn.po ++++ b/po/nn.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "abrt/language/nn/)\n" + "Language: nn\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/nso.po b/po/nso.po +index f004316..26e7803 100644 +--- a/po/nso.po ++++ b/po/nso.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "abrt/language/nso/)\n" + "Language: nso\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/or.po b/po/or.po +index 83ab060..0a11baf 100644 +--- a/po/or.po ++++ b/po/or.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "language/or/)\n" + "Language: or\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -62,7 +62,7 @@ msgstr "NetworkManager ସହିତ DBus ଉପରେ ସଂଯୋଗ କରି + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager ସହାୟତାରେ ନେଟୱର୍କ ସ୍ଥିତି ନିର୍ଦ୍ଧାରଣ କରିପାରିବେ ନାହିଁ: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ର ମାଲିକତ୍ତ୍ୱ ନେଇ ପାରିବେ ନାହିଁ" +@@ -348,7 +348,7 @@ msgstr "ବିବରଣୀ" + msgid "Quit" + msgstr "ବିଦାୟ ନିଅନ୍ତୁ" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -358,7 +358,7 @@ msgstr "" + "\n" + "ପ୍ୟାକେଜ ତଥ୍ୟାଧାରକୁ ପଚାରନ୍ତୁ ଏବଂ ପ୍ୟାକେଜ ଏବଂ ଉପାଦାନ ନାମକୁ ସଂରକ୍ଷଣ କରନ୍ତୁ" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -369,79 +369,89 @@ msgstr "" + msgid "Problem directory" + msgstr "ସମସ୍ଯାବହୁଳ ଡିରେକ୍ଟୋରୀ" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "କନଫିଗରେସନ ଫାଇଲ" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [ବିକଳ୍ପଗୁଡିକ]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "NUM କୁ କ୍ଲାଏଣ୍ଟ uid ଭାବରେ ବ୍ୟବହାର କରନ୍ତୁ" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "syslog ପାଇଁ ଲଗ" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "ଲଗରେ ପ୍ରଗ୍ରାମ ନାମଗୁଡ଼ିକୁ ଯୋଗ କରନ୍ତୁ" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "ଅଜଣା ତ୍ରୁଟି" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ସମସ୍ୟା ଡ଼ିରେକ୍ଟୋରୀ ନୁହଁ" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "କ୍ଷମତା ସମ୍ପନ୍ନ ନୁହେଁ" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "ପରିବର୍ତ୍ତନ ପାଇଁ ସମସ୍ୟାକୁ ଅଭିଗମ୍ୟ କରିପାରିବେ ନାହିଁ" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chowning ଡିରେକ୍ଟୋରୀ ବିଫଳ ହୋଇଛି। ଅଧିକ ବିବରଣୀ ପାଇଁ ତନ୍ତ୍ର ଲଗ ଯାଞ୍ଚ କରନ୍ତୁ।" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' ଟି ଗୋଟିଏ ବୈଧ ଉପାଦାନ ନାମ ନୁହଁ" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' ର ଆକାର ପାଇବେ ନାହିଁ" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "କୌଣସି ସମସ୍ୟା ସ୍ଥାନ ନାହିଁ" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "ଉପାଦାନ '%s' କୁ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ '%s' ରୁ ଅପସାରଣ କରିପାରିବେ ନାହିଁ" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -450,12 +460,12 @@ msgstr "" + "'%s' ନାମଟି ହଜିଯାଇଛି, ସେହି ନାମରେ କୌଣସି ସର୍ଭିସ ଚାଲୁଛି କି ନାହିଁ ଦୟାକରି ଯାଞ୍ଚ " + "କରନ୍ତୁ।\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM ସେକଣ୍ଡ ନିଷ୍କ୍ରିୟ ହେବା ପରେ ପ୍ରସ୍ଥାନ କରନ୍ତୁ" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ଏହି ପ୍ରଗ୍ରାମକୁ ମୂଖ୍ଯ ଚାଳକ ଭାବରେ ଚଲାଇବା ଉଚିତ।" + +@@ -532,75 +542,76 @@ msgstr "ସହକାରୀ କର୍ମଚାରୀ ସଂଖ୍ୟା। ପୂ + msgid "Maximal cache size in MiB. Default is " + msgstr "ସର୍ବାଧିକ କ୍ୟାଶେ ଆକାର MiB ରେ। ପୂର୍ବନିର୍ଦ୍ଧାରିତଟି ହେଉଛି" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "ବୈଧିକରଣକୁ ଅଫ୍‌ କରନ୍ତୁ" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Red Hat ସହାୟତା ବ୍ୟବହାରକାରୀ ନାମ" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat ସହାୟତା ପ୍ରବେଶ ସଂକେତ, ଯଦି ଦିଆଯାଇ ନାହିଁ, ତେବେ ଏହା ପାଇଁ ଏକ ପ୍ରମ୍ପ୍‌ଟ୍ " + "ଦିଆଯିବ" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL ପ୍ରମାଣପତ୍ର ପଥ କିମ୍ବା ପ୍ରମାଣପତ୍ର ପ୍ରକାର" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "ଆପଣଙ୍କୁ --password ପାଇଁ --username ମଧ୍ଯ ଉଲ୍ଲେଖ କରିବା ଆବଶ୍ୟକ" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "ଆପଣ --username କିମ୍ବା --certificate ବ୍ୟବହାର କରିପାରିବେ" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "ଆପଣ --username କିମ୍ବା --anonymous ବ୍ୟବହାର କରିପାରିବେ" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "ଆପଣ --anonymous କିମ୍ବା --certificate ବ୍ୟବହାର କରିପାରିବେ" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "ଅବୈଧ ସଂଖ୍ୟକ ସ୍ୱତନ୍ତ୍ରଚର" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ଅଜଣା ବିକଳ୍ପ ମୂଲ୍ୟ: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "ପ୍ରବେଶ ସଙ୍କେତ:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "ପ୍ରବେଶ ସଂକେତ ବିନା ଆଗକୁ ବଢ଼ିପାରିବେ ନାହିଁ \n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବାକୁ ବୈଧିକୃତ କରିଛି" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL କ୍ଲାଏଣ୍ଟ ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବାକୁ ବୈଧିକୃତ କରିଛି" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "anonymous ସ୍ୱୟଂଚାଳିତ ଭାବରେ ଖବର କରିବା" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -619,68 +630,68 @@ msgstr "" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ଗୋଟିଏ ଡିରେକ୍ଟୋରୀ ନୁହଁ: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}' (ସ୍ଲାଶ ସହିତ ଆରମ୍ଭ ହୋଇଥାଏ)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}' (ଡଟ୍‌ ସହିତ ଆରମ୍ଭ ହୋଇଥାଏ)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଧାରଣ କରିଥାଏ ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଖାଲିସ୍ଥାନ ଧାରଣ କରିଥାଏ )" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "ଏଡ଼ାଇ ଯାଉଛି: '{0}'(ଟ୍ୟାବ୍‌ ଧାରଣ କରିଥାଏ )" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "ଡିରୋକ୍ଟୋରୀକୁ '{0}' ଭାବରେ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "ଅଜଣା ଫାଇଲ ପ୍ରକାର: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' ରେ କାର୍ଯ୍ୟକାରୀ ଡିରେକ୍ଟୋରୀ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' କୁ '{1}' କୁ ଘୁଞ୍ଚାଇପାରିବେ ନାହିଁ" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' କୁ '{1}' କୁ ନକଲ କରିପାରିବେ ନାହିଁ" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' ରେ ଯାଞ୍ଚ ତୃଟି" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' କୁ ଖୋଲୁଅଛି" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' ଡିରେକ୍ଟୋରୀ ସୃଷ୍ଟି କରିପାରିବେ ନାହିଁ" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' କୁ ଖୋଲିପାରିବେ ନାହିଁ" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' କୁ ସଫଳତାର ସହିତ କାର୍ଯ୍ୟକାରୀ ହୋଇଛି" + +@@ -704,7 +715,8 @@ msgstr "chown '%s' କରିପାରିବେ ନାହିଁ: %s" + msgid "Deleting problem directory failed: %s" + msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ଅପସାରଣ ବିଫଳ ହୋଇଛି: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତଥ୍ୟ ପାଇପାରିବେ ନାହିଁ: %s" +@@ -714,6 +726,11 @@ msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତଥ୍ୟ ପାଇପାରି + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ରୁ ସମସ୍ୟା ତାଲିକା ପାଇପାରିବେ ନାହିଁ: %s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -991,6 +1008,35 @@ msgstr "ଅନୁପସ୍ଥିତ ତ୍ରୁଟିନିବାରଣ ଫା + msgid "All debuginfo files are available" + msgstr "ସମସ୍ତ ତ୍ରୁଟିନିବାରଣ ଫାଇଲଗୁଡ଼ିକ ଉପଲବ୍ଧ" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1234,7 +1280,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr " ଦୂଷିତ ମଡ୍ୟୁଲଗୁଡ଼ିକ: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1244,53 +1290,53 @@ msgstr "" + "\n" + "ଫାଇଲରୁ oops ବାହାର କରନ୍ତୁ (କିମ୍ବା ମାନକ ନିବେଶ)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + "DIR ରେ ମିଳିଥିବା ପ୍ରତ୍ୟେକ oops ପାଇଁ ନୂତନ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣ କରନ୍ତୁ" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d ଡମ୍ପ ଅବସ୍ଥାନ ପରି ସମାନ, ଡମ୍ପ ଅବସ୍ଥାନକୁ abrt.conf ରେ ଉଲ୍ଲେଖ କରାଯାଇ ନାହିଁ" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "ବାହାର କରାଯାଇଥିବା ସୂଚନାକୁ ସମସ୍ୟାରେ ସଂରକ୍ଷଣ କରନ୍ତୁ" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀକୁ ବିଶ୍ୱ ପଠନଯୋଗ୍ୟ କରନ୍ତୁ" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣକୁ ପ୍ରତି ସେକେଣ୍ଡରେ 1କୁ ତ୍ୱରିତ କରନ୍ତୁ" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout ରେ ସନ୍ଧାନ ବାକ୍ୟଖଣ୍ଡ(ଗୁଡ଼ିକୁ) ମୁଦ୍ରଣ କରନ୍ତୁ ଏବଂ ପ୍ରସ୍ଥାନ କରନ୍ତୁ" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "regex କୁ ସଙ୍କଳନ କରିବାରେ ବିଫଳ" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "ଏହି ସମସ୍ୟାକୁ ଅଦ୍ୟତନ କରିପାରିବେ ନାହିଁ: ଗୋଟିଏରୁ ଅଧିକ oops ମିଳିଛି" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d ସେକେଣ୍ଡ ପାଇଁ ସୁପ୍ତ ଅଛି" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1300,11 +1346,11 @@ msgstr "" + "\n" + "Xorg ନଷ୍ଟକୁ FILE (ଅଥବା ମାନକ ନିବେଶ) ରୁ ବାହାର କରନ୍ତୁ" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "ମାନକ ଫଳାଫଳ ଉପରେ ମୁଦ୍ରଣୀ ନଷ୍ଟ ତଥ୍ୟ ପାଇଛି" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "ମିଳିଥିବା ପ୍ରତ୍ୟେକ ନଷ୍ଟ ବିବରଣୀ ପାଇଁ DIR ରେ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନିର୍ମାଣ କରନ୍ତୁ" +@@ -1903,44 +1949,50 @@ msgstr "ମୁଦ୍ରଣୀ oopses ପାଇଛି" + msgid "Delete files with found oopses" + msgstr "ମିଳିଥିବା oopses ସହିତ ଫାଇଲଗୁଡ଼ିକୁ ଅପସାରଣ କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ଗୋଟିଏରୁ ଅଧିକ ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ଚିହ୍ନିଟ କରିଛି" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ବ୍ୟବହାର ବିଧି: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "ତାଲିକା ସମସ୍ୟା [DIRs ରେ]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "ସମସ୍ଯା ଡିରେକ୍ଟୋରୀ DIRରୁ ଫାଇଲଗୁଡ଼ିକୁ ବାହାର କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR ରେ ସମସ୍ୟା ତଥ୍ୟକୁ ବିଶ୍ଳେଷଣ କରନ୍ତୁ ଏବଂ ଖବର କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR ବିଷୟରେ ସୂଚନାକୁ ମୁଦ୍ରଣ କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "ନିକଟରେ ହୋଇଥିବା ନଷ୍ଟର ସଂଖ୍ୟା ମୁଦ୍ରଣ କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "ଏକାଧିକ ସମସ୍ୟାଗୁଡ଼ିକୁ କାର୍ଯ୍ୟକାରୀ କରନ୍ତୁ" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ଅଧିକ ସୂଚନା ପାଇଁ 'abrt-cli COMMAND --help' କୁ ଦେଖନ୍ତୁ" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -1948,29 +2000,29 @@ msgstr "" + "Red Hat ଗ୍ରାହକ ପୃଷ୍ଠାରେ ଏକ ସ୍ଥିତିକୁ ଦର୍ଶାଇବା ପାଇଁ %sRun 'abrt-cli report " + "%s'\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "କେବଳ ଖବର କରାଯାଇନଥିବା ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "ବିସ୍ତୃତ ବିବରଣୀ ଦର୍ଶାନ୍ତୁ" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟସୀମାର ନିକଟବର୍ତ୍ତୀ ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟସୀମା ଠାରୁ ପୁରୁଣା ସମସ୍ୟାଗୁଡ଼ିକୁ ତାଲିକାଭୁକ୍ତ କରନ୍ତୁ" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1981,51 +2033,56 @@ msgstr "" + "କୁ ନ୍ୟସ୍ତ କରି\n" + "ଏହାକୁ ରୁଟ ଭାବରେ ସକ୍ରିୟ କରନ୍ତୁ\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "ଏହାଠାରୁ ବଡ଼ ପାଠ୍ୟକୁ ସଂକ୍ଷିପ୍ତରେ ଦର୍ଶାଯିବ" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "ଏପରି କୌଣସି ସମସ୍ୟା ଡିରେକ୍ଟୋରୀ ନାହିଁ '%s'" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& ସ୍ଥିତି [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "କୌଣସି ସନ୍ଦେଶ ବିନା କେବଳ ସମସ୍ୟା ସଂଖ୍ୟା ମୁଦ୍ରଣ କରନ୍ତୁ" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "କେବଳ ନିର୍ଦ୍ଦିଷ୍ଟ ସମୟ ସୀମା ନିକଟବର୍ତ୍ତୀ ସମସ୍ୟାଗୁଡ଼ିକୁ ମୁଦ୍ରଣ କରନ୍ତୁ" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' କୁ ଅପସାରଣ କରୁଅଛି" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& ବିବରଣୀ [options] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "ଖବର କରିସାରିବା ପରେ PROBLEM_DIR କୁ ବାହାର କରନ୍ତୁ" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' କୁ ଅପସାରଣ କରୁଅଛି" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "କାର୍ଯ୍ୟ: (rm), info(i), skip(s) କୁ କାଢ଼ନ୍ତୁ:" +@@ -2034,22 +2091,22 @@ msgstr "କାର୍ଯ୍ୟ: (rm), info(i), skip(s) କୁ କାଢ଼ନ୍ + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "କାର୍ଯ୍ୟ: (rm),report(e), info(i), skip(s) କୁ କାଢ଼ନ୍ତୁ:" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' କୁ ଖବର କରା ସରିଛି" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "ପରବର୍ତ୍ତୀ ସମସ୍ୟା ପାଇଁ ENTER ଦବାନ୍ତୁ:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since ସ୍ୱତନ୍ତ୍ରଚର ବିନା, ସମସ୍ତ ଚିହ୍ନଟ ସମସ୍ୟାଗୁଡ଼ିକ ଉପରେ ବିଶ୍ଳେଷଣ କରନ୍ତୁ।" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "କେବଳ timestamp ପରେ ଥିବା ସମସ୍ୟାଗୁଡ଼ିକୁ ବାଛନ୍ତୁ" + +diff --git a/po/pa.po b/po/pa.po +index 9dbd0bc..a9d27d2 100644 +--- a/po/pa.po ++++ b/po/pa.po +@@ -10,7 +10,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -20,7 +20,7 @@ msgstr "" + "abrt/language/pa/)\n" + "Language: pa\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -60,7 +60,7 @@ msgstr "ਨੈੱਟਵਰਕਮੈਨੇਜਰ ਨਾਲ DBus ਤੇ ਕੁਨ + msgid "Can't determine network status via NetworkManager: %s" + msgstr "ਨੈੱਟਵਰਕ-ਮੈਨੇਜਰ ਰਾਹੀਂ ਨੈੱਟਵਰਕ ਹਾਲਤ ਪਤਾ ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' ਦਾ ਮਾਲਕ ਨਹੀਂ ਬਣ ਸਕਦਾ" +@@ -317,7 +317,7 @@ msgstr "ਬਾਰੇ" + msgid "Quit" + msgstr "ਨਿੱਕਲੋ" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -327,7 +327,7 @@ msgstr "" + "\n" + "ਕਿਊਰੀ ਪੈਕੇਜ ਡਾਟਾਬੇਸ ਅਤੇ ਪੈਕੇਜ ਸੰਭਾਲੋ ਅਤੇ ਕੰਪੋਨੈੱਟ ਨਾਂ" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -338,78 +338,88 @@ msgstr "" + msgid "Problem directory" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "ਸੰਰਚਨਾ ਫਾਇਲ" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [ਚੋਣਾਂ]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "NUM ਨੂੰ ਕਲਾਂਈਟ uid ਤੌਰ ਤੇ ਵਰਤੋ" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "syslog ਵਿੱਚ ਲਾਗ ਕਰੋ" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "ਸਮੱਸਿਆ ਨਾਂ ਲਾਗ ਵਿੱਚ ਜੋੜੋ" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "ਅਣਜਾਣੀ ਗਲਤੀ" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' ਠੀਕ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ਪਰਮਾਣਤ ਨਹੀਂ" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "ਸੁਧਾਰ ਲਈ ਸਮੱਸਿਆ ਨਹੀਂ ਵੇਖ ਸਕਦਾ" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "chowning ਡਾਇਰੈਕਟਰੀ ਅਸਫਲ ਹੋਈ। ਜਿਆਦਾ ਵੇਰਵਿਆਂ ਲਈ ਸਿਸਟਮ ਲਾੱਗ ਜਾਂਚੋ।" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' ਯੋਗ ਐਲੀਮੈਂਟ ਨਾਂ ਨਹੀਂ ਹੈ" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' ਦਾ ਆਕਾਰ ਪ੍ਰਾਪਤ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "ਕੋਈ ਸਮੱਸਿਆ ਸਪੇਸ ਨਹੀਂ ਬਚੀ" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "ਐਲੀਮੈਂਟ '%s' ਨੂੰ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ '%s' ਤੋਂ ਹਟਾ ਨਹੀਂ ਸਕਦਾ" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -418,12 +428,12 @@ msgstr "" + "ਨਾਂ '%s' ਗੁੰਮ ਗਿਆ ਹੈ, ਕਿਰਪਾ ਕਰਕੇ ਜਾਂਚੋ ਕਿ ਇਸ ਨਾਂ ਵਾਲਾ ਹੋਰ ਜੰਤਰ ਤਾਂ ਨਹੀਂ ਚੱਲ " + "ਰਿਹਾ।\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM ਸਕਿੰਟਾਂ ਦੀ ਕਾਰਵਾਈ ਤੋਂ ਬਾਅਦ ਬੰਦ ਕਰੋ" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ਇਹ ਪਰੋਗਰਾਮ ਪਰਬੰਧਕ(root) ਦੇ ਤੌਰ ਤੇ ਚਲਾਉਣਾ ਜਰੂਰੀ ਹੈ।" + +@@ -501,73 +511,74 @@ msgstr "ਕਨਕਰੈਂਟ ਵਰਕਰਾਂ ਦੀ ਗਿਣਤੀ। ਮ + msgid "Maximal cache size in MiB. Default is " + msgstr "ਵੱਧ ਤੋਂ ਵੱਧ ਕੈਚੇ ਆਕਾਰ MiB ਵਿੱਚ। ਮੂਲ ਹੈ" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "ਅਢੁਕਵੀਂ ਗਿਣਤੀ ਦੇ ਆਰਗੂਮੈਂਟ" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ਅਣਪਛਾਤਾ ਚੋਣ ਮੁੱਲ: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -579,68 +590,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -664,7 +675,8 @@ msgstr "chown '%s' ਨਹੀਂ ਕਰ ਸਕਿਆ: %s" + msgid "Deleting problem directory failed: %s" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਹਟਾਉਣ ਵਿੱਚ ਫੇਲ ਹੋਇਆ: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਡਾਟਾ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" +@@ -674,6 +686,11 @@ msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਡਾਟਾ ਨਹੀਂ ਲੈ + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus ਤੋਂ ਸਮੱਸਿਆ ਸੂਚੀ ਨਹੀਂ ਲੈ ਸਕਿਆ: %s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -945,6 +962,35 @@ msgstr "ਗੈਰ-ਮੌਜੂਦ debuginfo ਫਾਇਲ: {0}" + msgid "All debuginfo files are available" + msgstr "ਸਭ debuginfo ਫਾਇਲਾਂ ਉਪਲੱਬਧ ਹਨ" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1186,7 +1232,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "ਟੈਂਟਡ ਮੋਡੀਊਲ: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1196,51 +1242,51 @@ msgstr "" + "\n" + "FILE (ਜਾਂ ਆਦਰਸ਼ ਇੰਪੁਟ) ਤੋਂ oops ਅਲੱਗ ਕਰੋ" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "ਹਰੇਕ oops ਲਈ ਨਵੀਂ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਵਿੱਚ ਬਣਾਓ" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation ਵਾਂਗ, DumpLocation ਨੂੰ abrt.conf ਵਿੱਚ ਨਿਰਧਾਰਤ ਕੀਤਾ ਹੈ" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "ਅਲੱਗ ਕੀਤੀ ਹੋਈ ਜਾਣਕਾਰੀ PROBLEM ਵਿੱਚ ਸੰਭਾਲੋ" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ ਨੂੰ ਪੜ੍ਹਨਯੋਗ ਬਣਾਓ" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "1 ਪ੍ਰਤੀ ਸੈਕਿੰਡ ਨਾਲ ਥਰੌਟਲ ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀ ਬਣਾਉਣਾ " + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "ਖੋਜ ਸਤਰਾਂ ਨੂੰ stdout ਤੇ ਪ੍ਰਿੰਟ ਕਰੋ ਅਤੇ ਬਾਹਰ ਜਾਓ" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "ਮੁਸ਼ਕਿਲ ਨੂੰ ਅੱਪਡੇਟ ਨਹੀਂ ਕਰ ਸਕਦਾ: ਇੱਕ ਤੋਂ ਜਿਆਦਾ oops ਲੱਭੀਆਂ" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d ਸੈਕਿੰਡਾਂ ਲਈ ਸੌਂ ਰਿਹਾ" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1250,11 +1296,11 @@ msgstr "" + "\n" + "Xorg ਕਰੈਸ਼ ਨੂੰ FILE (ਜਾਂ ਸਟੈਂਡਰਡ ਇੰਪੁੱਟ) ਤੋਂ ਲਵੋ" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "ਮਿਲੇ ਕਰੈਸ਼ ਡਾਟੇ ਨੂੰ ਸਟੈਂਡਰਡ ਆਊਟਪੁੱਟ ਤੇ ਪ੍ਰਿੰਟ ਕਰੋ" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "ਹਰੇਕ ਕਰੈਸ਼ ਲਈ ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਵਿੱਚ ਬਣਾਓ" + +@@ -1841,73 +1887,79 @@ msgstr "ਲੱਭੀਆਂ ਹੋਈਆਂ oopses ਨੂੰ ਛਾਪੋ" + msgid "Delete files with found oopses" + msgstr "ਲੱਭੀਆਂ ਹੋਈਆਂ oopses ਵਾਲੀਆਂ ਫਾਈਲਾਂ ਮਿਟਾਓ" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ਇੱਕ ਤੋਂ ਜਿਆਦਾ ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀਆਂ ਪਛਾਣਦਾ ਹੈ" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "ਵਰਤੋਂ: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "ਸਮੱਸਿਆ ਡਾਇਰੈਕਟਰੀ DIR ਹਟਾਓ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR ਵਿੱਚ ਸਮੱਸਿਆ ਡਾਟੇ ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਰਿਪੋਰਟ ਕਰੋ" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR ਬਾਰੇ ਜਾਣਕਾਰੀ ਪ੍ਰਿੰਟ ਕਰੋ" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "ਹਾਲੀਆ ਹੋਏ ਕਰੈਸ਼ਾਂ ਦੀ ਗਿਣਤੀ ਛਾਪੋ" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "ਵਧੇਰੇ ਜਾਣਕਾਰੀ ਲਈ 'abrt-cli COMMAND --help' ਵੇਖੋ" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "ਸਿਰਫ ਨਾ ਸੂਚਿਤ ਕੀਤੀਆਂ ਮੁਸ਼ਕਲਾਂ ਹੀ ਸੂਚੀਬੱਧ ਕਰੋ" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "ਵਿਸਥਾਰ ਰਿਪੋਰਟ ਵੇਖਾਓ" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਸੱਜਰੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + "ਸਿਰਫ਼ ਦਰਸਾਈ ਗਈ ਸਮਾਂ-ਮੋਹਰ ਨਾਲੋਂ ਜਿਆਦਾ ਪੁਰਾਣੀਆਂ ਸਮੱਸਿਆਵਾਂ ਨੂੰ ਸੂਚੀਬੱਧ ਕਰੋ" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1918,51 +1970,56 @@ msgstr "" + "reporting enabled' ਨੂੰ\n" + "ਰੂਟ ਹੱਕ ਵਾਲੇ ਯੂਜਰ ਵਜੋਂ ਜਾਰੀ ਕਰ ਕੇ ਯੋਗ ਕਰਨ ਲਈ ਵਿਚਾਰੋ\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "ਇਸ ਤੋਂ ਵੱਡਾ ਪਾਠ ਸੰਖੇਪਿਤ ਕਰ ਦਿੱਤਾ ਜਾਵੇਗਾ" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "ਕੋਈ '%s' ਮੁਸ਼ਕਿਲ ਡਾਇਰੈਕਟਰੀ ਨਹੀਂ ਹੈ" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& ਹਾਲਾਤ [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "ਬਿਨਾਂ ਕਿਸੇ ਸੁਨੇਹੇ ਦੇ ਸਿਰਫ਼ ਮੁਸ਼ਕਿਲਾਂ ਦੀ ਗਿਣਤੀ ਛਾਪੋ" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "ਸਿਰਫ਼ ਸਮਾਂ-ਮੋਹਰ ਤੋਂ ਵੀ ਹਾਲੀਆ ਹੋਈਆਂ ਮੁਸ਼ਕਿਲਾਂ ਹੀ ਛਾਪੋ" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1971,21 +2028,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/pl.po b/po/pl.po +index 9dbea92..6eea53e 100644 +--- a/po/pl.po ++++ b/po/pl.po +@@ -5,22 +5,23 @@ + # Translators: + # Jiří Moskovčák , 2011 + # Piotr Drąg , 2014 ++# Piotr Drąg , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-12-12 09:01-0500\n" ++"PO-Revision-Date: 2015-07-14 07:15-0400\n" + "Last-Translator: Piotr Drąg \n" + "Language-Team: Polish (http://www.transifex.com/projects/p/fedora-abrt/" + "language/pl/)\n" + "Language: pl\n" + "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " + "|| n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -58,7 +59,7 @@ msgstr "Nie można połączyć z menedżerem sieci przez magistralę D-Bus: %s" + 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:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nie można zmienić właściciela \"%s\"" +@@ -347,7 +348,7 @@ msgstr "O programie" + msgid "Quit" + msgstr "Zakończ" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -357,7 +358,7 @@ msgstr "" + "\n" + "Odpytuje bazę danych pakietów i zapisuje nazwę pakietu i składnika" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -368,80 +369,92 @@ msgstr "" + msgid "Problem directory" + msgstr "Katalog problemu" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Plik konfiguracji" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [opcje]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + 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:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Przekazuje komunikaty do dziennika systemowego" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Dodaje nazwy programów do dziennika" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Nieznany błąd" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "\"%s\" nie jest prawidłowym katalogiem problemu" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "Nie można modyfikować elementu \"%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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Brak upoważnienia" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Nie można uzyskać dostępu do problemu, aby go zmodyfikować" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Zmiana właściciela katalogu się nie powiodła. W dziennikach systemu można " + "znaleźć więcej informacji." + +-#: ../src/dbus/abrt-dbus.c:559 ++# translation auto-copied from project abrt, version master, document abrt, author Piotr Drąg ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "Nie można uzyskać dostępu do problemu, aby go odczytać" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "\"%s\" nie jest prawidłową nazwą elementu" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Nie można uzyskać rozmiaru \"%s\"" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "Brak miejsca na problemy" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nie można usunąć elementu \"%s\" z katalogu problemów \"%s\"" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++# translation auto-copied from project abrt, version master, document abrt, author Piotr Drąg ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "Nie można uzyskać dostępu do problemu" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -450,12 +463,12 @@ msgstr "" + "Nazwa \"%s\" została utracona. Proszę sprawdzić, czy inna usługa będąca " + "właścicielem nazwy jest uruchomiona.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Kończy działanie po LICZBIE sekund nieaktywności" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Ten program musi być uruchamiany jako root." + +@@ -532,74 +545,76 @@ msgstr "Liczba jednocześnie działających wątków. Domyślnie wynosi" + 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:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Wyłącza uwierzytelnianie" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Nazwa użytkownika Red Hat Support" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" ++"Hasło Red Hat Support, jeśli nie podano, to użytkownik zostanie o nie " ++"zapytany" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "Ścieżki lub typ certyfikatu SSL uReport" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "Należy także podać --username dla opcji --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "Można użyć tylko --username lub --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "Można użyć tylko --username lub --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "Można użyć tylko --anonymous lub --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "Nieprawidłowa liczba parametrów" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Nieznana wartość opcji: \"%s\"\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" +-msgstr "" ++msgstr "Hasło:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Nie można kontynuować bez hasła\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "Automatyczne zgłaszanie uwierzytelnione przez HTTP" + +-#: ../src/daemon/abrt-auto-reporting.c:349 +-#, fuzzy ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" +-msgstr "Ciche skrócone zgłaszanie" ++msgstr "Automatyczne zgłaszanie uwierzytelnione przez klienta SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "anonimowe automatyczne zgłaszanie" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -620,68 +635,68 @@ msgstr "" + "archiwa\n" + " NAZWA_PLIKU - Nazwa pliku wysłanego archiwum\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Nie jest katalogiem: \"{0}\"" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Pomijanie: \"{0}\" (rozpoczyna się od ukośnika)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Pomijanie: \"{0}\" (rozpoczyna się od kropki)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Pomijanie: \"{0}\" (zawiera ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Pomijanie: \"{0}\" (zawiera spację)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Pomijanie: \"{0}\" (zawiera tabulację)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Nie można zmienić katalogu na \"{0}\"" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Nieznany typ pliku: \"{0}\"" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Nie można utworzyć katalogu roboczego w \"{0}\"" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Nie można przenieść \"{0}\" do \"{1}\"" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Nie można skopiować \"{0}\" do \"{1}\"" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Błąd sprawdzania w \"{0}\"" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Rozpakowywanie \"{0}\"" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Nie można utworzyć katalogu \"{0}\"" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Nie można rozpakować \"{0}\"" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "Pomyślnie przetworzono \"{0}\"" + +@@ -705,7 +720,8 @@ msgstr "Nie można zmienić właściciela \"%s\": %s" + msgid "Deleting problem directory failed: %s" + msgstr "Usunięcie katalogu problemu się nie powiodło: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Nie można uzyskać danych problemu z abrt-dbus: %s" +@@ -715,6 +731,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" + ++# translation auto-copied from project abrt, version master, document abrt, author Piotr Drąg ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "Nie można sprawdzić przez abrt-dbus, czy element istnieje: %s" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -992,6 +1014,40 @@ msgstr "Brak pliku debuginfo: {0}" + msgid "All debuginfo files are available" + msgstr "Wszystkie pliki debuginfo są dostępne" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++"& [-y] [-i PLIK_IDENTYFIKATORÓW_BUDOWANIA|-i -] [-e ŚCIEŻKA[:ŚCIEŻKA]...]\n" ++"\t[-r REPOZYTORIUM]\n" ++"\n" ++"Instaluje pakiety debuginfo dla wszystkich PLIKÓW_IDENTYFIKATORÓW_BUDOWANIA\n" ++"w systemowej pamięci podręcznej ABRT." ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "Nieinteraktywnie, odpowiada \"Tak\" na wszystkie pytania" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "- oznacza STANDARDOWE_WEJŚCIE, domyślnie: build_ids" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "Pobiera tylko podane pliki" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "Wzór używany podczas wyszukiwania repozytoriów, domyślnie: *debug*" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "Ignorowana opcja" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1236,7 +1292,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "Zanieczyszczone moduły: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1246,54 +1302,54 @@ msgstr "" + "\n" + "Wydobywa awarię z PLIKU (lub standardowego wejścia)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + 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:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "Zapisuje wydobytą informację w PROBLEMIE" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Ustawia katalog problemu jako do odczytu dla każdego" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + 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:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + 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:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "Skompilowanie wyrażenia regularnego się nie powiodło" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + 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:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Usypianie na %d sekund" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1303,11 +1359,11 @@ msgstr "" + "\n" + "Wydobywa awarię Xorg z PLIKU (lub standardowego wejścia)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Wyświetla odnalezione dane awarii w standardowym wyjściu" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Tworzy nowy katalog problemu w KATALOGU dla każdej odnalezionej awarii" +@@ -1906,45 +1962,53 @@ msgstr "Wyświetla odnalezione awarie" + msgid "Delete files with found oopses" + msgstr "Usuwa pliki z odnalezionymi awariami" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "\"%s\" określa więcej niż jeden katalog problemu" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Użycie: abrt-cli [--version] POLECENIE [KATALOG]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "Użycie: abrt-cli [--authenticate] [--version] POLECENIE [KATALOG]..." + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Wyświetla listę problemów [w KATALOGACH]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Usuwa KATALOG problemu" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analizuje i zgłasza dane problemu w KATALOGU" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Wyświetla informacje o KATALOGU" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Wyświetla liczbę ostatnich awarii" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Przetwarza wiele problemów" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++"Prywatne zgłoszenia są włączone, należy użyć \"abrt-cli -a POLECENIE\", aby " ++"uzyskać wykryte problemy." ++ ++#: ../src/cli/abrt-cli.c:164 + 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:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -1952,28 +2016,29 @@ msgstr "" + "%sWykonanie polecenia \"abrt-cli report %s\" utworzy zgłoszenie w Red Hat " + "Customer Portal\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [opcje] [KATALOG]..." ++# translation auto-copied from project abrt, version master, document abrt, author Piotr Drąg ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [opcje]" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "Wyświetla listę niezgłoszonych problemów" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Wyświetla szczegółowe zgłoszenie" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "Wyświetla tylko problemy nowsze niż podany czas" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "Wyświetla tylko problemy starsze niż podany czas" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1984,51 +2049,57 @@ msgstr "" + "jej przez wydanie polecenia\n" + "\"abrt-auto-reporting enabled\" jako użytkownik z uprawnieniami roota\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [opcje] KATALOG..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + 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:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Katalog problemu \"%s\" nie istnieje" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [KATALOG]..." ++# translation auto-copied from project abrt, version master, document abrt, author Piotr Drąg ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& status" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Wyświetla tylko liczbę awarii, bez żadnego komunikatu" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Wyświetla tylko problemy nowsze niż podany czas" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "Program ABRT wykrył %u problemy. Więcej informacji po wykonaniu polecenia: " + "abrt-cli list%s\n" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "Nie można odnaleźć problemu \"%s\"" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Usuwanie \"%s\"" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [opcje] KATALOG..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Usuwa KATALOG_PROBLEMU po zgłoszeniu" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Usuwanie \"%s\"" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Działania: usuń (rm), informacje (i), pomiń (s):" +@@ -2037,21 +2108,21 @@ msgstr "Działania: usuń (rm), informacje (i), pomiń (s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Działania: usuń (rm), zgłoś (e), informacje (i), pomiń (s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Zgłaszanie \"%s\"" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Aby przejść do następnego problemu, proszę nacisnąć klawisz Enter:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Bez parametru --since przejdzie przez wszystkie wykryte problemy." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Wybiera tylko problemy wykryte po podanym czasie" + +diff --git a/po/pt.po b/po/pt.po +index 81ea0da..bfddb92 100644 +--- a/po/pt.po ++++ b/po/pt.po +@@ -12,21 +12,23 @@ + # Pedro Marques Daniel , 2013 + # Ricardo Pinto , 2012 + # Rui Gouveia , 2011-2012 ++# Filipe Sarabando , 2015. #zanata ++# Jakub Filak , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"PO-Revision-Date: 2015-07-15 05:15-0400\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Portuguese (http://www.transifex.com/projects/p/fedora-abrt/" + "language/pt/)\n" + "Language: pt\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -66,7 +68,7 @@ msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + "Não é possível determinar o estado da rede através do Gestor de Rede: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Não é possível tomar posse de '%s'" +@@ -224,9 +226,10 @@ msgstr "" + msgid "Ask before stealing directory" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Filipe Sarabando + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Enviar automaticamente uReport" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +@@ -323,7 +326,7 @@ msgstr "Sobre o ..." + msgid "Quit" + msgstr "Sair" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -333,7 +336,7 @@ msgstr "" + "\n" + "Consultar 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/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -344,78 +347,88 @@ msgstr "" + msgid "Problem directory" + msgstr "Diretoria dos Problemas" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Ficheiro de Configuração" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [opções]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "Utilizar NUM como 'uid' do cliente" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Registar para syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Adicionar nomes de programa aos registos" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Erro desconhecido" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' não é um diretoria de problemas válida" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Não Autorizado" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Não é possível aceder ao problema para modificação" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' não é um nome de elemento válido" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Não é possível obter o tamanho do '%s'" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Não é possível apagar o elemento '%s' da diretoria de problemas '%s'" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -424,12 +437,12 @@ 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:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../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 inatividade" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa tem que ser executado como 'root'." + +@@ -497,73 +510,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -575,68 +589,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -660,7 +674,8 @@ msgstr "Não é possível fazer chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Falha ao apagar o directório de problema: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Não é possível obter dados do problema a partir do abrt-dbus: %s" +@@ -670,6 +685,11 @@ 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/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -907,6 +927,35 @@ msgstr "Ficheiro debuginfo em falta: {0}" + msgid "All debuginfo files are available" + msgstr "Todos os ficheiros debuginfo se encontram disponíveis" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1138,58 +1187,58 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Tornar o directório com problema visível a todos" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + 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:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1199,11 +1248,11 @@ msgstr "" + "\n" + "Extrair o Xorg crash do ficheiro FILE (ou entrada padrão)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Imprimir os dados do crash para o output padrão" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1572,7 +1621,7 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" +-"Escreve \"inseguro\" para permitir ligações inseguras <a href=\"https://" ++"Escreve \"insecure\" para permitir ligações inseguras <a href=\"https://" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(aviso)</a>" + +@@ -1793,71 +1842,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Utilização: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Remover directório de problema DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analisar e reportar problema em DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Apresentar informações sobre DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informação" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& lista [opções] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Mostrar relatório detalhado" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1865,49 +1920,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [opções] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1916,21 +1976,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/pt_BR.po b/po/pt_BR.po +index 6a4d2d7..8309f5e 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -22,21 +22,24 @@ + # Taylon Silmer , 2011 + # Teseu , 2011 + # Vitor Lobo Ramos , 2014 ++# Gcintra , 2015. #zanata ++# Jakub Filak , 2015. #zanata ++# Jonatas Z. de Vasconcellos , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-12-12 08:30-0500\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-07-18 11:44-0400\n" ++"Last-Translator: Gcintra \n" + "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" + "fedora-abrt/language/pt_BR/)\n" + "Language: pt-BR\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -83,7 +86,7 @@ msgid "Can't determine network status via NetworkManager: %s" + msgstr "Não foi possível determinar o status usando o NetworkManager: %s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Não foi possível obter propriedade de '%s'" +@@ -407,7 +410,7 @@ msgid "Quit" + msgstr "Sair" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -418,7 +421,7 @@ msgstr "" + "Analise o banco de dados do pacote e salve o pacote e nome do componente" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -430,95 +433,106 @@ msgid "Problem directory" + msgstr "Diretório do problema" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Arquivo de Configuração" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "Utilize o NUM como uid de cliente" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Log para o syslog" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Adicionar os nomes dos programas ao log" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Erro desconhecido" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' não é um diretório de problema válido" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "O '%s' não pode ser modificado" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Não Autorizado" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Não é possível acessar o problema para modificação" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Erro ao mudar o dono do diretório. Verifique os logs do sistema para mais " + "detalhes." + ++# translation auto-copied from project abrt, version master, document abrt, author Jonatas Z. de Vasconcellos ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "Não é possível acessar o problema para leitura" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' não é um nome válido de elemento" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Não foi possível obter o tamanho de '%s'" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "Nenhum problema de espaço." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Não é possível remover o elemento '%s' do diretório de problema '%s'" + ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "Não é possível acessar o problema " ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -528,13 +542,13 @@ msgstr "" + "nome não está em execução.\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Sai após os segundos NUM de inatividade" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa deve estar sendo executado como root." + +@@ -619,74 +633,76 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "Tamanho máximo de cache em MiB. O padrão é" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Desliga a Autenticação" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Nome do usuário do Red Hat Support" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" ++"Senha do Red Hat Support, caso não seja fornecida, será enviada uma " ++"solicitação " + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "Caminhos de certiifcado ou tipo de certificado do uReport SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "Você também precisa especificar --username para --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "Você pode utilizar --username ou --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "Você pode usar --username ou --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "Você pode usar --anonymous ou --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "Número de argumentos é inválido" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valor de opção desconhecida: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" +-msgstr "" ++msgstr "Senha:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Não foi possível continuar sem uma senha\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "Reportagem automática de HTTP autenticado" + +-#: ../src/daemon/abrt-auto-reporting.c:349 +-#, fuzzy ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" +-msgstr "Reportar resumidamente de maneira anônima" ++msgstr "Reportagem automática de SSL Client autenticado" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "Reportagem automática anônima" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -705,68 +721,68 @@ msgstr "" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Não é um diretório: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Pulando: '{0}' (começa com a barra)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Pulando: '{0}' (começa com o ponto)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Pulando: '{0}' (contém ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Pulando: '{0}' (contém espaço)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Pulando: '{0}' (contém aba)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Não foi possível modificar o diretóri para '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Tipo de arquivo desconhecido: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Não foi possível criar o diretório em funcionamento no '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Não foi possível mover '{0}' para '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Não foi possível copiar '{0}' para '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Erro de verificação no '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Desempacotando '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Não foi possível criar o diretório '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Não foi possível desempacotar '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' processado com sucesso" + +@@ -795,7 +811,8 @@ msgid "Deleting problem directory failed: %s" + msgstr "Remoção do diretório problema falhou: %s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Não foi possível obter dados de problemas do abrt-dbus: %s" +@@ -806,6 +823,11 @@ 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/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "Não foi possível testar se os elementos existem em abrt-dbus: %s" ++ + # translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -1104,6 +1126,41 @@ msgstr "Faltando arquivo debuginfo: {0}" + msgid "All debuginfo files are available" + msgstr "Todos os arquivos debuginfo estão disponíveis." + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Instal pacotes do debuginfo para todos os build-ids listados no " ++"BUILD_IDS_FILE para o cache do sistema\n" ++"ABRT." ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "Não interativo, assume-se que 'Sim' para todas as perguntas" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "- significa STDIN, padrão: build_ids" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "Baixar somente arquivos especificados" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "Modelo a utilizar quando buscar repos, padrão: *debug*" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "Opção ignorada" ++ + # translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" +@@ -1375,7 +1432,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "Módulos danificados: %s" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1386,7 +1443,7 @@ msgstr "" + "Extrai o oops de FILE (ou entrada padrão)" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Print found oopses on standard output" + msgstr "Exibir erros encontrados no resultado padrão" + +@@ -1394,50 +1451,50 @@ 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + 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" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "Salva a informação extraída em PROBLEM" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Tornar o diretório de problema mundial legível" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Alterna a criação de diretório do problema para 1 por segundo" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + 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:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "Falha ao compilar o regex" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "Não foi possível atualizar o problema: mais do que um oops encontrado" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Dormindo por %d segundos" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1448,12 +1505,12 @@ msgstr "" + "Extraia o travamento do Xorg doFILE (ou entrada padrão)" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Imprima dados de travamento encontrados na saída do padrão" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Criar diretório de problema no DIR para todos os travamentos encontrados" +@@ -1886,7 +1943,7 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" +-"Escrever \"inseguro\" para permitir conexão insegura <a href=\"https://" ++"Escrever \"insecure\" para permitir conexão insegura <a href=\"https://" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + +@@ -2151,83 +2208,91 @@ msgstr "Imprimir oopses encontrados" + msgid "Delete files with found oopses" + msgstr "Remover arquivos com os oopses encontrados" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' identifica mais do que um diretório de problema" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Uso: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "Uso: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Listar problemas [in DIRs]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Remover DIR de diretório de problema" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analisar e reportar dados do problema no DIR" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Imprimir informações sobre o DIR" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Mostrar a contagem das quebras recentes" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Processar problemas múltiplos" + ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++"Relatório Privado está habilitado, use o 'abrt-cli -a COMMAND' para obter " ++"problemas detectados." ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informações." + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" ++"%sExecutar 'abrt-cli report %s' para criar um caso no Red Hat Customer " ++"Portal\n" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& lista [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [opções]" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "Listar somente os problemas não reportados" + + # translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Exibir relatório detalhado" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Listar apenas problemas mais recentes que o carimbo de data e hora " + "especificado" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Listar apenas problemas mais recentes que o carimbo de data e hora " + "especificado" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2239,56 +2304,60 @@ msgstr "" + "previlégios root.\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "Texto maior do que este será exibido abreviado" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Não há tal diretório de problemas '%s'" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& status" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Mostrar apenas a contagem de problema sem mensagem" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Mostrar apenas problemas mais recentes que a marca de tempo especificada" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT detectou %u problema(s). Para mais informações execute: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "Não foi possível encontrar problema '%s'" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Removendo '%s'" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& relatório [opções] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Remover PROBLEM_DIR após relatar" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Removendo '%s'" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Ações: remover (rm), info(i), skip(s):" +@@ -2297,21 +2366,21 @@ msgstr "Ações: remover (rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Acões: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Reportando '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Para o próximo problema, pressione ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Sem o argumento --since, itera em todos os problemas detectados." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Seleciona somente problemas detectados após o timestamp" + +diff --git a/po/ro.po b/po/ro.po +index a00324d..b630cf1 100644 +--- a/po/ro.po ++++ b/po/ro.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "Language: ro\n" + "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=" + "0)))?2:1));\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -302,14 +302,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -320,90 +320,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -465,73 +475,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -543,68 +554,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -628,7 +639,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -638,6 +650,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -861,6 +878,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1080,69 +1126,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1691,71 +1737,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1763,49 +1815,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1814,21 +1871,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/ru.po b/po/ru.po +index 2668233..cd56d9a 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -12,23 +12,24 @@ + # Stanislav Hanzhin , 2011 + # Yulia , 2012,2014 + # Yuri Khabarov , 2011 ++# Igor Gorbounov , 2015. #zanata + # yuliya , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-06 08:47-0500\n" ++"PO-Revision-Date: 2015-07-20 08:46-0400\n" + "Last-Translator: yuliya \n" + "Language-Team: Russian (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ru/)\n" + "Language: ru\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -66,7 +67,7 @@ msgstr "Не удалось подключиться к NetworkManager чере + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager не смог определить статус сети: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не удается стать владельцем «%s»" +@@ -83,7 +84,7 @@ msgstr "Обнаружена неполадка" + #: ../src/applet/applet.c:419 + #, c-format + msgid "A problem in the %s package has been detected" +-msgstr "Обнаружена неполадка в пакете %s" ++msgstr "Обнаружена ошибка в пакете %s" + + #: ../src/applet/applet.c:429 + #, c-format +@@ -109,9 +110,9 @@ msgid "" + "\n" + "Do you want to continue?" + msgstr "" +-"Вы собираетесь отключить уведомления для определенной проблемы. " +-"Соответствующие всплывающие сообщения больше не будут появляться, но вы " +-"сможете создать отчет об ошибке в графическом режиме ABRT.\n" ++"Вы собираетесь отключить уведомления для определенной проблемы. Всплывающие " ++"сообщения больше не будут появляться, но вы сможете создать отчет в " ++"графическом окне ABRT.\n" + "\n" + "Продолжить?" + +@@ -122,7 +123,7 @@ msgstr "Предупреждение" + #: ../src/applet/applet.c:834 + msgid "" + "Notification area applet that notifies users about issues detected by ABRT" +-msgstr "Значок в области уведомления сообщает об обнаруженных сбоях" ++msgstr "Значок в области уведомлений сообщает об обнаруженных сбоях" + + #: ../src/applet/applet.c:850 + msgid "translator-credits" +@@ -145,7 +146,7 @@ msgstr "_О программе" + + #: ../src/applet/applet.c:930 + msgid "Problem detected" +-msgstr "Проблема обнаружена" ++msgstr "Обнаружена ошибка" + + #: ../src/applet/applet.c:980 + msgid "Ignore forever" +@@ -211,7 +212,7 @@ msgid "" + "Failed to open connection to session manager: '%s', notification may " + "reappear on the next login" + msgstr "" +-"Не удалось открыть соединение с менеджером сеанса: «%s», уведомление может " ++"Не удалось открыть соединение с менеджером сеанса: «%s». Уведомление может " + "появиться при следующем входе" + + #: ../src/applet/applet.c:1635 +@@ -222,11 +223,10 @@ msgid "" + msgstr "& [-v] [DIR]...\n" + "\n" + "Модуль оповещения о неполадках, обнаруженных ABRT\n" +-"\n" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "Спрашивать перед перехватом каталога" ++msgstr "Подтверждать перемещение каталога" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +@@ -248,9 +248,9 @@ msgid "" + "With this option disabled ABRT will upload the coredump without asking." + msgstr "" + "Файл дампа памяти нужен для создания трассировки стека. На эту операцию " +-"требуется достаточно много времени и места. ABRT предоставляет службу " +-"создания трассировки стека из предварительно загруженного дампа памяти. Если " +-"этот параметр выключен, ABRT будет отправлять дамп без подтверждения." ++"требуется достаточно много времени и места. ABRT предоставляет средства для " ++"трассировки стека вызовов из предварительно загруженного дампа памяти. Если " ++"параметр выключен, ABRT будет отправлять дамп без подтверждения." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" +@@ -271,7 +271,7 @@ msgid "" + "uReports are sent automatically immediately after problem detection." + msgstr "" + "uReport содержит краткое и полностью анонимное описание проблемы. ABRT " +-"использует отчеты uReport для быстрого обнаружения дубликатов. В стандартной " ++"использует отчеты uReport для быстрого поиска дубликатов. В стандартной " + "конфигурации uReport отправляется в начале процесса формирования отчетности. " + "Если этот параметр включен, отчеты uReport отправляются автоматически сразу " + "после обнаружения проблемы." +@@ -283,39 +283,37 @@ msgid "" + "You can always use the default problem browser to make complete report." + msgstr "" + "Если этот параметр включен, процесс создания отчета, запущенный нажатием " +-"кнопки «Отчет» во всплывающем сообщении о сбое, будет прерван после " +-"отправления отчета uReport. Для создания полного отчета можно " +-"воспользоваться стандартным средством просмотра проблем." ++"кнопки «Отчет» во всплывающем сообщении о сбое, ограничится отправкой отчета " ++"uReport. Полный отчет можно создать в окне просмотра обнаруженных ошибок." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" +-"Если этот параметр включен, ABRT не будет показывать уведомления о " +-"сообщенных проблемах. Действует, только если включен сокращенный формат " +-"отчетов." ++"Если этот параметр включен, ABRT не будет показывать уведомления об отправке " ++"отчетов. Действует, если включен сокращенный формат." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "Спрашивать перед выгрузкой дампа памяти" ++msgstr "Подтверждать передачу дампа памяти" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." + msgstr "" +-"Если этот параметр включен, ABRT будет создавать отчет об ошибке с " +-"ограниченным доступом, если обнаружена вероятность попадания в отчет " +-"конфиденциальных данных." ++"Если этот параметр включен, ABRT будет создавать отчет с ограниченным " ++"доступом, если обнаружена вероятность попадания в отчет конфиденциальных " ++"данных." + + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "Запросить доступ к закрытому билету с конфиденциальными данными" ++msgstr "Ограничение доступа к отчету" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "Уведомлять о неполных данных по проблеме" ++msgstr "Уведомлять о неполных данных" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" +@@ -323,9 +321,9 @@ msgid "" + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" +-"Обнаружены неполные данные об ошибках вследствие выключения компьютера или " +-"выхода пользователя из системы. С целью обеспечения содержательности отчетов " +-"ABRT не отправит отчет об этих ошибках." ++"Если обнаружены неполные данные об ошибках (вследствие выключения компьютера " ++"или выхода пользователя из системы), то в целях обеспечения информативности " ++"ABRT не позволит отправлять неполные отчеты." + + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +@@ -338,11 +336,11 @@ msgstr "По _умолчанию" + #: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "Конфигурация отчетов о сбоях" ++msgstr "Конфигурация отчетов об ошибках" + + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +-msgstr "О System Config ABRT" ++msgstr "О программе system-config-abrt" + + #: ../src/configuration-gui/main.c:105 + msgid "About" +@@ -352,7 +350,7 @@ msgstr "О программе" + msgid "Quit" + msgstr "Выход" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -360,9 +358,9 @@ msgid "" + msgstr "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +-"Запросить в базе данных и сохранить названия пакета и компонента" ++"Сделать запрос к базе данных и сохранить название пакета и компонента" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -373,78 +371,90 @@ msgstr "" + msgid "Problem directory" + msgstr "Каталог с данными сбоя" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Файл конфигурации" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [параметры]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "Использовать NUM как uid клиента" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Запись в журнал" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Добавить названия программ в журнал" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Неизвестная ошибка" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" +-msgstr "«%s» не является правильным каталогом для данных о сбое" ++msgstr "Недопустимый каталог с данными сбоя: «%s»" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Не разрешено" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Ошибка доступа к проблеме с целью ее изменения" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "Не удалось изменить владельца каталога. Проверьте журналы." + +-#: ../src/dbus/abrt-dbus.c:559 ++# translation auto-copied from project abrt, version master, document abrt, author Igor Gorbounov ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "Не удается получить доступ к данным сбоя для чтения" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "Недопустимое имя элемента: «%s»" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Не удалось определить размер «%s»." + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "Недостаточно места" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Ошибка удаления элемента «%s» из каталога «%s»" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++# translation auto-copied from project abrt, version master, document abrt, author Igor Gorbounov ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "Не удается получить доступ к данным сбоя" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -453,12 +463,12 @@ msgstr "" + "Имя «%s» было потеряно, проверьте, не работает ли другая служба, " + "использующая это имя.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Выйти после NUM секунд бездействия" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + "Эта программа должна запускаться от имени привелигированного пользователя." +@@ -471,8 +481,8 @@ msgid "" + "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 не позволит вам отправить отчет " + "об этой ошибке. Если у вас есть время, и вы хотите помочь разработчикам в их " + "усилиях разобраться с этим сбоем, связывайтесь с ними напрямую." +@@ -517,8 +527,8 @@ msgstr "" + "& [-vs] [-w НОМЕР] [-c МиБ] [КАТАЛОГ]\n" + "\n" + "\n" +-"Следит за указанным каналогом и распаковывает поступающие\n" +-"архивы в место, определенное в выражении DumpLocation в abrt.conf\n" ++"Следит за указанным каталогом и распаковывает поступающие\n" ++"архивы в место, определенное значением DumpLocation в abrt.conf\n" + "\n" + "Если КАТАЛОГ не определен, будет выбрано значение \n" + "WatchCrashdumpArchiveDir из abrt.conf" +@@ -535,75 +545,76 @@ msgstr "Число параллельных потоков обработки. + msgid "Maximal cache size in MiB. Default is " + msgstr "Максимальный размер кэша в МиБ. По умолчанию:" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "Отключает аутентификацию" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Имя пользователя в системе поддержки Red Hat" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Пароль доступа к системе поддержки Red Hat. Если не указан, будет предложено " + "его ввести вручную" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Путь к SSL-сертификату uReport или тип сертификата" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" +-msgstr "Если задан пароль, необходимо определить --username" ++msgstr "Если пароль задан, необходимо определить --username" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "Укажите --username или --certificate " + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "Укажите --username или --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "Укажите --anonymous или --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "Недопустимое число аргументов" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "Неизвестное значение параметра: «%s»\n" ++msgstr "Неизвестное значение: «%s»\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "Пароль:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "Для продолжения необходимо ввести пароль.\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "Автоматический отчет для HTTP-подключений" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "Автоматический отчет для SSL-подключений" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "Автоматический отчет для анонимных подключений" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -622,68 +633,68 @@ msgstr "" + " ПОЛУЧАТЕЛЬ - каталог, в котором будут размещаться полученные архивы\n" + " ФАЙЛ - имя файла отправляемого архива\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Не является каталогом: «{0}»." + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Пропускается: «{0}» (начинается с косой черты)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Пропускается: «{0}» (начинается с точки)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Пропускается: «{0}» (содержит ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Пропускается: «{0}» (содержит пробел)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Пропускается: «{0}» (содержит знак табуляции)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Не удалось изменить каталог на «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Неизвестный тип файла: «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Не удалось создать рабочий каталог в «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Не удалось переместить «{0}» в «{1}»" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Не удалось скопировать «{0}» в «{1}»" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Ошибка проверки «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Распаковка «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Не удалось создать каталог «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Не удалось распаковать «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "«{0}» обработан успешно" + +@@ -707,7 +718,8 @@ msgstr "Не удается сменить владельца «%s»: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Не удалось удалить каталог с данными о сбоях: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Не удается получить данные об ошибке от abrt-dbus: %s" +@@ -717,6 +729,12 @@ msgstr "Не удается получить данные об ошибке от + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Не удается получить список ошибок от abrt-dbus: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Igor Gorbounov ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "Не удается проверить, существует ли элемент, через abrt-dbus: %s" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -728,8 +746,8 @@ msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" +-"Ошибка записи в «%s». Не удалось удалить проблему «%s» из списка " +-"игнорируемых проблем «%s»." ++"Ошибка записи в «%s». Не удалось удалить «%s» из списка игнорируемых проблем " ++"«%s»." + + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 +@@ -990,6 +1008,41 @@ msgstr "Отсутствует файл debuginfo: {0}" + msgid "All debuginfo files are available" + msgstr "Все отладочные пакеты доступны" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Устанавливает пакеты debuginfo для всех build-id, перечисленных в файле " ++"BUILD_IDS_FILE, \n" ++"в системный кэш ABRT." ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "Неинтерактивный режим: автоматически отвечать «Да» на все вопросы" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "- означает STDIN, по умолчанию: build_ids" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "Загружать только заданные файлы" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "Шаблон для поиска репозиториев. По умолчанию: *debug*" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "Игнорируется" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1102,7 +1155,7 @@ msgstr "Сигнал, вызванный изменением размеров + #: ../src/plugins/abrt-gdb-exploitable:562 + #: ../src/plugins/abrt-gdb-exploitable:591 + msgid "Signal sent by alarm(N) expiration" +-msgstr "Сигнал по истечении " ++msgstr "Сигнал по завершении alarm(N) " + + #: ../src/plugins/abrt-gdb-exploitable:583 + msgid "Signal due to write to broken pipe" +@@ -1234,7 +1287,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "Поврежденные модули: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1244,51 +1297,51 @@ msgstr "" + "\n" + "Извлекать данные о сбоях из FILE (или стандартного ввода)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "Создавать каталог в DIR для каждого сбоя oops" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "То же, что и \"-d DumpLocation\", \"DumpLocation\" задается в abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "Сохранить извлеченную информацию в PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Открыть доступ чтения к каталогу сбоев" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Повторить создание каталога через 1 секунду" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "Вывести строку (строки) поиска в stdout и выйти" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "Не удалось скомпилировать регулярное выражение" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "Не удалось обновить проблему: найдено несколько ошибок" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Переход в режим ожидания на %d сек." + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1298,11 +1351,11 @@ msgstr "" + "\n" + "Извлекать данные о сбое Xorg из FILE (или стандартного ввода)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Вывести найденные данные о сбое в стандартный вывод" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "Создавать каталог в DIR для каждого сбоя" + +@@ -1410,7 +1463,7 @@ msgstr "Неизвестный пакет отправлен на обрабат + + #: ../src/plugins/abrt-retrace-client.c:603 + msgid "Preparing an archive to upload" +-msgstr "Подготовка архива к передаче" ++msgstr "Подготовка архива" + + #: ../src/plugins/abrt-retrace-client.c:616 + #, c-format +@@ -1418,8 +1471,8 @@ msgid "" + "The size of your archive is %lld bytes, but the retrace server only accepts " + "archives smaller or equal %lld bytes." + msgstr "" +-"Размер архива - %lld байт, но отслеживающий сервер принимает архивы размером " +-"не более %lld байт." ++"Размер архива составляет %lld байт, но отслеживающий сервер принимает архивы " ++"размером не более %lld байт." + + #: ../src/plugins/abrt-retrace-client.c:629 + #, c-format +@@ -1642,7 +1695,7 @@ msgid "" + "private data, if any." + msgstr "" + "Отправляет дамп памяти на сервер для генерации протокола сбоя. Достоинства: " +-"не требуется загружать debuginfo. База данных на остлеживающем сервер более " ++"не требуется загружать debuginfo. База данных на отслеживающем сервере более " + "подробная, поэтому сервер может создавать более точные отчёты. Недостатки: " + "отправляемый дамп содержит все данные сбойной программы, в том числе и " + "личные." +@@ -1896,45 +1949,53 @@ msgstr "Показать найденные сбои" + msgid "Delete files with found oopses" + msgstr "Удалить файлы с найденными сбоями" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "«%s» обнаружил несколько проблемных каталогов" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Формат: abrt-cli [--version] КОМАНДА [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "Формат: abrt-cli [--authenticate] [--version] КОМАНДА [DIR]..." + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Показать ошибки [в DIR]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Удалить каталог DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Анализировать и предоставить отчет по ошибкам в DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Вывод информации о DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Вывод числа недавних сбоев" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Обработка нескольких проблем" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++"Закрытые отчеты включены. Для получения списка обнаруженных сбоев выполните " ++"«abrt-cli -a КОМАНДА»." ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + "Для получения дополнительной информации выполните «abrt-cli КОМАНДА --help»" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -1942,28 +2003,29 @@ msgstr "" + "%Выполните «abrt-cli report %s», чтобы создать отчет на портале " + "пользователей Red Hat\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [параметры] [DIR]..." ++# translation auto-copied from project abrt, version master, document abrt, author Igor Gorbounov ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [параметры]" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "Показать ошибки, о которых еще не сообщалось" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Показать подробный отчёт" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "Дать список сбоев, обнаруженных после указанного момента времени" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "Дать список сбоев, обнаруженных до указанного момента времени" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1973,51 +2035,57 @@ msgstr "" + "Функции автоматического создания отчетов отключены. \n" + "Чтобы их включить, в режиме root выполните: abrt-auto-reporting enabled\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [параметры] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "Текст, длина которого превышает указанную, будет усечен" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Нет такого каталога: «%s»." + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [DIR]..." ++# translation auto-copied from project abrt, version master, document abrt, author Igor Gorbounov ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& status" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Вывод только числа сбоев" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Вывод сбоев, обнаруженных после указанного момента времени" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "Не удалось найти информацию об ошибке «%s" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Удаление «%s»" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [параметры] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Удалить PROBLEM_DIR после отправки отчета" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Удаление «%s»" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Действия: удалить (rm), информация (i), пропустить (s):" +@@ -2026,23 +2094,23 @@ msgstr "Действия: удалить (rm), информация (i), про + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Действия: удалить (rm), сообщить (e), информация (i), пропустить (s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Отчет по «%s»..." + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Для перехода к следующей проблеме нажмите ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Если аргумент --since не указан, обнаруженные ошибки будут обрабатываться " + "последовательно" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Выбор сбоев, обнаруженных после заданного момента времени" + +diff --git a/po/si.po b/po/si.po +index da84ab4..972af38 100644 +--- a/po/si.po ++++ b/po/si.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/si/)\n" + "Language: si\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/sk.po b/po/sk.po +index 79180a2..268ba81 100644 +--- a/po/sk.po ++++ b/po/sk.po +@@ -12,7 +12,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -22,7 +22,7 @@ msgstr "" + "language/sk/)\n" + "Language: sk\n" + "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -59,7 +59,7 @@ msgstr "" + 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:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Nedá sa prevziať vlastníctvo '%s'" +@@ -316,7 +316,7 @@ msgstr "O programe" + msgid "Quit" + msgstr "Ukončiť" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -326,7 +326,7 @@ msgstr "" + "\n" + "Požiada o databázu, uloží balík a názov komponentu" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -337,80 +337,90 @@ msgstr "" + msgid "Problem directory" + msgstr "Adresár s informáciami o probléme" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Konfiguračný súbor" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [voľby]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + 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:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Zalogovať do syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Pridať názvy programu do log-u" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Neznáma chyba" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' nie je platným adresárom problému" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "Prvok „%s“ sa nedá zmeniť" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Nepovolený" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Nedá sa pristúpiť k problému a zmeniť ho" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Vykonávanie chown na adresár zlyhalo. Pre viac podrobností skontrolujte " + "systémové záznamy." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "„%s“ nie je platným názvom prvku" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Nedá sa získať veľkosť „%s“" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "Nezostalo miesto pre problémy" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Nedá sa odstrániť prvok „%s“ z adresára problému „%s“" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -419,12 +429,12 @@ msgstr "" + "Názov '%s' bol stratený. Prosím, skontrolujte, či iná služba vlastniaca " + "tento názov nie je spustená.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Ukončit po NUM sekundách neaktivity" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Tento program musí byť spustený s oprávneniami administrátora." + +@@ -491,73 +501,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -569,68 +580,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -654,7 +665,8 @@ msgstr "Nedá sa vykonať chown '%s': %s" + msgid "Deleting problem directory failed: %s" + msgstr "Zlyhalo odstránenie adresára s problémom: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Nedajú sa získať údaje o probléme zo zbernice abrt-dbus: %s" +@@ -664,6 +676,11 @@ 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/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -909,6 +926,35 @@ msgstr "Chýbajúci debuginfo balíček: {0}" + msgid "All debuginfo files are available" + msgstr "Všetky debuginfo balíčky sú dostupné." + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1145,58 +1191,58 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "Nefunkčné moduly: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + 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:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Nastaviť pracovný adresár prístupný pre všetkých" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + 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:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1206,11 +1252,11 @@ msgstr "" + "\n" + "Extrahovať Xorg pád z FILE(súbor) (alebo zo štandardného vstupu)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Vypísať nájdené údaje o páde na štandardný výstup" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "Vytvoriť adresár s problémom v DIR pre každý nájdený pád" + +@@ -1799,71 +1845,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Použitie: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Zmazať adresár DIR" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analyzovať a ohlásiť problém z adresára DIR" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Vypísať informácie o adresári DIR" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Vypísať počet nedávnych pádov" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Pre viac informácií viď 'abrt-cli PRÍKAZ --help'" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Zobraziť detailnú správu" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1871,52 +1923,57 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Vypísať iba počet problémov bez akejkoľvek správy" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Vypísať jedine problémy, ktoré nastali neskôr ako uvedená časová hranica" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT zistil %u problém(y/ov). Pre viac informácií spustite: abrt-cli " + "list%s\n" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1925,21 +1982,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/sl.po b/po/sl.po +index 8977a27..8d86506 100644 +--- a/po/sl.po ++++ b/po/sl.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "Language: sl\n" + "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " + "n%100==4 ? 2 : 3);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -302,14 +302,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -320,90 +320,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -465,73 +475,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -543,68 +554,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -628,7 +639,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -638,6 +650,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -861,6 +878,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1080,69 +1126,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1691,71 +1737,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1763,49 +1815,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1814,21 +1871,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/sq.po b/po/sq.po +index d973e29..d1c2832 100644 +--- a/po/sq.po ++++ b/po/sq.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/sq/)\n" + "Language: sq\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/sr.po b/po/sr.po +index 7d0b468..e64c408 100644 +--- a/po/sr.po ++++ b/po/sr.po +@@ -4,22 +4,23 @@ + # + # Translators: + # Jiří Moskovčák , 2011 ++# Momcilo Medic , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-12-12 08:30-0500\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-07-14 09:47-0400\n" ++"Last-Translator: Momcilo Medic \n" + "Language-Team: Serbian (http://www.transifex.com/projects/p/fedora-abrt/" + "language/sr/)\n" + "Language: sr\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -55,15 +56,17 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" +-msgstr "" ++msgstr "Не могу да преузмем власништво над '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/applet/applet.c:350 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "" ++msgstr "Не могу да отворим директоријум за упис '%s'" + + #: ../src/applet/applet.c:417 + msgid "A problem has been detected" +@@ -85,10 +88,11 @@ msgstr "" + msgid "Can't execute '%s'" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/applet/applet.c:668 ../src/applet/applet.c:744 + #, c-format + msgid "Can't close notification: %s" +-msgstr "" ++msgstr "Не могу да затворим обавештење: %s" + + #: ../src/applet/applet.c:706 + msgid "" +@@ -167,26 +171,30 @@ msgstr "" + msgid "A New Problem has Occurred" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" +-msgstr "" ++msgstr "Не могу да прикажем обавештење: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #. TODO: Terminate child's process? + #: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" +-msgstr "" ++msgstr "Не могу да читам са gio канала: '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/applet/applet.c:1182 + #, c-format + msgid "Can't set encoding on gio channel: %s" +-msgstr "" ++msgstr "Не могу да поставим кодирање на gio каналу: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/applet/applet.c:1186 + #, c-format + msgid "Can't turn on nonblocking mode for gio channel: %s" +-msgstr "" ++msgstr "Не могу да укључим неблокирајући режим за gio каналу: %s" + + #: ../src/applet/applet.c:1494 + #, c-format +@@ -195,29 +203,38 @@ msgid "" + "reappear on the next login" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/applet/applet.c:1635 + msgid "" + "& [-v] [DIR]...\n" + "\n" + "Applet which notifies user when new problems are detected by ABRT\n" + msgstr "" ++"& [-v] [DIR]...\n" ++"\n" ++"Програмчић који обавештава корисника када ABRT открије нове проблеме\n" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/abrt-config-widget.glade.h:1 + msgid "Ask before stealing directory" +-msgstr "" ++msgstr "Питати пре крађе директоријума" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "Аутоматски пошаљи uReport" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +-msgstr "" ++msgstr "Скраћено пријављивање" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "" ++msgstr "Тихо скраћено пријављивање" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" + "The coredump file is necessary for generating stack trace which is time and " +@@ -225,7 +242,12 @@ msgid "" + "trace from the coredump but you have to upload the coredump to this service. " + "With this option disabled ABRT will upload the coredump without asking." + msgstr "" ++"Датотека coredump је неопходна за операцију стварања трага стека која " ++"захтева време и простор. ABRT пружа сервис који ствара траг стека из " ++"coredump-а али морате послати coredump овом сервису. Када је ова опција " ++"онемогућена ABRT ће послати coredump без питања." + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/abrt-config-widget.glade.h:6 + msgid "" + "ABRT stores problem data in directories. Whenever ABRT needs writable " +@@ -233,7 +255,12 @@ msgid "" + "directory. With this option disabled ABRT will move the problem directory " + "without asking." + msgstr "" ++"ABRT чува податке о проблему у директоријумима. Кад год је ABRT-у неопходан " ++"директоријум за упис, директоријум ће бити премештен са системске локације у " ++"ваш лични директоријум. Када је ова опција онемогућена ABRT ће преместити " ++"директоријум проблема без питања." + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/abrt-config-widget.glade.h:7 + msgid "" + "uReport is short and completely anonymous description of a problem. ABRT " +@@ -241,23 +268,37 @@ msgid "" + "uReport is sent at beginning of reporting process. With this option enabled " + "uReports are sent automatically immediately after problem detection." + msgstr "" ++"uReport је кратки и потпуно анонимни опис проблема. ABRT користи uReport-ове " ++"за брзо глобално откривање дупликата. У подразумеваној конфигурацији uReport " ++"се шаље на почету процеса пријављивања. Када је ова опција омогућена uReport " ++"се шаљу аутоматски одмах након откривања проблема." + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/abrt-config-widget.glade.h:8 + msgid "" + "With this option enabled reporting process started by click on Report button " + "in problem notification bubble will be interrupted after uReport is sent. " + "You can always use the default problem browser to make complete report." + msgstr "" ++"Када је ова опција омогућена поступак пријављивања започет кликом на Пријави " ++"дугме у балону обавештења о проблему, ће бити прекинут након што је uReport " ++"послат. Можете увек употребити подразумевани прегледач проблема да направите " ++"комплетну пријаву." + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/abrt-config-widget.glade.h:9 + msgid "" + " With this option enabled ABRT never shows notifications of reported " + "problems. Takes effect only if Shortened reporting is enabled." + msgstr "" ++"Када је ова опција омогућена ABRT никад не приказује обавештења о " ++"пријављеним проблемима. Има ефекта само када је омогућено скраћено " ++"пријављивање." + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/abrt-config-widget.glade.h:10 + msgid "Ask before uploading coredump" +-msgstr "" ++msgstr "Питати пре слања coredump-а" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:11 + msgid "" +@@ -265,54 +306,67 @@ msgid "" + "access if possibly sensitive data are dected." + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 + msgid "Request private ticket for sensitive information" +-msgstr "" ++msgstr "Захтевати приватну карту за осетљиве информације" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/abrt-config-widget.glade.h:13 + msgid "Notify incomplete problems" +-msgstr "" ++msgstr "Обавести о непотпуним проблемима" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/abrt-config-widget.glade.h:14 + msgid "" + "Incomplete problems are detected while computer is shutting down or user is " + "logging out. In order to provide valuable problem reports, ABRT will not " + "allow you to submit these problems." + msgstr "" ++"Непотпуни проблеми су откривени када се рачунар искључује или се корисник " ++"одјављује. Да би се пружили корисни извештаји о проблемима, ABRT вам неће " ++"дозволити да пошаљете ове проблеме." + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/system-config-abrt.c:75 + msgid "_Close" +-msgstr "" ++msgstr "_Затвори" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/system-config-abrt.c:84 + msgid "_Defaults" +-msgstr "" ++msgstr "_Подразумеване вредности" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/system-config-abrt.c:112 + #: ../src/configuration-gui/main.c:36 + msgid "Problem Reporting Configuration" +-msgstr "" ++msgstr "Подешавање пријављивања проблема" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/main.c:75 + msgid "About System Config ABRT" +-msgstr "" ++msgstr "О програму за системско подешавање ABRT-а" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/main.c:105 + msgid "About" +-msgstr "" ++msgstr "О програму" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/configuration-gui/main.c:106 + msgid "Quit" +-msgstr "" ++msgstr "Излаз" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -321,95 +375,130 @@ msgstr "" + #: ../src/plugins/abrt-action-generate-backtrace.c:55 + #: ../src/plugins/abrt-action-generate-core-backtrace.c:52 + msgid "Problem directory" +-msgstr "" ++msgstr "Директоријум проблема" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" +-msgstr "" ++msgstr "Датотека подешавања" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" +-msgstr "" ++msgstr "& [опције]" + +-#: ../src/daemon/abrt-server.c:797 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" +-msgstr "" ++msgstr "Користи NUM као uid клијента" + +-#: ../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 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" +-msgstr "" ++msgstr "Записник у syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" +-msgstr "" ++msgstr "Додај имена програма у записник" + +-#: ../src/dbus/abrt-dbus.c:123 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" +-msgstr "" ++msgstr "Непозната грешка" + +-#: ../src/dbus/abrt-dbus.c:188 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" +-msgstr "" ++msgstr "'%s' није исправан директоријум проблема" + +-#: ../src/dbus/abrt-dbus.c:223 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" +-msgstr "" ++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 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" +-msgstr "" ++msgstr "Неовлашћен" + +-#: ../src/dbus/abrt-dbus.c:256 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" +-msgstr "" ++msgstr "Не могу да приступим проблему за измену" + +-#: ../src/dbus/abrt-dbus.c:461 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" ++"Промена власништва директоријума неуспешна. Проверите системске записе за " ++"више детаља." ++ ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "Не могу да приступим проблему за читање" + +-#: ../src/dbus/abrt-dbus.c:559 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" +-msgstr "" ++msgstr "'%s' није исправно име елемента" + +-#: ../src/dbus/abrt-dbus.c:580 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" +-msgstr "" ++msgstr "Не могу да добијем величину '%s'" + +-#: ../src/dbus/abrt-dbus.c:595 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" +-msgstr "" ++msgstr "Није остало места за проблеме" + +-#: ../src/dbus/abrt-dbus.c:627 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" +-msgstr "" ++msgstr "Не могу да обришем елемент '%s' из директоријума проблема '%s'" ++ ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "Не могу да приступим проблему" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" ++"Име '%s' је изгубљено, молим проверите да ли други сервис са власништвом над " ++"именом није покренут.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" +-msgstr "" ++msgstr "Изађи након NUM секунди неактивности" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." +-msgstr "" ++msgstr "Овај програм мора бити извршен под root налогом." + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/daemon/abrtd.c:451 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " +@@ -418,32 +507,44 @@ msgid "" + "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 вам неће дозволити да пошаљете овај проблем. " ++"Ако имате времена и желите да помогнете програмерима у њиховом настојању да " ++"реше овај проблем, молим да их контактирате директно." + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/daemon/abrtd.c:497 + msgid "Do not daemonize" +-msgstr "" ++msgstr "Немој покренути као сервис" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/daemon/abrtd.c:498 + msgid "Log to syslog even with -d" +-msgstr "" ++msgstr "Записуј у syslog чак и са -d" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/daemon/abrt-handle-event.c:388 + msgid "& [-v -i] -e|--event EVENT DIR..." +-msgstr "" ++msgstr "& [-v -i] -e|--event EVENT DIR..." + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/daemon/abrt-handle-event.c:396 + msgid "Run EVENT on DIR" +-msgstr "" ++msgstr "Изврши EVENT над DIR-ом" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/daemon/abrt-handle-event.c:397 + msgid "Communicate directly to the user" +-msgstr "" ++msgstr "Пренеси директно са кориснику" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/daemon/abrt-upload-watch.c:118 + #, c-format + msgid "No free workers and full buffer. Omitting archive '%s'" +-msgstr "" ++msgstr "Нема слободних радника и бафер је пун. Прескачем архиву '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/daemon/abrt-upload-watch.c:258 + msgid "" + "& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" +@@ -455,86 +556,116 @@ msgid "" + "If UPLOAD_DIRECTORY is not provided, uses a value of\n" + "WatchCrashdumpArchiveDir option from abrt.conf" + msgstr "" ++"& [-vs] [-w NUM] [-c MiB] [UPLOAD_DIRECTORY]\n" ++"\n" ++"\n" ++"Прати UPLOAD_DIRECTORY и отпакује архиве које пристижу у DumpLocation\n" ++"назначену у abrt.conf\n" ++"\n" ++"Ако UPLOAD_DIRECTORY није задат, користи вредност\n" ++"WatchCrashdumpArchiveDir опције из abrt.conf" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +-msgstr "" ++msgstr "Као сервис" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +-msgstr "" ++msgstr "Број упоредних радника. Подразумевано је " + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/daemon/abrt-upload-watch.c:283 + msgid "Maximal cache size in MiB. Default is " +-msgstr "" ++msgstr "Максимална величина кеша у MiB. Подразумевано је " + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " +-msgstr "" ++msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Искључује аутентификацију" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Red Hat Support корисничко име" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" ++"Red Hat Support лозинка, ако није задата, онда ће бити издат упит за њу" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "uReport SSL путање сертификата или врста сертификата" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "Такође је потребно да назначите --username за --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "Можете користити или --username или --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "Можете користити или --username или --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "Можете користити или --anonymous или --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" +-msgstr "" ++msgstr "Неисправан број аргумената" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" +-msgstr "" ++msgstr "Непозната вредност опције: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" +-msgstr "" ++msgstr "Лозинка:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Не могу наставити без лозинке\n" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "HTTP аутентификовано аутоматско пријављивање" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" +-msgstr "" ++msgstr "SSL Client аутентификовано аутоматско пријављивање" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "анонимно аутоматско пријављивање" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -545,120 +676,162 @@ msgid "" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" + msgstr "" +- +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++"Употреба: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" ++"\n" ++" -v - Брбљивост\n" ++" -d - Обриши послату архиву\n" ++" ABRT_SPOOL_DIR - Директоријум где се отпакују исправне послате архиве\n" ++" UPLOAD_DIR - Директоријум где се чувају послате архиве\n" ++" FILENAME - Име датотеке послате архиве\n" ++ ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" +-msgstr "" ++msgstr "Није директоријум: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" +-msgstr "" ++msgstr "Прескачем: '{0}' (почиње косом цртом)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" +-msgstr "" ++msgstr "Прескачем: '{0}' (почиње тачком)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" +-msgstr "" ++msgstr "Прескачем: '{0}' (садржи ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" +-msgstr "" ++msgstr "Прескачем: '{0}' (садржи размак)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" +-msgstr "" ++msgstr "Прескачем: '{0}' (садржи таб)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" +-msgstr "" ++msgstr "Не могу променити директоријум на '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" +-msgstr "" ++msgstr "Непозната врста датотеке: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" +-msgstr "" ++msgstr "Не могу да направим радни директоријум у '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" +-msgstr "" ++msgstr "Не могу преместити '{0}' на '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" +-msgstr "" ++msgstr "Не могу копирати '{0}' на '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" +-msgstr "" ++msgstr "Грешка при провери '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" +-msgstr "" ++msgstr "Отпакујем '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" +-msgstr "" ++msgstr "Не могу да направим '{0}' директоријум" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" +-msgstr "" ++msgstr "Не могу да отпакујем '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" +-msgstr "" ++msgstr "'{0}' успешно обрађено" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #. Let user know what's going on + #: ../src/lib/hooklib.c:253 + msgid "Generating backtrace" +-msgstr "" ++msgstr "Стварам стабло позивања" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/lib/problem_api_dbus.c:42 + #, c-format + msgid "Can't connect to system DBus: %s" +-msgstr "" ++msgstr "Не могу да се повежем на системски DBus: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" +-msgstr "" ++msgstr "Не могу да chown-ујем '%s': %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/lib/problem_api_dbus.c:97 + #, c-format + msgid "Deleting problem directory failed: %s" +-msgstr "" ++msgstr "Грешка при брисању директоријума проблема: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" +-msgstr "" ++msgstr "Не могу да преузмем податке о проблему од abrt-dbus: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/lib/problem_api_dbus.c:169 + #, c-format + msgid "Can't get problem list from abrt-dbus: %s" +-msgstr "" ++msgstr "Не могу преузети списак проблема од abrt-dbus: %s" ++ ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "Не могу испробати да ли елемент постоји преко abrt-dbus: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +-msgstr "" ++msgstr "Не могу направити привремену датотеку '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/lib/ignored_problems.c:250 + #, c-format + msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" ++"Не могу да упишем у '%s'. Проблем '%s' неће бити уклоњен из занемарених " ++"проблема '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, c-format + msgid "Can't rename '%s' to '%s'. Failed to remove problem '%s'" +-msgstr "" ++msgstr "Не могу да преименујем '%s' у '%s'. Грешка при уклањању проблема '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" + "& [options] -d DIR\n" +@@ -666,7 +839,13 @@ msgid "" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" + msgstr "" ++"& [опције] -d DIR\n" ++"\n" ++"Анализира C/C++ стабло позивања, ствара збир понављања, оцену стабла " ++"позивања\n" ++"и идентификује срушену функцију у директоријуму проблема DIR" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #. + #. * The parser failed. Compute the duphash from the executable + #. * instead of a backtrace. +@@ -675,146 +854,196 @@ msgstr "" + #: ../src/plugins/abrt-action-analyze-backtrace.c:90 + #, c-format + msgid "Backtrace parsing failed for %s" +-msgstr "" ++msgstr "Неуспешна обрада стабла позивања за %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-backtrace.c:146 + msgid "Crash thread not found" +-msgstr "" ++msgstr "Срушена нит није пронађена" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-c.c:67 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID of coredump in problem directory DIR" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Израчунава и чува UUID coredump-а у директоријуму проблема DIR" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-core.in:72 + #, c-format + msgid "Analyzing coredump '%s'" +-msgstr "" ++msgstr "Анализирам coredump '%s'" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-core.in:110 + #, c-format + msgid "Missing build id: %s" +-msgstr "" ++msgstr "Недостаје id изградње: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-core.in:142 + #, c-format + msgid "Usage: %s [-v] [-o OUTFILE] -c COREFILE" +-msgstr "" ++msgstr "Употреба: %s [-v] [-o OUTFILE] -c COREFILE" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-core.in:164 + msgid "COREFILE is not specified" +-msgstr "" ++msgstr "COREFILE није назначен" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-oops.c:37 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH for oops problem directory DIR" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Израчунава и чува UUID и DUPHASH за директоријум oops проблема DIR" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../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" ++"\n" ++"Израчунава и чува UUID и DUPHASH за директоријум xorg проблема DIR" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-xorg.c:113 + #, c-format + msgid "Module '%s' was loaded - won't report this crash" +-msgstr "" ++msgstr "Модул '%s' је био учитан - нећу пријавити овај крах" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-python.c:36 + msgid "" + "& [-v] -d DIR\n" + "\n" + "Calculates and saves UUID and DUPHASH of python crash dumps" + msgstr "" ++"& [-v] -d DIR\n" ++"\n" ++"Израчунава и чува UUID и DUPHASH за python crash dump-ове" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-vmcore.in:52 + msgid "Usage: {0} [-v[v]] [--core=VMCORE]" +-msgstr "" ++msgstr "Употреба: {0} [-v[v]] [--core=VMCORE]" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-vmcore.in:79 + msgid "File {0} doesn't exist" +-msgstr "" ++msgstr "Датотека {0} не постоји" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-vmcore.in:82 + msgid "Extracting the oops text from core" +-msgstr "" ++msgstr "Извлачим oops текст из језгра" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-vmcore.in:87 + msgid "Can't process {0}:\n" + "{1}" +-msgstr "" ++msgstr "Не могу да обрадим {0}:\n" ++"{1}" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-vmcore.in:95 + msgid "Can't extract the oops message: '{0}'" +-msgstr "" ++msgstr "Не могу да извучем oops поруку: '{0}'" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-analyze-vmcore.in:98 + msgid "Oops text extracted successfully" +-msgstr "" ++msgstr "Oops текст успешно извучен" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-check-oops-for-hw-error.in:83 + msgid "" + "The kernel log indicates that hardware errors were detected.\n" + "This is most likely not a software problem.\n" + msgstr "" ++"Запис језгра указује на пронађене хардверске грешке.\n" ++"Ово највероватније није програмски проблем.\n" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-generate-backtrace.c:42 + msgid "" + "& [options] -d DIR\n" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" + msgstr "" ++"& [опције] -d DIR\n" ++"\n" ++"Анализира coredump у директоријуму проблема DIR, ствара и чува стабло " ++"развоја" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +-msgstr "" ++msgstr "Додатни debuginfo директоријуми" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-generate-backtrace.c:57 + msgid "Kill gdb if it runs for more than NUM seconds" +-msgstr "" ++msgstr "Убиј gdb ако се извршава дуже од NUM секунди" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #. 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 "" ++msgstr "Стабло развоја је направљено и сачувано, %u бајтова" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-generate-core-backtrace.c:40 + msgid "" + "& [-v] [-r] -d DIR\n" + "\n" + "Creates coredump-level backtrace from core dump and corresponding binary" + msgstr "" ++"& [-v] [-r] -d DIR\n" ++"\n" ++"Ствара стабло развоја coredump нивоа из core dump-а и одговарајуће бинарне " ++"датотеке" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-generate-core-backtrace.c:53 + msgid "Do not hash fingerprints" +-msgstr "" ++msgstr "Немој правити збир отисака" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #. Let user know what's going on + #: ../src/plugins/abrt-action-generate-core-backtrace.c:64 + msgid "Generating core_backtrace" +-msgstr "" ++msgstr "Правим core_backtrace" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-generate-core-backtrace.c:81 + msgid "Error: GDB did not return any data" +-msgstr "" ++msgstr "Грешка: GDB није вратио никакве податке" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-generate-core-backtrace.c:95 + #, c-format + msgid "Error: %s" +-msgstr "" ++msgstr "Грешка: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-install-debuginfo.in:51 + msgid "Exiting on user command" +-msgstr "" ++msgstr "Излазим по команди корисника" + + #: ../src/plugins/abrt-action-install-debuginfo.in:88 + #, c-format +@@ -840,13 +1069,15 @@ msgid "" + " Default: *debug*\n" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-install-debuginfo.in:169 + msgid "Can't open {0}: {1}" +-msgstr "" ++msgstr "Не могу да отворим {0}: {1}" + ++# translation auto-copied from project abrt, version master, document abrt, author Momcilo Medic + #: ../src/plugins/abrt-action-install-debuginfo.in:206 + msgid "Coredump references {0} debuginfo files, {1} of them are not installed" +-msgstr "" ++msgstr "Coredump помиње {0} debuginfo датотека, {1} од њих није инсталирано" + + #: ../src/plugins/abrt-action-install-debuginfo.in:209 + msgid "{0} of debuginfo files are not installed" +@@ -864,6 +1095,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1083,69 +1343,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1694,71 +1954,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1766,49 +2032,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1817,21 +2088,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/sr@latin.po b/po/sr@latin.po +index e217e0e..b34ea27 100644 +--- a/po/sr@latin.po ++++ b/po/sr@latin.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -19,7 +19,7 @@ msgstr "" + "Language: sr@latin\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -55,7 +55,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -305,14 +305,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -323,90 +323,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -468,73 +478,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -546,68 +557,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -631,7 +642,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -641,6 +653,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -864,6 +881,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1083,69 +1129,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1694,71 +1740,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1766,49 +1818,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1817,21 +1874,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/sv.po b/po/sv.po +index d960eb5..6c3cada 100644 +--- a/po/sv.po ++++ b/po/sv.po +@@ -8,21 +8,22 @@ + # Jiří Moskovčák , 2011 + # Ulrika , 2012 + # Mick Ohrberg , 2013 ++# Göran Uddeborg , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-12-12 08:30-0500\n" +-"Last-Translator: Jakub Filak \n" ++"PO-Revision-Date: 2015-03-25 05:20-0400\n" ++"Last-Translator: Göran Uddeborg \n" + "Language-Team: Swedish (http://www.transifex.com/projects/p/fedora-abrt/" + "language/sv/)\n" + "Language: sv\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -64,7 +65,7 @@ msgstr "Kan inte ansluta till NetworkManager via DBus: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Kan inte bestämma nätverksstatus via NetworkManager: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Kan inte ta över ägandet av ”%s”" +@@ -318,6 +319,8 @@ msgid "" + " With this option enabled ABRT always create bug ticket with restricted " + "access if possibly sensitive data are dected." + msgstr "" ++"Med denna flagga aktiverad skapar ABRT alltid felärenden med begränsad " ++"åtkomst om eventuellt känsliga data upptäcks." + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/configuration-gui/abrt-config-widget.glade.h:12 +@@ -366,7 +369,7 @@ msgstr "Om" + msgid "Quit" + msgstr "Avsluta" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -376,7 +379,7 @@ msgstr "" + "\n" + "Fråga paketdatabasen och spara paketnamn och komponentnamn" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -387,80 +390,91 @@ msgstr "" + msgid "Problem directory" + msgstr "Problemkatalog" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Konfigurationsfil" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [flaggor]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + 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:280 +-#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:273 +-#: ../src/plugins/abrt-dump-xorg.c:244 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Logga till syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Lägg till programnamn till loggen" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Okänt fel" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "”%s” är inte en giltig problemkatalog" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "Elementet '%s' kan inte modifieras" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Inte auktoriserad" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Kan inte komma åt problemet för modifikation" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Chownoperationen på katalogen misslyckades. Kolla systemloggarna för fler " + "detaljer." + +-#: ../src/dbus/abrt-dbus.c:559 ++# translation auto-copied from project abrt, version master, document abrt, author Göran Uddeborg ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "Kan inte komma åt problemet för läsning" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' är inte ett giltigt elementnamn" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Det går inte att få storleken på '%s'" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "Inget utrymme kvar" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Kan inte radera elementet '%s' från problemkatalogen '%s'" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -469,12 +483,12 @@ msgstr "" + "Namnet ”%s” har förlorats, kontrollera om andra tjänster som äger namnet " + "inte kör.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Avsluta efter ANT sekunders inaktivitet" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Detta program måste köra som root." + +@@ -550,76 +564,79 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "Maximal cachestorlek i MiB. Standard är " + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Slår av autenticering" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Red Hat Support-användarnamn" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" ++"Red Hat Support-lösenord, om det inte ges kommer en fråga efter det att " ++"ställas" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "uReport SSL-certifikatsökvägar eller certifikattyp" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "Du behöver även ange --username för --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "Du kan använda antingen --username eller --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "Du kan använda antingen --username eller --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "Du kan använda antingen --anonymous eller --certificate" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "Fel antal argument" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Okänt parametervärde: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" +-msgstr "" ++msgstr "Lösenord:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Kan inte fortsätta utan lösenord\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "HTTP-autenticerad automatrapportering" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" +-msgstr "" ++msgstr "SSL-klientautenticerad automatrapportering" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "anonym automatrapportering" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -639,83 +656,83 @@ msgstr "" + " FILNAMN - Skickat arkivs filnamn\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Inte en katalog: ”{0}”" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Hoppar över: ”{0}” (börjar med ett snedstreck)" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Hoppar över: ”{0}” (börjar med en punkt)" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Hoppar över: ”{0}” (innehåller ..)" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Hoppar över: ”{0}” (innehåller blanktecken)" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Hoppar över: ”{0}” (innehåller tabulator)" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Kan inte byta katalog till ”{0}”" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Okänd filtyp: ”{0}”" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Kan inte skapa en arbetskatalog i ”{0}”" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Kan inte flytta ”{0}” till ”{1}”" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Kan inte kopiera ”{0}” till ”{1}”" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Verifieringsfel på ”{0}”" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Packar upp ”{0}”" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Kan inte skapa katalogen ”{0}”" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Kan inte packa upp ”{0}”" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "”{0}” behandlad" + +@@ -739,7 +756,8 @@ msgstr "Kan inte ändra ägare av ”%s”: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Misslyckades att radera en problemkatalog: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Kan inte hämta problemdata från abrt-dbus: %s" +@@ -749,6 +767,11 @@ 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/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -1033,6 +1056,35 @@ msgstr "Saknad felsökningsfil: {0}" + msgid "All debuginfo files are available" + msgstr "Alla felsökningsinformationsfiler är tillgängliga" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1280,7 +1332,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "Förorenade moduler: %s" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1290,52 +1342,52 @@ msgstr "" + "\n" + "Extrahera en oops från FIL (eller standard in)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + 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:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + 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:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "Spara den extraherade information i PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Gör problemkatalogen läsbar för alla" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + 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:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "Skriv söksträngar till standard ut och avsluta" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "Misslyckades att kompilera reguljäruttryck" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + 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:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Sover i %d sekunder" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1345,11 +1397,11 @@ msgstr "" + "\n" + "Extrahera en Xorg-krasch från FIL (eller standard in)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Skriv funna kraschdata på standard ut" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "Skapa problemkatalog i KAT för varje krasch som hittas" + +@@ -1816,11 +1868,11 @@ msgstr "Misslyckades att aktivera klienthandskakning till SSL-uttag." + + #: ../src/plugins/https-utils.c:220 + msgid "Failed to enable SSL3." +-msgstr "" ++msgstr "Misslyckades att aktivera SSL3." + + #: ../src/plugins/https-utils.c:222 + msgid "Failed to enable TLS." +-msgstr "" ++msgstr "Misslyckades att aktivera TLS." + + #: ../src/plugins/https-utils.c:224 + msgid "Failed to set URL to SSL socket." +@@ -1942,75 +1994,82 @@ msgstr "Visa hittade oopsmeddelanden" + msgid "Delete files with found oopses" + msgstr "Radera filer med hittade oopsmeddelanden" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "”%s” identifierar mer an en problemkatalog" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Användning: abrt-cli [--version] KOMMANDO [KAT]…" ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Lista problem [i KAT]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Ta bort problemkatalogen KAT" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Analysera och rapportera problemdata i KAT" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Skriv ut information om KAT" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Visa antalet nyliga krascher" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Bearbeta flera problem" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Se ”abrt-cli KOMMANDO --help” för mer information" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" ++"%sKör ”abrt-cli report %s” för att skapa ett ärende i Red Hats kundportal\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [flaggor] [KAT]…" ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "Lista endast orapporterade problem" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Visa detaljerad rapport" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "Visa bara problem nyare än angivna tidsstämpel" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "Visa bara problem äldre än angivna tidsstämpel" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2022,55 +2081,60 @@ msgstr "" + "att köra ”abrt-auto-reporting enabled” som en användare med root-" + "rättigheter\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [flaggor] KAT…" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "Text längre än detta kommer visas förkortad" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Problemkatalogen finns inte ”%s”" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [KAT]…" ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Visa bara antalet problem utan några meddelanden" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Visa bara problem nyare än angivna tidsstämpel" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + "ABRT har upptäckt '%u' problem. För mer information, kör: abrt-cli list%s\n" + "\n" + ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Tar bort ”%s”" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& rapport [flaggor] KAT…" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Ta bort PROBLEMKAT efter att ha rapporterat" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Tar bort ”%s”" +- +-# translation auto-copied from project abrt, version master, document abrt + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Åtgärder: remove(rm), info(i), skip(s):" +@@ -2081,24 +2145,24 @@ msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Åtgärder: remove(rm), report(e), info(i), skip(s):" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Rapporterar ”%s”" + + # translation auto-copied from project abrt, version master, document abrt + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "För nästa problem tryck RETUR:" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "Utan argumentet --since, itererar över alla upptäckta problem." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Väljer endast problem upptäckta efter tidsstämpeln" + +diff --git a/po/ta.po b/po/ta.po +index 337ced8..00997ed 100644 +--- a/po/ta.po ++++ b/po/ta.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -23,7 +23,7 @@ msgstr "" + "language/ta/)\n" + "Language: ta\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -63,7 +63,7 @@ msgstr "DBus மூலம் NetworkManager க்கு இணைக்க ம + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager மூலம் பிணைய நிலையை தீர்மானிக்க முடியவில்லை: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' இன் உரிமையை கைக்கொள்ள முடியவில்லை" +@@ -352,7 +352,7 @@ msgstr "அறிமுகம்" + msgid "Quit" + msgstr "வெளியேறு" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -362,7 +362,7 @@ msgstr "" + "\n" + "தொகுப்பு தரவுத்தளத்தை வினவி தொகுப்பு மற்றும் கூறின் பெயரைச் சேமி" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -373,80 +373,90 @@ msgstr "" + msgid "Problem directory" + msgstr "சிக்கல் கோப்பகம்" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "அமைவாக்கக் கோப்பு" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "NUM ஐ கிளையன்ட் uid ஆகப் பயன்படுத்தவும்" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "syslog க்கு பதியவும்" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "நிரல் பெயர்களை பதிவில் சேர்க்கவும்" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "தெரியாத பிழை" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' ஒரு சரியான சிக்கல் கோப்பகமல்ல" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "அங்கீகாரம் இல்லை" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "மாற்றம் செய்ய சிக்கலை அணுக முடியவில்லை" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "கோப்பகத்தை Chown செய்தல் தோல்வியடைந்தது. மேலும் விவரங்களுக்கு கணினி " + "பதிவுகளைப் பார்க்கவும்." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' என்பது ஒரு செல்லுபடியான கூறு பெயரல்ல" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' இன் அளவைப் பெற முடியவில்லை" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "சிக்கல் இடம் மீதம் இல்லை" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "சிக்கல் கோப்பகம் '%s' இலிருந்து கூறு '%s' ஐ நீக்க முடியவில்லை" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -455,12 +465,12 @@ msgstr "" + "'%s' என்ற பெயர் போய்விட்டது, இதே பெயரைக் கொண்ட மற்ற சேவைகள் எதுவும் " + "இயங்காமல் உள்ளதா எனப் பார்க்கவும்.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM விநாடிகளுக்கு செயலில்லாமல் இருந்த பிறகு வெளியேறவும்" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "இந்த நிரலை மூலப் பயனராகவே இயக்க வேண்டும்." + +@@ -538,75 +548,76 @@ msgstr "ஒத்த சமய ஒர்க்கர்களின் எண் + msgid "Maximal cache size in MiB. Default is " + msgstr "MiB இல் அதிகபட்ச தேக்கக அளவு. முன்னிருப்பு:" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "அங்கீகரிப்பை முடக்கும்" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Red Hat ஆதரவு பயனர் பெயர்" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat ஆதரவு கடவுச்சொல், கொடுக்கப்படாவிட்டால், அதைக் கேட்கும் இடைமுகம் " + "காட்டப்படும்" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL சான்றிதழ் பாதைகள் அல்லது சான்றிதழ் வகை" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "--password க்கு --username ஐயும் வழங்க வேண்டும்" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "--username அல்லது --certificate இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "--username அல்லது --anonymous இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "--anonymous அல்லது --certificate இரண்டில் ஒன்றைப் பயன்படுத்தலாம்" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "செல்லுபடியாகாத மதிப்புருக்களின் எண்ணிக்கை" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "தெரியாத விருப்ப மதிப்பு: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "கடவுச்சொல்:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "கடவுச்சொல் இல்லாமல் தொடர முடியாது\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP அங்கீகரித்த தானியக்க அறிக்கையிடல்" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL கிளையன் அங்கீகரித்த தானியக்க அறிக்கையிடல்" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "பெயரிலா தானியக்க அறிக்கையிடல்" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -626,68 +637,68 @@ msgstr "" + " UPLOAD_DIR - பதிவேற்றப்பட்ட காப்பகங்கள் சேமிக்கப்படும் கோப்பகம்\n" + " FILENAME - பதிவேற்றப்பட்ட காப்பகங்கக் கோப்புப் பெயர்\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "ஒரு கோப்பகமல்ல: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (சாய்வுக் கோட்டில் தொடங்குகிறது)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (புள்ளியில் தொடங்குகிறது)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (.. ஐக் கொண்டுள்ளது)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (இடைவெளியைக் கொண்டுள்ளது)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "இதைத் தவிர்க்கிறது: '{0}' (தத்தலைக் கொண்டுள்ளது)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "கோப்பகத்தை '{0}' க்கு மாற்றியமைக்க முடியாது" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "தெரியாத கோப்பு வகை: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' இல் பணிக் கோப்பகத்தை உருவாக்க முடியவில்லை" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ஐ '{1}' க்கு நகர்த்த முடியவில்லை" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' ஐ '{1}' இல் நகலெடுக்க முடியவில்லை" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' இல் சரிபார்ப்புப் பிழை" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' ஐப் பிரித்தெடுக்கிறது" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' கோப்பகத்தை உருவாக்க முடியவில்லை" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' ஐப் பிரித்தெடுக்க முடியவில்லை" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' வெற்றிகரமாக செயலாக்கப்பட்டது" + +@@ -711,7 +722,8 @@ msgstr "'%s' ஐ chown செய்ய முடியவில்லை: %s" + msgid "Deleting problem directory failed: %s" + msgstr "சிக்கல் கோப்பகத்தை நீக்குவது தோல்வியடைந்தது: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus இலிருந்து சிக்கல் தொடர்பான தரவைப் பெற முடியவில்லை: %s" +@@ -721,6 +733,11 @@ msgstr "abrt-dbus இலிருந்து சிக்கல் தொடர + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus இலிருந்து சிக்கல் பட்டியலைப் பெற முடியவில்லை: %s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -1001,6 +1018,35 @@ msgstr "விடுப்பட்ட வழுநீக்கல் தகவ + msgid "All debuginfo files are available" + msgstr "வழுநீக்கல் தகவல் கோப்புகள் அனைத்தும் உள்ளன" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1249,7 +1295,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr " பாதிக்கப்பட்ட தொகுதிக்கூறுகள்: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1259,57 +1305,57 @@ msgstr "" + "\n" + "FILE இலிருந்து (அல்லது வழக்கமான உள்ளீட்டிலிருந்து) oops ஐப் பிரித்தெடுக்கும்" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + "கண்டறியப்பட்ட ஒவ்வொரு oops க்கும் DIR இல் ஒரு புதிய சிக்கல் கோப்பகத்தை " + "உருவாக்கு" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "-d DumpLocation போன்றது DumpLocation ஆனது abrt.conf இல் " + "குறிப்பிடப்பட்டுள்ளது" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "பிரித்தெடுத்த தகவலை PROBLEM இல் சேமி" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "சிக்கல் கோப்பகத்தை அனைவரும் வாசிக்கும்படி அமை" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "ஒரு வினாடிக்கு த்ராட்டில் சிக்கல் கோப்பக உருவாக்கம் 1" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "தேடல் சரங்களை stdout இல் அச்சிட்டு வெளியேறு" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "சுருங்குறித் தொடரை கம்பைல் செய்வதில் தோல்வியடைந்தது" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + "சிக்கலைப் புதுப்பிக்க முடியவில்லை: ஒன்றுக்கும் அதிகமான oops " + "கண்டறியப்பட்டுள்ளது" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d வினாடிகளுக்கு தூங்குகிறது" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1319,11 +1365,11 @@ msgstr "" + "\n" + "FILE இல் (அல்லது தரநிலை உள்ளீட்டில்) இருந்து Xorg ஐப் பிரித்தெடு" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "கண்டறிந்த செயலிழப்பு தரவை தரநிலையான வெளியீட்டில் அச்சிடு" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "கண்டறியப்படும் ஒவ்வொரு செயலிழப்புக்கும் DIR இல் ஒரு சிக்கல் கோப்பகத்தை " +@@ -1930,44 +1976,50 @@ msgstr "கண்டறியப்பட்ட oopses ஐ அச்சிடு + msgid "Delete files with found oopses" + msgstr "கண்டறியப்பட்ட oopses கொண்டுள்ள கோப்புகளை அழி" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ஒன்றுக்கு மேற்பட்ட சிக்கல் கோப்பகங்களைக் கண்டறிகிறது" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "பயன்பாடு: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "[DIRகளில் உள்ள] சிக்கல்களைப் பட்டியலிடு" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "DIR என்ற சிக்கல் கோப்பகத்தை நீக்கவும்" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "DIR இல் உள்ள சிக்கல் தரவை ஆராய்ந்து அறிவிக்கவும்" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR பற்றி தகவலை அச்சிடவும்" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "சமீபத்திய செயலிழப்புகளின் எண்ணிக்கையை அச்சிடு" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "பல சிக்கல்களைச் செயலாக்கவும்" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "'abrt-cli COMMAND --help' க்கான மேலும் தகவலுக்கு பார்க்கவும்" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -1975,28 +2027,28 @@ msgstr "" + "%sRed Hat வாடிக்கையாளர் வலைவாசலில் ஒரு கோரிக்கையை உருவாக்க 'abrt-cli report " + "%s' எனும் கட்டளையை இயக்கவும்\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "அறிக்கையிடாத சிக்கல்களை மட்டும் பட்டியலிடு" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "விவரமான அறிக்கையை காட்டவும்" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "குறிப்பிட்ட நேரமுத்திரைக்கும் பிறகான சிக்கல்களை மட்டும் பட்டியலிடு" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "குறிப்பிட்ட நேரமுத்திரைக்கும் முந்தைய சிக்கல்களை மட்டும் பட்டியலிடு" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2006,51 +2058,56 @@ msgstr "" + "Autoreporting அம்சம் முடக்கப்பட்டுள்ளது. ரூட் அனுமதி உள்ள பயனராக \n" + "'abrt-auto-reporting enabled' கட்டளையை இயக்கி அதை செயல்படுத்தவும்\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "இதை விட பெரிய உரை அப்ரிட்ஜ் செய்யப்பட்டு காண்பிக்கப்படும்" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "இப்படி ஒரு சிக்கல் கோப்பகம் இல்லை '%s'" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& நிலை [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "எந்த செய்தியும் இன்றி சிக்கல் எண்ணிக்கையை மட்டும் அச்சிடு" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "குறிப்பிடப்பட்ட நேர முத்திரைக்கு சமீபமான சிக்கல்களை மட்டும் அச்சிடு" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' ஐ அழிக்கிறது" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& அறிக்கையிடவும் [விருப்பங்கள்] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "அறிக்கையிட்ட பிறகு PROBLEM_DIR ஐ அகற்றவும்" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' ஐ அழிக்கிறது" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "செயல்கள்: நீக்குதல்(rm), தகவல்(i), தவிர்த்தல்(s):" +@@ -2059,23 +2116,23 @@ msgstr "செயல்கள்: நீக்குதல்(rm), தகவல + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "செயல்கள்: நீக்குதல்(rm), அறிக்கையிடுதல்(e), தகவல்(i), தவிர்த்தல்(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' ஐ அறிக்கையிடுகிறது" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "அடுத்த சிக்கலுக்கு ENTER ஐ அழுத்தவும்:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since மதிப்புரு இல்லாவிட்டால், கண்டறியப்பட்ட அனைத்து சிக்கல்களிலும் " + "மீண்டும் மீண்டும் செயல்படுத்தப்படும்." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + "நேரமுத்திரைக்குப் பிறகு கண்டறியப்பட்ட சிக்கல்களை மட்டும் தேர்ந்தெடுக்கவும்" +diff --git a/po/te.po b/po/te.po +index f7fcf8a..8639f59 100644 +--- a/po/te.po ++++ b/po/te.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -23,7 +23,7 @@ msgstr "" + "language/te/)\n" + "Language: te\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -63,7 +63,7 @@ msgstr "DBus నందు నెట్వర్కుమేనేజర్‌న + msgid "Can't determine network status via NetworkManager: %s" + msgstr "నెట్వర్కుమేనేజర్ ద్వారా నెట్వర్కు స్థితిని నిర్ణయించలేదు: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' పై అజమాయిషీ తీసుకోలేదు" +@@ -346,7 +346,7 @@ msgstr "గురించి" + msgid "Quit" + msgstr "నిష్క్రమించు" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -356,7 +356,7 @@ msgstr "" + "\n" + "ప్యాకేజీ డాటాబేస్ క్వరీచేసి ప్యాకేజీ మరియు మూలకం పేరును దాయి" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -367,92 +367,102 @@ msgstr "" + msgid "Problem directory" + msgstr "సమస్య డైరెక్టరీ" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "ఆకృతీకరణ ఫైలు" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [ఐచ్చికాలు]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "NUM క్లైంట్ uid వలె వుపయోగించు" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "సిస్‌లాగ్‌కు లాగ్" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "లాగ్‌నకు ప్రోగ్రామ్ పేరులను జతచేయి" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "తెలియని దోషం" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' సరైన సమస్యా డైరెక్టరీ కాదు" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ధృవీకరించబడలేదు" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "సవరణ కొరకు సమస్యను యాక్సెస్ చేయలేము" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "సంచయం chown చేయుట విఫలమైంది. మరిన్ని వివరాల కొరకు వ్యవస్థ లాగ్‌లను " + "పరిశీలించండి." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' చెల్లునటువంటి మూలకం పేరు కాదు" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' యొక్క పరిమాణం పొందలేదు" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "ఏ సమస్య ఖాళీ విడువలేదు" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "మూలకం '%s'ను సమస్య డైరెక్టరీ '%s' నుండి తొలగించలేదు" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "పేరు '%s' పోయంది, వేరే సేవ యీ పేరు పొంది నడువకుండా చూడండి.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM క్షణాల క్రియాహీనత తరువాత నిష్క్రమించు" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "ఈ ప్రోగ్రామ్ root గా నడువవలెను." + +@@ -528,73 +538,74 @@ msgstr "ఏకకాలంలో పనిచేయు వారి సంఖ్ + msgid "Maximal cache size in MiB. Default is " + msgstr "గరిష్ట క్యాచీ పరిమాణం MiB నందు. అప్రమేయం" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "ధృవీకరణను ఆఫ్ చేయును" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Red Hat తోడ్పాటు వాడుకరి పేరు" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat తోడ్పాటు సంకేతపదం, ఇవ్వకపోతే, దానికొరకు ప్రామ్ట్ జారీ అగును" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL ధృవీకరణపత్రం పాత్స్ లేదా ధృవీకరణపత్రం రకం" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "మీరు --username మరియు --password తెలపాలి" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "మీరు --username లేదా --certificate ఉపయోగించవచ్చు" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "మీరు --username లేదా --anonymous ఉపయోగించవచ్చు" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "మీరు --anonymous లేదా --certificate ఉపయోగించవచ్చు" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "చెల్లని ఆర్గుమెంట్ల సంఖ్య" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "తెలియని ఐచ్చికం విలువ: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "సంకేతపదం:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "సంకేతపదం లేకుండా కొనసాగించలేము\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP ధృవీకృత స్వయంచాలన నివేదీకరణ" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL క్లైంట్ ధృవీకృత స్వయంచాలన నివేదీకరణ" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "పేరులేకుండా స్వయంచాలన నివేదీకరణ" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -613,68 +624,68 @@ msgstr "" + " UPLOAD_DIR - Directory where uploaded archives are stored\n" + " FILENAME - Uploaded archive file name\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "సంచయం కాదు: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "దాటవేస్తోంది: '{0}' (స్లాష్‌తో ప్రారంభమగును)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "దాటవేస్తోంది: '{0}' (డాట్‌తో ప్రారంభమగును)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "దాటవేస్తోంది: '{0}' (.. కలిగివుంది)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "దాటవేస్తోంది: '{0}' (ఖాళీ కలిగివుంది)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "దాటవేస్తోంది: '{0}' (టాబ్ కలిగివుంది)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "సంచయంను '{0}' కు మార్చలేదు" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "తెలియని ఫైల్ రకం: '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "'{0}' నందు పనిచేయుచున్న సంచయం సృష్టించలేదు" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "'{0}' ను '{1}' కు కదల్చలేదు" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "'{0}' ను '{1}' కు నకలుతీయలేదు" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' పై నిర్ధారణ దోషం" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "'{0}' విడమర్చుతోంది" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "'{0}' సంచయం సృష్టించలేదు" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "'{0}' విడమర్చలేదు" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "'{0}' విజయవంతంగా ప్రోసెసైంది" + +@@ -698,7 +709,8 @@ msgstr "chown '%s' కాలేదు: %s" + msgid "Deleting problem directory failed: %s" + msgstr "సమస్యా డైరెక్టరీను తొలగించుట విఫలమైంది: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "abrt-dbus నుండి సమస్యా దత్తాంశమును పొందలేదు: %s" +@@ -708,6 +720,11 @@ msgstr "abrt-dbus నుండి సమస్యా దత్తాంశము + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "abrt-dbus నుండి సమస్య జాబితాను పొందలేదు: %s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -983,6 +1000,35 @@ msgstr "డీబగ్‌యిన్ఫో ఫైల్ తప్పిపో + msgid "All debuginfo files are available" + msgstr "అన్ని డీబగ్‌యిన్ఫో ఫైళ్ళు అందుబాటులో వున్నాయి" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1224,7 +1270,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "టైన్టెట్ మాడ్యూళ్ళు: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1234,51 +1280,51 @@ msgstr "" + "\n" + "FILE (లేదా ప్రామాణిక ఇన్పుట్) నుండి oops వెలికితీయి" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "కనుగొనబడిన ప్రతి oopsకు కొత్త సమస్య డైరెక్టరీను DIR నందు సృష్టించుము" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation వలె, DumpLocation అనునది abrt.conf నందు తెలుపబడెను" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "వెలికితీసిన సమాచారం PROBLEM నందు దాయి" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "సమస్యాత్మక డైరెక్టరీను అందరూ చదువదగినదిగా చేయి" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "డైరెక్టరీ సృష్టించుటలో సమస్యను ఒక్కో క్షణానికి 1 కి బిగించు." + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "stdout కు శోధన స్ట్రింగ్స్ ముద్రించి నిష్క్రమించు" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "regex కంపైల్ చేయుటకు విఫలమైంది" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "సమస్యను నవీకరించలేము: ఒకటి కన్నా ఎక్కువ oops కనబడెను" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "%d క్షణాలు స్లీపింగ్" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1288,11 +1334,11 @@ msgstr "" + "\n" + "Xorg క్రాష్ ఫైలు నుండి (లేదా ప్రామాణిక యిన్పుట్) నుండి వెలికితీయి" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "కనుగొనిన క్రాష్ దత్తాంశం ప్రామాణిక అవుట్పుట్‌పై ముద్రించు" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "కనుగొనిన ప్రతి క్రాష్‌నకు DIR నందు సమస్య డైరెక్టరీ సృష్టించుము" + +@@ -1890,44 +1936,50 @@ msgstr "కనుగొన్న oopses ముద్రించు" + msgid "Delete files with found oopses" + msgstr "కనుగొన్న oopses తో ఫైళ్ళు తొలగించు" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' ఒకటి కన్నా ఎక్కువ సమస్య డైరెక్టరీలు గుర్తించెను" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "వా‍డుక: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "సమస్యలను జాబితాచేయి [DIRల నందు]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "సమస్య డైరెక్టరీ DIR తీసివేయి" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "సమస్య డాటాను DIR నందు విశ్లేషించు మరియు నివేదించు" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "DIR గురించి సమాచారం ముద్రించు" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "ఇటీవలి క్రాష్‌ల లెక్కను ముద్రించు" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "పలు సమస్యలను ప్రోసెస్‌చేయి" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "అదనపు సమాచారం కొరకు 'abrt-cli COMMAND --help' చూడండి" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -1935,28 +1987,28 @@ msgstr "" + "Red Hat వినియోగదారి పోర్టల్ నందు ఒక కేస్ గురించి తెలపడానికి %s 'abrt-cli " + "report %s' నడుపవలెను\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "నివేదించని సమస్యలు మాత్రమే జాబితాచేయి" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "విశదీకృత నివేదిక చూపుము" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా యిటీవలి సమస్యలు మాత్రమే జాబితాచేయి" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా పాత సమస్యలు మాత్రమే జాబితాచేయి" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1966,51 +2018,56 @@ msgstr "" + "స్వయంచాలక నివేదీకరణ విశేషణం అచేతనం చేయబడెను. root అనుమతులగల వాడుకరితో\n" + "'abrt-auto-reporting enabled' జారీచేసి దానిని చేతనం చేయుము.\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "దీనికన్నా పెద్దదైన పాఠం సంక్షిప్తంగా చూపబడును" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "అటువంటి సమస్యా డైరెక్టరీ '%s' లేదు" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& స్థితి [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "ఏ సందేశం లేకుండా సమస్య లెక్కను మాత్రమే ముద్రించు" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "తెలిపిన టైమ్‌స్టాంప్ కన్నా కొత్తవైన సమస్యలను మాత్రమే ముద్రించు" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "'%s' తొలగిస్తోంది" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "నివేదించిన తరువాత PROBLEM_DIR తీసివేయి" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "'%s' తొలగిస్తోంది" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "చర్యలు: remove(rm), info(i), skip(s):" +@@ -2019,22 +2076,22 @@ msgstr "చర్యలు: remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "చర్యలు: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' నివేదిస్తోంది" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "తరువాతి సమస్య కొరకు ENTER వత్తండి:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "--since ఎగ్రిమెంట్ లేకుండా, మొత్తం గుర్తించిన సమస్యలనందు ఆవృతంచెందును." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "టైమ్‌స్టాంప్ తరువాత గుర్తించిన సమస్యలను మాత్రమే ఎంపికచేయును" + +diff --git a/po/tg.po b/po/tg.po +index 149db94..ae2523e 100644 +--- a/po/tg.po ++++ b/po/tg.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/tg/)\n" + "Language: tg\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Файли танзимотӣ" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [имконот]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Номҳои барномаҳоро ба журнал илова кунед" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/th.po b/po/th.po +index f971c2b..5da7841 100644 +--- a/po/th.po ++++ b/po/th.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/th/)\n" + "Language: th\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -64,7 +64,7 @@ msgid "Can't determine network status via NetworkManager: %s" + msgstr "ไม่สามารถตรวจสอบสถานะเครือข่ายผ่าน NetworkManager: %s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "ไม่สามารถเป็นเจ้าของ '%s'" +@@ -384,7 +384,7 @@ msgid "Quit" + msgstr "ออก" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -395,7 +395,7 @@ msgstr "" + "สอบถามฐานข้อมูลแพกเกจ แล้วบันทึกแพกเกจรวมทั้งชื่อคอมโพเนนต์ด้วย" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -407,94 +407,104 @@ msgid "Problem directory" + msgstr "ไดเรกทอรีปัญหา" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "แฟ้มค่ากำหนด" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "ใช้ NUM เป็น client uid" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "บันทึกไปที่ปูมระบบ" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "เพิ่มชื่อโปรแกรมที่ต้องการบันทึก" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "ข้อผิดพลาดที่ไม่รู้จัก" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' ไม่ใช่ไดเรกทอรีปัญหาที่ถูกต้อง" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "element '%s' แก้ไม่ได้" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "ไม่มีตัวตน" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "ไม่สามารถเข้าถึงปัญหาเพื่อแก้ไข" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "การ Chowning directory ล้มเหลว กรุณาตรวจสอบปูมระบบสำหรับข้อมูลเพิ่มเติม" + ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' ไม่ใช่ชื่อ element ที่ถูกต้อง" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "ไม่สามารถรับขนาด '%s'" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "ไม่มีพื้นที่ว่างเหลือสำหรับปัญหา" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "ไม่สามารถลบ element '%s' จากไดเรกทอรีปัญหา '%s'" + ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -503,13 +513,13 @@ msgstr "" + "ชื่อ '%s' หายไปแล้ว กรุณาตรวจสอบ หากบริการอื่นที่เป็นเจ้าของชื่อไม่ทำงาน\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "ออกหลังจากไม่ใช้งาน NUM วินาที" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "โปรแกรมนี้ต้องเรียกใช้ในฐานะผู้ดูแลระบบ" + +@@ -596,75 +606,76 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "จำนวนสูงสุดของจำนวนเมกะไบต์ของแคช ค่าเริ่มต้นคือ" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "จำนวนอาร์กิวเมนต์ไม่ถูกต้อง" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "ไม่รู้ค่าของตัวเลือก: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -676,68 +687,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -766,7 +777,8 @@ msgid "Deleting problem directory failed: %s" + msgstr "การลบไดเรกทอรีปัญหาล้มเหลว: %s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "ไม่สามารถรับข้อมูลปัญหาจาก abrt-dbus: %s" +@@ -777,6 +789,11 @@ msgstr "ไม่สามารถรับข้อมูลปัญหาจ + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "ไม่สามารถรับรายการปัญหาจาก abrt-dbus: %s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -1081,6 +1098,35 @@ msgstr "แฟ้ม debuginfo หายไป: {0}" + msgid "All debuginfo files are available" + msgstr "แฟ้ม debuginfo ทั้งหมดมีให้ใช้งาน" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + # translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" +@@ -1349,7 +1395,7 @@ msgid " Tainted modules: %s." + msgstr "โมดูลที่เสีย: %s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1360,7 +1406,7 @@ msgstr "" + "แยก oops จาก FILE (หรือการป้อนมาตรฐาน)" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Print found oopses on standard output" + msgstr "Print พบ oopses บนการป้อนมาตรฐาน" + +@@ -1368,51 +1414,51 @@ msgstr "Print พบ 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "สร้างไดเรกทอรีปัญหาใหม่ใน DIR สำหรับทุก oops ที่พบ" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "เหมือนกับ -d DumpLocation DumpLocation ถูกระบุใน abrt.conf" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "บันทึกข้อมูลที่แยกแล้วใน PROBLEM" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "ทำให้อ่านโลกของไดเรกทอรีปัญหาได้" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "Print ค้นหา string(s) เพื่อ stdout แล้ว exit" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "ไม่สามารถปรับปรุงปัญหาได้: พบ oops มากกว่าหนึ่ง" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "หลับเป็นเวลา %d วินาที" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1423,12 +1469,12 @@ msgstr "" + "แยก Xorg crash จาก FILE (หรือการป้อนมาตรฐาน)" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Print พบ crash data บนการป้อนมาตรฐาน" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "สร้างไดเรกทอรีปัญหาใน DIR สำหรับทุก crash ที่พบ" + +@@ -1979,71 +2025,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2051,49 +2103,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -2102,21 +2159,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/tr.po b/po/tr.po +index 49bb34f..1fc4762 100644 +--- a/po/tr.po ++++ b/po/tr.po +@@ -3,21 +3,23 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Translators: ++# Akın Ömeroğlu , 2015. #zanata ++# Jakub Filak , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-12-12 08:30-0500\n" ++"PO-Revision-Date: 2015-07-15 05:16-0400\n" + "Last-Translator: Jakub Filak \n" + "Language-Team: Turkish (http://www.transifex.com/projects/p/fedora-abrt/" + "language/tr/)\n" + "Language: tr\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -55,15 +57,17 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++# translation auto-copied from project abrt, version master, document abrt, author Akın Ömeroğlu ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" +-msgstr "" ++msgstr "'%s' sahipliği alınamıyor" + ++# translation auto-copied from project abrt, version master, document abrt, author Akın Ömeroğlu + #: ../src/applet/applet.c:350 + #, c-format + msgid "Can't open directory for writing '%s'" +-msgstr "" ++msgstr "'%s''i yazmak için dizin açılamıyor" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/applet.c:417 +@@ -179,10 +183,11 @@ msgstr "" + msgid "A New Problem has Occurred" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Akın Ömeroğlu + #: ../src/applet/applet.c:1064 + #, c-format + msgid "Can't show notification: %s" +-msgstr "" ++msgstr "Bildirim gösterilemiyor: %s" + + #. TODO: Terminate child's process? + #: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 +@@ -218,9 +223,10 @@ msgstr "" + msgid "Ask before stealing directory" + msgstr "" + ++# translation auto-copied from project abrt, version master, document abrt, author Akın Ömeroğlu + #: ../src/configuration-gui/abrt-config-widget.glade.h:2 + msgid "Automatically send uReport" +-msgstr "" ++msgstr "uRaporunu Otomatik Olarak Gönder" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:3 + msgid "Shortened reporting" +@@ -319,7 +325,7 @@ msgstr "Hakkında" + msgid "Quit" + msgstr "Çıkış" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -327,7 +333,7 @@ msgid "" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -339,94 +345,104 @@ msgid "Problem directory" + msgstr "Dİzin problemi" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Yapılandırma dosyası" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [seçenekler]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Sistem günlüğüne kaydet" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Program adlarını günlüğe ekle" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Bilinmeyen hata" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -490,73 +506,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -568,68 +585,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -654,7 +671,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -664,6 +682,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -895,6 +918,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1115,7 +1167,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1123,62 +1175,62 @@ msgid "" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Print found oopses on standard output" + msgstr "Standart çıktı üzerinde bulunan oops ları yazdır" + + #. 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1571,7 +1623,7 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" +-"Güvensiz bağlantıya izin vermek için \"güvensiz\" yaz <a href=\"https://" ++"Güvensiz bağlantıya izin vermek için \"insecure\" yaz <a href=\"https://" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + +@@ -1803,72 +1855,78 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Detaylı raporu göster" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1876,49 +1934,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1927,21 +1990,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/uk.po b/po/uk.po +index 9a03c18..0390559 100644 +--- a/po/uk.po ++++ b/po/uk.po +@@ -5,22 +5,24 @@ + # Translators: + # Jiří Moskovčák , 2011 + # Yuri Chornoivan , 2014 ++# Jakub Filak , 2015. #zanata ++# Yuri Chornoivan , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2014-12-12 09:09-0500\n" ++"PO-Revision-Date: 2015-07-20 10:21-0400\n" + "Last-Translator: Yuri Chornoivan \n" + "Language-Team: Ukrainian (http://www.transifex.com/projects/p/fedora-abrt/" + "language/uk/)\n" + "Language: uk\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -60,7 +62,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Не вдалося визначити стан у мережі за допомогою NetworkManager: %s" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не вдалося визначити права доступу до «%s»" +@@ -347,7 +349,7 @@ msgstr "Відомості" + msgid "Quit" + msgstr "Вийти" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -357,7 +359,7 @@ msgstr "" + "\n" + "Отримати дані з бази даних пакунків і зберегти назву пакунка і компонента" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -368,80 +370,92 @@ msgstr "" + msgid "Problem directory" + msgstr "Проблемний каталог" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "Файл налаштувань" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [параметри]" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "Використовувати вказане число як uid клієнта" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "Записувати до журналу syslog" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "Додати назви програм до журналу" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "Невідома помилка" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "«%s» не є коректним каталогом проблеми" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + 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 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Не уповноважено" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "Не вдалося отримати доступ до проблеми для внесення змін" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Спроба змінити власника каталогу зазнала невдачі. Докладніші дані можна " + "знайти у журналах системи." + +-#: ../src/dbus/abrt-dbus.c:559 ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "Не вдалося отримати доступ до проблеми для читання" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "«%s» не є коректною назвою елемента" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Не вдалося визначити розмір «%s»" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "Не залишилося вільного місця для записів щодо проблем" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Не вдалося вилучити елемент «%s» з каталогу проблеми «%s»" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++# translation auto-copied from project abrt, version master, document abrt, author Yuri Chornoivan ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "Не вдалося отримати доступ до даних проблеми" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -450,12 +464,12 @@ msgstr "" + "Назву «%s» було втрачено, будь ласка, перевірте, чи не запущено іншу службу " + "з цією назвою.\n" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "Завершувати роботу після вказаної кількості секунд бездіяльності" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Цю програму слід запускати від імені адміністратора (root)." + +@@ -531,74 +545,76 @@ msgstr "Кількість паралельних потоків обробки. + msgid "Maximal cache size in MiB. Default is " + msgstr "Максимальний розмір кешу у МіБ. Типовим є" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" +-msgstr "" ++msgstr "Вимикає розпізнавання" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" +-msgstr "" ++msgstr "Ім’я користувача у системі Red Hat Support" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" ++"Пароль у системі Red Hat Support. Якщо не вказано, програма надішле запит " ++"щодо його введення." + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" +-msgstr "" ++msgstr "Шляхи до сертифікатів SSL uReport або тип сертифікатів" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" +-msgstr "" ++msgstr "Вам також слід вказати --username, якщо використовується --password" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" +-msgstr "" ++msgstr "Ви можете скористатися --username або --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" +-msgstr "" ++msgstr "Ви можете скористатися --username або --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" +-msgstr "" ++msgstr "Ви можете скористатися --anonymous або --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "Некоректна кількість параметрів" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Невідоме значення параметра: «%s»\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" +-msgstr "" ++msgstr "Пароль:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" +-msgstr "" ++msgstr "Неможливо продовжувати без пароля\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" +-msgstr "" ++msgstr "Автозвітування з розпізнаванням HTTP" + +-#: ../src/daemon/abrt-auto-reporting.c:349 +-#, fuzzy ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" +-msgstr "Скорочене звітування без підтвердження" ++msgstr "Автозвітування з розпізнаванням клієнта SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" +-msgstr "" ++msgstr "анонімне автозвітування" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -618,68 +634,68 @@ msgstr "" + " КАТАЛОГ_ВИВАНТАЖЕННЯ - каталог, у якому зберігаються вивантажені архіви\n" + " НАЗВА_ФАЙЛА - назва файла вивантаженого архіву\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "Не є каталогом: «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "Пропускаємо: «{0}» (починається з похилої риски)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "Пропускаємо: «{0}» (починається з крапки)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "Пропускаємо: «{0}» (містить ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "Пропускаємо: «{0}» (містить пробіл)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "Пропускаємо: «{0}» (містить символ табуляції)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "Не вдалося змінити каталог на «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "Невідомий тип файла: «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "Не вдалося створити робочий каталог у «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "Не вдалося пересунути «{0}» до «{1}»" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "Не вдалося скопіювати «{0}» до «{1}»" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "Помилка під час перевірки «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "Розпаковуємо «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "Не вдалося створити каталог «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "Не вдалося розпакувати «{0}»" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "«{0}» успішно оброблено" + +@@ -703,7 +719,8 @@ msgstr "Не вдалося змінити власника «%s»: %s" + msgid "Deleting problem directory failed: %s" + msgstr "Спроба вилучення каталогу проблеми зазнала невдачі: %s" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "Не вдалося отримати дані проблеми з abrt-dbus: %s" +@@ -713,6 +730,12 @@ msgstr "Не вдалося отримати дані проблеми з abrt-d + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "Не вдалося отримати список проблем з abrt-dbus: %s" + ++# translation auto-copied from project abrt, version master, document abrt, author Yuri Chornoivan ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "Не вдалося перевірити, чи існує елемент, за допомогою abrt-dbus: %s" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -994,6 +1017,42 @@ msgstr "Не вистачає файла діагностичних даних: + msgid "All debuginfo files are available" + msgstr "Доступні всі файли діагностичних даних" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++"& [-y] [-i ФАЙЛ_ІД_ЗБИРАННЯ|-i -] [-e ШЛЯХ[:ШЛЯХ]...]\n" ++"\t[-r СХОВИЩЕ]\n" ++"\n" ++"Встановлює пакунки із діагностичними даними для усіх ідентифікаторів, " ++"вказаних\n" ++"у файлі ФАЙЛ_ІД_ЗБИРАННЯ до кешу системи ABRT." ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "Неінтерактивний режим, припускати відповідь «так» на усі питання" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "- означає STDIN, типове значення: build_ids" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "Отримати лише вказані файли" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++"Зразок, яким слід скористатися для пошуку сховищ, типове значення: *debug*" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "Ігнорований параметр" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1240,7 +1299,7 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr " Модулі сумнівної якості: %s." + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1251,7 +1310,7 @@ msgstr "" + "Видобути дані аварії (oops) з файла ФАЙЛ (або стандартного джерела вхідних " + "даних)" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Print found oopses on standard output" + msgstr "" + "Вивести знайдені повідомлення про аварії (oops) до стандартного виводу" +@@ -1259,48 +1318,48 @@ 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + "Створювати новий каталог проблеми для кожного знайденого повідомлення про " + "аварію (oops)" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Зберегти як -d DumpLocation, DumpLocation вказано у abrt.conf" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "Зберегти отримані дані у каталозі ПРОБЛЕМА" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "Зробити каталог даних проблеми доступним для всіх користувачів" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "Встановлення інтервалу створення каталогу проблеми у 1 секунду" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "Вивести рядки пошуку до стандартного виведення і завершити роботу" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "Не вдалося скомпілювати формальний вираз" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + "Не вдалося оновити дані проблеми, оскільки знайдено декілька повідомлень про " + "помилки." + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "Очікуємо %d секунд" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1311,11 +1370,11 @@ msgstr "" + "Видобути дані аварії Xorg з файла ФАЙЛ (або стандартного джерела вхідних " + "даних)" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "Вивести знайдені дані щодо аварії до стандартного виводу" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Створювати каталог проблеми для кожного знайденого повідомлення про аварійне " +@@ -1700,8 +1759,8 @@ msgid "" + "fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(warning)</a>" + msgstr "" +-"Вкажіть «Незахищене», щоб дозволити незахищене з’єднання <a href=\"https:/" +-"/fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " ++"Вкажіть «insecure», щоб дозволити незахищене з’єднання <a href=\"https://" ++"fedorahosted.org/abrt/wiki/AbrtRetraceServerInsecureConnection\" " + ">(попередження)</a>" + + #: ../src/plugins/collect_xsession_errors.xml.in.h:1 +@@ -1929,45 +1988,54 @@ msgstr "Вивести знайдені повідомлення про поми + msgid "Delete files with found oopses" + msgstr "Вилучити файли зі знайденими даними щодо помилок ядра" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "«%s» визначає декілька каталогів проблем" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "Користування: abrt-cli [--version] КОМАНДА [КАТАЛОГ]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "" ++"Користування: abrt-cli [--authenticate] [--version] КОМАНДА [КАТАЛОГ]..." + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "Показати список проблем [у вказаних КАТАЛОГах]" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "Вилучити каталог даних проблеми КАТАЛОГ" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "Проаналізувати і створити звіт за даними з вказаного каталогу" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "Показати дані щодо каталогу КАТАЛОГ" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "Вивести кількість нещодавніх аварійних завершень роботи" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "Обробка декількох проблем" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++"Увімкнено конфіденційні звіти, скористайтеся «abrt-cli -a КОМАНДА» для " ++"отримання даних виявлених проблем." ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + "Щоб дізнатися більше, скористайтеся командою «abrt-cli КОМАНДА --help»" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -1975,30 +2043,31 @@ msgstr "" + "%sВіддайте команду «abrt-cli report %s» для створення запису випадку на " + "порталі клієнтів Red Hat\n" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [параметри] [КАТАЛОГ]..." ++# translation auto-copied from project abrt, version master, document abrt, author Yuri Chornoivan ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [параметри]" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "Показати список лише проблем, щодо яких не складено звітів" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Показати докладний звіт" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Вивести список лише тих проблем, які сталися після вказаної часової позначки" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Вивести список лише тих проблем, які сталися до вказаної часової позначки" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2010,53 +2079,59 @@ msgstr "" + "«abrt-auto-reporting enabled», відданої від імені користувача з правами " + "доступу root\n" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [параметри] КАТАЛОГ..." + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + "Текст з розмірами, що перевищують вказані, буде обрізано під час показу" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Каталогу проблеми «%s» не існує" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [КАТАЛОГ]..." ++# translation auto-copied from project abrt, version master, document abrt, author Yuri Chornoivan ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& status" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "Вивести лише кількість проблеми без жодних повідомлень" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Вивести дані щодо проблем, які сталися після вказаної часової позначки" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "Не вдалося знайти проблему «%s»" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "Вилучаємо «%s»" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [параметри] КАТАЛОГ..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Вилучити КАТАЛОГ_ПРОБЛЕМИ після створення звіту" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "Вилучаємо «%s»" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "Дії: вилучити(rm), інформація(i), пропустити(s):" +@@ -2065,22 +2140,22 @@ msgstr "Дії: вилучити(rm), інформація(i), пропусти + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Дії: вилучити(rm), звітувати(e), інформація(i), пропустити(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "Звітуємо щодо «%s»" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "Для переходу до наступної проблеми натисніть ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + "Без аргументу --since, циклічний перехід між усіма виявленими проблемами." + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "Вибирає лише проблеми, виявлені після вказаної часової позначки" + +diff --git a/po/ur.po b/po/ur.po +index 17a707c..6cb0f40 100644 +--- a/po/ur.po ++++ b/po/ur.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/ur/)\n" + "Language: ur\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -302,14 +302,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -320,90 +320,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -465,73 +475,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -543,68 +554,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -628,7 +639,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -638,6 +650,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -861,6 +878,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1080,69 +1126,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1691,71 +1737,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1763,49 +1815,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1814,21 +1871,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/vi.po b/po/vi.po +index 3ef634e..5064275 100644 +--- a/po/vi.po ++++ b/po/vi.po +@@ -8,7 +8,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -18,7 +18,7 @@ msgstr "" + "language/vi/)\n" + "Language: vi\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -54,7 +54,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -308,14 +308,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -326,94 +326,104 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Đổi quyền chủ nhân thư mục không thành. Kiểm tra bản ghi hệ thống để biết " + "thêm chi tiết." + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Không thể có được kích thước của '%s'" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -476,73 +486,74 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -554,68 +565,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -639,7 +650,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -649,6 +661,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -872,6 +889,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1091,69 +1137,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1702,71 +1748,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "Hiển thị báo cáo chi tiết" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1774,49 +1826,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1825,21 +1882,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/zh_CN.po b/po/zh_CN.po +index b712421..f848292 100644 +--- a/po/zh_CN.po ++++ b/po/zh_CN.po +@@ -19,17 +19,17 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-09 07:47-0500\n" ++"PO-Revision-Date: 2015-07-17 08:20-0400\n" + "Last-Translator: Leah Liu \n" + "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora-" + "abrt/language/zh_CN/)\n" + "Language: zh-CN\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -70,7 +70,7 @@ msgid "Can't determine network status via NetworkManager: %s" + msgstr "无法通过 NetworkManager 确定网络状态:%s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "无法获取 '%s' 的所有权" +@@ -370,7 +370,7 @@ msgid "Quit" + msgstr "退出" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -380,7 +380,7 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n" + "查询软件包数据库并保存软件包和组件名称" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -392,93 +392,103 @@ msgid "Problem directory" + msgstr "问题目录" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "配置文件" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [options]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "使用 NUM 作为客户端 UID" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "记录至 syslog" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "在日志中添加程序名" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "未知错误" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' 不是有效的问题目录" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "无法修改 '%s' 元素" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "未授权" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "无法访问该问题进行修改" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "变更目录属主失败。请检查系统日志以了解更多。" + ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "无法访问该问题进行读取" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' 不是一个有效的元素名" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "无法获取 '%s' 的大小" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "没有留出问题空间" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "无法从问题目录 '%s' 中删除元素 '%s'" + ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "无法访问该问题" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -486,13 +496,13 @@ msgid "" + msgstr "名称 '%s' 已丢失,请检查其它拥有该名称的服务是否未运行。\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "闲置 NUM 秒后退出" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "此程序必须以 root 权限运行。" + +@@ -576,74 +586,75 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "以 MiB 计最大缓存尺寸。默认为" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "关闭认证" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Red Hat 支持用户名" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat 支持密码,如果不输入密码则会有提示。" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL 证书路径或者证书类型" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "您还需要为 --password 指定 --username" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "您可以使用 --username 或者 --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "您可以使用 --username 或者 --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "您可以使用 --anonymous 或者 --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "无效参数值" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "未知选项值:'%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "密码:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "需要密码才可继续\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP 认证的自动报告" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL 客户端认证的自动报告" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "匿名自动报告" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -662,68 +673,68 @@ msgstr "" + " UPLOAD_DIR - 保存已上传归档的目录\n" + " FILENAME - 已上传归档文件吗\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "不是一个目录:'{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "跳过:'{0}'(以斜杠开始)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "跳过:'{0}'(以点开始)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "跳过:'{0}'(包含..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "跳过:'{0}'(包含空格)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "跳过:'{0}'(包含 tab)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "无法该为目录 '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "未知文件类型:'{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "无法在 '{0}' 在这创建工作目录" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "无法从 '{0}' 迁移到 '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "无法从 '{0}' 迁复制 '{1}'" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "'{0}' 中的验证错误" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "正在解压缩 '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "无法创建 '{0}' 目录" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "无法解压缩 '{0}'" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "成功处理 '{0}'" + +@@ -752,7 +763,8 @@ msgid "Deleting problem directory failed: %s" + msgstr "删除问题目录失败:%s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "无法从 abrt-dbus 中获取问题数据:%s" +@@ -763,6 +775,11 @@ msgstr "无法从 abrt-dbus 中获取问题数据:%s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "无法从 abrt-dbus 中获取问题列表:%s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "无法通过 abrt-dbus 测试该元素是否存在:%s" ++ + # translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -1054,6 +1071,40 @@ msgstr "缺少 debuginfo 文件:{0}" + msgid "All debuginfo files are available" + msgstr "所有调试信息文件均可用。" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"为 BUILD_IDS_FILE 中列出的所有 build-id 在 ABRT 系统缓存中\n" ++"安装 debuginfo 软件包。" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "非互动性,假设所有问题的答案都是 ‘Yes’。" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "- 即 STDIN,默认 :build_ids" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "只下载指定的文件" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "搜索存储库时使用的模式,默认为:*debug*" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "忽略的选项" ++ + # translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" +@@ -1319,7 +1370,7 @@ msgid " Tainted modules: %s." + msgstr "受污染的模块:%s。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1329,7 +1380,7 @@ msgstr "& [-vusoxm] [-d 目录]/[-D] [文件]\n" + "从指定文件(或标准输入)中提取出错信息" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Print found oopses on standard output" + msgstr "打印在标准输出中找到的严重错误(Oops)" + +@@ -1337,52 +1388,52 @@ 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "在 DIR 中为每个发现的 oops 生成新问题目录" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "与 -d DumpLocation 相同,是在 abrt.conf 中指定 DumpLocation。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "保存提取信息到PROBLEM" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "使问题目录可读" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "每 1 秒创建一个控流问题目录" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "输出搜索字符串至标准输出并退出" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "编译正则表达式失败" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "无法更新问题:发现超过一个异常" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "休眠 %d 秒" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1392,12 +1443,12 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "从文件 FILE (或标准输入)提取 Xorg 崩溃信息" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "在标准输出上输出找到的崩溃数据" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "在 DIR 中为每个发现的崩溃生成新的问题目录" + +@@ -1977,7 +2028,7 @@ msgstr "接收数据失败:NSS 错误 %d。" + # translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:398 + msgid "Malformed chunked response." +-msgstr "畸形的块响应。" ++msgstr "异常的分块响应。" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/https-utils.c:423 +@@ -2065,82 +2116,86 @@ msgid "Delete files with found oopses" + msgstr "删除已找到的内核错误文件" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "'%s' 标识出多于一个问题目录" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "用法:abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "列出 [in DIRs] 的问题" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "删除问题目录 DIR" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "分析并报告 DIR 中的问题数据" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "输出有关 DIR 的信息" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "显示最近的崩溃计数" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "处理多个问题" + ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "启用专用报告,使用 'abrt-cli -a COMMAND' 获取探测到的问题。" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "详情请查看 'abrt-cli COMMAND --help'" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "%s 运行 'abrt-cli report %s' 在 Red Hat 客户门户网站中创建问题单\n" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [选项]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "只列出未报告的问题" + + # translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "显示详细报告" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "仅列出比指定时间更晚的问题" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "仅列出比指定时间戳更早的问题" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2151,55 +2206,59 @@ msgstr "" + "作为有 root 特权的用户使用命令 'abrt-auto-reporting enabled'\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." +-msgstr "& info [options] DIR..." ++msgstr "& info [选项] DIR..." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" +-msgstr "大于此处的文字在显示时会被削减" ++msgstr "超出此大小的文字会在显示时被删节" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "没有问题目录 '%s'" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& status" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "仅显示问题计数。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "仅显示比指定时间更晚的问题。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "无法找到问题 '%s'" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "正在删除 '%s'" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "报告后删除 PROBLEM_DIR" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "正在删除 '%s'" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "动作:remove(rm), info(i), skip(s):" +@@ -2208,21 +2267,21 @@ msgstr "动作:remove(rm), info(i), skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "动作:remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "正在报告 '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "下一个问题请按 ENTER:" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "没有 --since 参数,则重复所有探测到的问题。" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "只选择时间戳之后探测到的问题" + +diff --git a/po/zh_HK.po b/po/zh_HK.po +index 692b311..fd2175a 100644 +--- a/po/zh_HK.po ++++ b/po/zh_HK.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "fedora-abrt/language/zh_HK/)\n" + "Language: zh-HK\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +diff --git a/po/zh_TW.po b/po/zh_TW.po +index 56ed1ce..75e83e6 100644 +--- a/po/zh_TW.po ++++ b/po/zh_TW.po +@@ -7,21 +7,22 @@ + # Jiří Moskovčák , 2011 + # Terry Chuang , 2014 + # Chester Cheng , 2015. #zanata ++# Terry Chuang , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-01-06 01:13-0500\n" +-"Last-Translator: Chester Cheng \n" ++"PO-Revision-Date: 2015-07-17 07:14-0400\n" ++"Last-Translator: Terry Chuang \n" + "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-" + "abrt/language/zh_TW/)\n" + "Language: zh-TW\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -62,7 +63,7 @@ msgid "Can't determine network status via NetworkManager: %s" + msgstr "無法透過 NetworkManager 判定網路狀態:%s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "無法掌握「%s」的擁有權" +@@ -370,7 +371,7 @@ msgid "Quit" + msgstr "退出" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -380,7 +381,7 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n" + "查詢軟體包資料庫,並儲存軟體包與元件名稱" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -392,93 +393,104 @@ msgid "Problem directory" + msgstr "問題目錄" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "組態檔" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "& [選項]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "使用 NUM 作為客戶端 UID" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "紀錄至 syslog" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "加入程式名稱至紀錄檔" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "未知錯誤" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "「%s」不是有效的問題目錄" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "無法修改「%s」元素" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "未授權" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "無法存取問題以修改" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "目錄擁有者變更失敗。請檢查紀錄檔瞭解更多細節。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "無法存取問題以閱讀" ++ ++# translation auto-copied from project abrt, version master, document abrt ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "「%s」不是有效的元素名稱" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "無法取得「%s」的大小" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "無剩餘問題空間" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "無法從問題目錄「%2$s」刪除「%1$s」元素" + ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "無法存取問題" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -486,13 +498,13 @@ msgid "" + msgstr "「%s」名稱已遺失,請確認其他擁有該名稱的服務並未執行中。\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "在停止使用 NUM 秒後離開" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "此程式必須以 root 身份執行。" + +@@ -576,73 +588,74 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "最大快取大小,單位為 MiB。預設為 " + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "關閉身份認證" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "Red Hat Support 使用者名稱" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support 密碼;如果未提供密碼,將會發出提示" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL 憑證路徑或憑證類型" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "使用 --password 時必須指定 --username" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "您可以使用 --username 或 --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "您可以使用 --username 或 --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "您可以使用 --anonymous 或 --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "引數數量無效" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "選項值不明:「%s」\n" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "密碼:" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "沒有密碼無法繼續\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP 身份認證自動回報" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL 用戶端身份憑證自動回報" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "匿名自動回報" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -661,68 +674,68 @@ msgstr "" + " UPLOAD_DIR - 上傳過的封存檔之儲存目錄\n" + " FILENAME - 上傳過的封存檔名稱\n" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "不是目錄:「{0}」" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "略過:「{0}」(以 / 起頭)" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "略過:「{0}」(以 . 起頭)" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "略過:「{0}」(含有 ..)" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "略過:「{0}」(含有空白)" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "略過:「{0}」(含有跳格符)" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "無法切換目錄至「{0}」" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "未知檔案類型:「{0}」" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "無法在「{0}」中建立工作目錄" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "無法將「{0}」移動至「{1}」" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "無法將「{0}」複製至「{1}」" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "驗證「{0}」上的錯誤" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "正在解開「{0}」" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "無法建立「{0}」目錄" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "無法解開「{0}」" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "「{0}」處理成功" + +@@ -751,7 +764,8 @@ msgid "Deleting problem directory failed: %s" + msgstr "刪除問題目錄失敗:%s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "無法從 abrt-dbus 取得問題資料:%s" +@@ -762,6 +776,11 @@ msgstr "無法從 abrt-dbus 取得問題資料:%s" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "無法從 abrt-dbus 取得問題清單:%s" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "無法測試元素是否存在 abrt-dbus 上:%s" ++ + # translation auto-copied from project abrt, version master, document abrt + #: ../src/lib/ignored_problems.c:233 + #, c-format +@@ -1052,6 +1071,40 @@ msgstr "遺失 debuginfo 檔:{0}" + msgid "All debuginfo files are available" + msgstr "所有的 debuginfo 檔案皆可用" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"為列在 BUILD_IDS_FILE 中的所有 build-id 安裝 debuginfo 套件至\n" ++"ABRT 系統快取。" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "非互動式,假設所有問題的答案皆為「是」" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "- 代表 STDIN,預設值為:build_ids" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "僅下載指定的檔案" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "搜尋軟體庫時所使用的格式,預設值為:*debug*" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "忽略的選項" ++ + # translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" +@@ -1316,7 +1369,7 @@ msgid " Tainted modules: %s." + msgstr "損壞的模組:%s。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1326,7 +1379,7 @@ msgstr "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "從 FILE (或標準輸入) 抽出 oops" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + msgid "Print found oopses on standard output" + msgstr "列印找到的 oops 於標準輸出上" + +@@ -1334,52 +1387,52 @@ 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "在 DIR 內為每個找到的 oops 建立新的問題目錄" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "與 -d DumpLocation 相同,DumpLocation 於 abrt.conf 內指定" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "將抽出的資訊存入 PROBLEM 中" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "讓問題目錄全世界都可以讀取" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "節制問題目錄的建立速度為每秒 1 個" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "將搜尋字串列印在 stdout 上並離開" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "無法編譯 regex" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "無法更新問題:找到超過一份 oops" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "正睡眠 %d 秒" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1389,12 +1442,12 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "從 FILE (或標準輸出) 抽出 Xorg 當機資訊" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "將找到的崩潰資料列印在標準輸出上" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "在 DIR 內為每個找到的當機資料建立問題目錄" + +@@ -2063,83 +2116,87 @@ msgid "Delete files with found oopses" + msgstr "刪除找到的 oops 其檔案" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "「%s」辨識出一個以上的問題目錄" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." +-msgstr "用法:abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." ++msgstr "使用方法:abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "列出 [DIRs 中] 的問題" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "從問題目錄 DIR 移除檔案" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "在 DIR 內分析並回報問題資料" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "列印有關 DIR 的資訊" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "列印最近程式崩潰的數目" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "處理多項問題" + ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "已啟用私密報告,請使用 'abrt-cli -a COMMAND' 以取得偵測到的問題。" ++ + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "請見 'abrt-cli COMMAND --help' 以瞭解更多資訊" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "%s執行 'abrt-cli report %s' 以在 Red Hat 客戶入口網站中建立案例\n" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." +-msgstr "& list [選項] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" ++msgstr "& list [options]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "僅列出尚未回報的問題" + + # translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "顯示詳細的回報" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "僅列出比指定的時間戳記更近期的問題" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "僅列出比指定的時間戳記更之前的問題" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2150,55 +2207,59 @@ msgstr "" + "身份,透過「abrt-auto-reporting enabled」 來啟用它\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "& info [選項] DIR..." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "大於此的文字會刪減顯示" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "沒有這個問題目錄「%s」" + +-# translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." +-msgstr "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" ++msgstr "& status" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "僅列印問題數目而不帶任何訊息" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "僅列印比指定的時間戳記更近期的問題" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, 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" + +-#: ../src/cli/report.c:28 ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" ++msgstr "找不到問題「%s」" ++ ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#, c-format ++msgid "Deleting '%s'" ++msgstr "正在刪除「%s」" ++ ++#: ../src/cli/report.c:70 + msgid "& report [options] DIR..." + msgstr "& report [選項] DIR..." + +-#: ../src/cli/report.c:38 ++#: ../src/cli/report.c:80 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "在回報後移除 PROBLEM_DIR" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 +-#, c-format +-msgid "Deleting '%s'" +-msgstr "正在刪除「%s」" +- + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "可用動作:移除 remove(rm)、資訊 info(i)、略過 skip(s):" +@@ -2207,21 +2268,21 @@ msgstr "可用動作:移除 remove(rm)、資訊 info(i)、略過 skip(s):" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "可用動作:移除 remove(rm)、回報 report(e)、資訊 info(i)、略過 skip(s):" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "正在回報「%s」" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "下個問題請按 ENTER 鍵。" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "若不用 --since 引數,則會在所有偵測到的問題之間迭代。" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "僅選取時間戳記之後的問題" + +diff --git a/po/zu.po b/po/zu.po +index dc944c2..ff23824 100644 +--- a/po/zu.po ++++ b/po/zu.po +@@ -7,7 +7,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-01-05 07:16-0500\n" ++"POT-Creation-Date: 2015-07-14 15:37+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -17,7 +17,7 @@ msgstr "" + "language/zu/)\n" + "Language: zu\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.5.1\n" ++"X-Generator: Zanata 3.6.2\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -53,7 +53,7 @@ msgstr "" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + +-#: ../src/applet/applet.c:342 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:42 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "" +@@ -301,14 +301,14 @@ msgstr "" + msgid "Quit" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:382 ++#: ../src/daemon/abrt-action-save-package-data.c:378 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "Query package database and save package and component name" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:394 ++#: ../src/daemon/abrt-action-save-package-data.c:390 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 + #: ../src/plugins/abrt-action-analyze-c.c:78 + #: ../src/plugins/abrt-action-analyze-oops.c:48 +@@ -319,90 +319,100 @@ msgstr "" + msgid "Problem directory" + msgstr "" + +-#: ../src/daemon/abrt-action-save-package-data.c:395 ++#: ../src/daemon/abrt-action-save-package-data.c:391 + msgid "Configuration file" + msgstr "" + +-#: ../src/daemon/abrt-server.c:786 ../src/dbus/abrt-dbus.c:781 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 + #: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 + msgid "& [options]" + msgstr "" + +-#: ../src/daemon/abrt-server.c:797 ++#: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" + msgstr "" + +-#: ../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 ++#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 ++#: ../src/plugins/abrt-dump-xorg.c:252 + msgid "Log to syslog" + msgstr "" + +-#: ../src/daemon/abrt-server.c:799 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 + msgid "Add program names to log" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:123 ++#: ../src/dbus/abrt-dbus.c:132 + msgid "Unknown error" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:188 ++#: ../src/dbus/abrt-dbus.c:221 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:223 ++#: ../src/dbus/abrt-dbus.c:256 + #, c-format + msgid "'%s' element can't be modified" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:244 ../src/dbus/abrt-dbus.c:446 +-#: ../src/dbus/abrt-dbus.c:498 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 ++#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 ++#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:298 + msgid "Can't access the problem for modification" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:461 ++#: ../src/dbus/abrt-dbus.c:514 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:559 ++#: ../src/dbus/abrt-dbus.c:635 ++msgid "Can't access the problem for reading" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 ++#: ../src/dbus/abrt-dbus.c:911 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:580 ++#: ../src/dbus/abrt-dbus.c:711 + #, c-format + msgid "Can't get size of '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:595 ++#: ../src/dbus/abrt-dbus.c:726 + msgid "No problem space left" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:627 ++#: ../src/dbus/abrt-dbus.c:776 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:763 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:803 ++msgid "Can't access the problem" ++msgstr "" ++ ++#: ../src/dbus/abrt-dbus.c:983 ../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 "" + +-#: ../src/dbus/abrt-dbus.c:790 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 + #: ../src/daemon/abrtd.c:499 + msgid "Exit after NUM seconds of inactivity" + msgstr "" + +-#: ../src/dbus/abrt-dbus.c:808 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + +@@ -464,73 +474,74 @@ msgstr "" + msgid "Maximal cache size in MiB. Default is " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:176 ++#: ../src/daemon/abrt-auto-reporting.c:200 ++#: ../src/daemon/abrt-auto-reporting.c:208 + msgid "& [ " + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:213 ++#: ../src/daemon/abrt-auto-reporting.c:235 + msgid "Turns the authentication off" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:214 ++#: ../src/daemon/abrt-auto-reporting.c:236 + msgid "Red Hat Support user name" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:215 ++#: ../src/daemon/abrt-auto-reporting.c:237 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:216 ++#: ../src/daemon/abrt-auto-reporting.c:238 + msgid "uReport SSL certificate paths or certificate type" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:227 ++#: ../src/daemon/abrt-auto-reporting.c:254 + msgid "You also need to specify --username for --password" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:233 ++#: ../src/daemon/abrt-auto-reporting.c:260 + msgid "You can use either --username or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:239 ++#: ../src/daemon/abrt-auto-reporting.c:266 + msgid "You can use either --username or --anonymous" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:245 ++#: ../src/daemon/abrt-auto-reporting.c:272 + msgid "You can use either --anonymous or --certificate" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:251 ++#: ../src/daemon/abrt-auto-reporting.c:279 + msgid "Invalid number of arguments" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:270 ++#: ../src/daemon/abrt-auto-reporting.c:298 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:305 ++#: ../src/daemon/abrt-auto-reporting.c:338 + msgid "Password:" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:308 ++#: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" + msgstr "" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:347 ++#: ../src/daemon/abrt-auto-reporting.c:382 + msgid "HTTP Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:349 ++#: ../src/daemon/abrt-auto-reporting.c:384 + msgid "SSL Client Authenticated auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-auto-reporting.c:351 ++#: ../src/daemon/abrt-auto-reporting.c:386 + msgid "anonymous auto reporting" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:69 ++#: ../src/daemon/abrt-handle-upload.in:135 + #, c-format + msgid "" + "Usage: %s [-vd] ABRT_SPOOL_DIR UPLOAD_DIR FILENAME\n" +@@ -542,68 +553,68 @@ msgid "" + " FILENAME - Uploaded archive file name\n" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:105 +-#: ../src/daemon/abrt-handle-upload.in:108 ++#: ../src/daemon/abrt-handle-upload.in:171 ++#: ../src/daemon/abrt-handle-upload.in:174 + msgid "Not a directory: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:111 ++#: ../src/daemon/abrt-handle-upload.in:177 + msgid "Skipping: '{0}' (starts with slash)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:114 ++#: ../src/daemon/abrt-handle-upload.in:180 + msgid "Skipping: '{0}' (starts with dot)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:117 ++#: ../src/daemon/abrt-handle-upload.in:183 + msgid "Skipping: '{0}' (contains ..)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:120 ++#: ../src/daemon/abrt-handle-upload.in:186 + msgid "Skipping: '{0}' (contains space)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:123 ++#: ../src/daemon/abrt-handle-upload.in:189 + msgid "Skipping: '{0}' (contains tab)" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:128 ++#: ../src/daemon/abrt-handle-upload.in:194 + msgid "Can't change directory to '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:139 ++#: ../src/daemon/abrt-handle-upload.in:205 + msgid "Unknown file type: '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:144 ++#: ../src/daemon/abrt-handle-upload.in:210 + msgid "Can't create working directory in '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:155 ++#: ../src/daemon/abrt-handle-upload.in:221 + msgid "Can't move '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:160 ++#: ../src/daemon/abrt-handle-upload.in:226 + msgid "Can't copy '{0}' to '{1}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:164 ++#: ../src/daemon/abrt-handle-upload.in:230 + msgid "Verification error on '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:166 ++#: ../src/daemon/abrt-handle-upload.in:232 + msgid "Unpacking '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:170 ++#: ../src/daemon/abrt-handle-upload.in:236 + msgid "Can't create '{0}' directory" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:174 ++#: ../src/daemon/abrt-handle-upload.in:240 + msgid "Can't unpack '{0}'" + msgstr "" + +-#: ../src/daemon/abrt-handle-upload.in:198 ++#: ../src/daemon/abrt-handle-upload.in:260 + msgid "'{0}' processed successfully" + msgstr "" + +@@ -627,7 +638,8 @@ msgstr "" + msgid "Deleting problem directory failed: %s" + msgstr "" + +-#: ../src/lib/problem_api_dbus.c:133 ++#: ../src/lib/problem_api_dbus.c:133 ../src/lib/problem_api_dbus.c:206 ++#: ../src/lib/problem_api_dbus.c:286 + #, c-format + msgid "Can't get problem data from abrt-dbus: %s" + msgstr "" +@@ -637,6 +649,11 @@ msgstr "" + msgid "Can't get problem list from abrt-dbus: %s" + msgstr "" + ++#: ../src/lib/problem_api_dbus.c:250 ++#, c-format ++msgid "Can't test whether the element exists over abrt-dbus: %s" ++msgstr "" ++ + #: ../src/lib/ignored_problems.c:233 + #, c-format + msgid "Can't create temporary file '%s'" +@@ -860,6 +877,35 @@ msgstr "" + msgid "All debuginfo files are available" + msgstr "" + ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:43 ++msgid "" ++"& [-y] [-i BUILD_IDS_FILE|-i -] [-e PATH[:PATH]...]\n" ++"\t[-r REPO]\n" ++"\n" ++"Installs debuginfo packages for all build-ids listed in BUILD_IDS_FILE to\n" ++"ABRT system cache." ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:66 ++msgid "Noninteractive, assume 'Yes' to all questions" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 ++msgid "- means STDIN, default: build_ids" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 ++msgid "Download only specified files" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:69 ++msgid "Pattern to use when searching for repos, default: *debug*" ++msgstr "" ++ ++#: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:70 ++msgid "Ignored option" ++msgstr "" ++ + #: ../src/plugins/abrt-action-perform-ccpp-analysis.in:62 + msgid "" + "Ok to upload core dump? (It may contain sensitive data). If your answer is " +@@ -1079,69 +1125,69 @@ msgstr "" + msgid " Tainted modules: %s." + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:254 ++#: ../src/plugins/abrt-dump-oops.c:262 + msgid "" + "& [-vusoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract oops from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:274 ++#: ../src/plugins/abrt-dump-oops.c:282 + 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:278 ++#: ../src/plugins/abrt-dump-oops.c:286 + msgid "Create new problem directory in DIR for every oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:279 ../src/plugins/abrt-dump-xorg.c:247 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:280 ++#: ../src/plugins/abrt-dump-oops.c:288 + msgid "Save the extracted information in PROBLEM" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:281 ../src/plugins/abrt-dump-xorg.c:248 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 + msgid "Make the problem directory world readable" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:282 ++#: ../src/plugins/abrt-dump-oops.c:290 + msgid "Throttle problem directory creation to 1 per second" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:283 ../src/plugins/abrt-dump-xorg.c:249 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 + msgid "Print search string(s) to stdout and exit" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:311 ++#: ../src/plugins/abrt-dump-oops.c:319 + msgid "Failed to compile regex" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:402 ++#: ../src/plugins/abrt-dump-oops.c:410 + msgid "Can't update the problem: more than one oops found" + msgstr "" + +-#: ../src/plugins/abrt-dump-oops.c:421 ++#: ../src/plugins/abrt-dump-oops.c:429 + #, c-format + msgid "Sleeping for %d seconds" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:237 ++#: ../src/plugins/abrt-dump-xorg.c:245 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "Extract Xorg crash from FILE (or standard input)" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "Print found crash data on standard output" + msgstr "" + +-#: ../src/plugins/abrt-dump-xorg.c:246 ++#: ../src/plugins/abrt-dump-xorg.c:254 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + +@@ -1690,71 +1736,77 @@ msgstr "" + msgid "Delete files with found oopses" + msgstr "" + +-#: ../src/cli/abrt-cli-core.c:91 ++#: ../src/cli/abrt-cli-core.c:100 + #, c-format + msgid "'%s' identifies more than one problem directory" + msgstr "" + +-#: ../src/cli/abrt-cli.c:144 +-msgid "Usage: abrt-cli [--version] COMMAND [DIR]..." ++#: ../src/cli/abrt-cli.c:130 ++msgid "Usage: abrt-cli [--authenticate] [--version] COMMAND [DIR]..." + msgstr "" + +-#: ../src/cli/abrt-cli.c:148 ++#: ../src/cli/abrt-cli.c:134 + msgid "List problems [in DIRs]" + msgstr "" + +-#: ../src/cli/abrt-cli.c:149 ++#: ../src/cli/abrt-cli.c:135 + msgid "Remove problem directory DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:150 ++#: ../src/cli/abrt-cli.c:136 + msgid "Analyze and report problem data in DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:151 ++#: ../src/cli/abrt-cli.c:137 + msgid "Print information about DIR" + msgstr "" + +-#: ../src/cli/abrt-cli.c:152 ++#: ../src/cli/abrt-cli.c:138 + msgid "Print the count of the recent crashes" + msgstr "" + +-#: ../src/cli/abrt-cli.c:153 ++#: ../src/cli/abrt-cli.c:139 + msgid "Process multiple problems" + msgstr "" + +-#: ../src/cli/abrt-cli.c:168 ++#: ../src/cli/abrt-cli.c:153 ++msgid "" ++"Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " ++"problems." ++msgstr "" ++ ++#: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + +-#: ../src/cli/list.c:127 ++#: ../src/cli/list.c:121 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" + +-#: ../src/cli/list.c:179 +-msgid "& list [options] [DIR]..." ++#: ../src/cli/list.c:173 ++msgid "& list [options]" + msgstr "" + +-#: ../src/cli/list.c:188 ++#: ../src/cli/list.c:182 + msgid "List only not-reported problems" + msgstr "" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:190 ../src/cli/list.c:243 ++#: ../src/cli/list.c:184 ../src/cli/list.c:237 + msgid "Show detailed report" + msgstr "" + +-#: ../src/cli/list.c:191 ++#: ../src/cli/list.c:185 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:192 ++#: ../src/cli/list.c:186 + msgid "List only the problems older than specified timestamp" + msgstr "" + +-#: ../src/cli/list.c:224 ++#: ../src/cli/list.c:212 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1762,49 +1814,54 @@ msgid "" + "'abrt-auto-reporting enabled' as a user with root privileges\n" + msgstr "" + +-#: ../src/cli/list.c:235 ++#: ../src/cli/list.c:229 + msgid "& info [options] DIR..." + msgstr "" + +-#: ../src/cli/list.c:244 ++#: ../src/cli/list.c:238 + msgid "Text larger than this will be shown abridged" + msgstr "" + +-#: ../src/cli/list.c:264 ++#: ../src/cli/list.c:258 + #, c-format + msgid "No such problem directory '%s'" + msgstr "" + +-#: ../src/cli/status.c:70 +-msgid "& status [DIR]..." ++#: ../src/cli/status.c:63 ++msgid "& status" + msgstr "" + +-#: ../src/cli/status.c:78 ++#: ../src/cli/status.c:71 + msgid "Print only the problem count without any message" + msgstr "" + +-#: ../src/cli/status.c:79 ++#: ../src/cli/status.c:72 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + +-#: ../src/cli/status.c:104 ++#: ../src/cli/status.c:88 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" + +-#: ../src/cli/report.c:28 +-msgid "& report [options] DIR..." +-msgstr "" +- +-#: ../src/cli/report.c:38 +-msgid "Remove PROBLEM_DIR after reporting" ++#: ../src/cli/report.c:34 ++#, c-format ++msgid "Can't find problem '%s'" + msgstr "" + +-#: ../src/cli/report.c:71 ../src/cli/process.c:70 ++#: ../src/cli/report.c:54 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "" + ++#: ../src/cli/report.c:70 ++msgid "& report [options] DIR..." ++msgstr "" ++ ++#: ../src/cli/report.c:80 ++msgid "Remove PROBLEM_DIR after reporting" ++msgstr "" ++ + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), info(i), skip(s):" + msgstr "" +@@ -1813,21 +1870,21 @@ msgstr "" + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + +-#: ../src/cli/process.c:77 ++#: ../src/cli/process.c:78 + #, c-format + msgid "Reporting '%s'" + msgstr "" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:133 ++#: ../src/cli/process.c:127 + msgid "For next problem press ENTER:" + msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" + +-#: ../src/cli/process.c:150 ++#: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" + msgstr "" + +-- +2.4.3 + diff --git a/SOURCES/0157-Fix-missing-newline-in-po-fr.po.patch b/SOURCES/0157-Fix-missing-newline-in-po-fr.po.patch new file mode 100644 index 0000000..ff27dc0 --- /dev/null +++ b/SOURCES/0157-Fix-missing-newline-in-po-fr.po.patch @@ -0,0 +1,26 @@ +From 77ad2378af60fa23ba1ea214826788e89905efe7 Mon Sep 17 00:00:00 2001 +From: Richard Marko +Date: Wed, 29 Jul 2015 15:18:43 +0200 +Subject: [PATCH] Fix missing newline in po/fr.po + +Signed-off-by: Richard Marko +--- + po/fr.po | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/po/fr.po b/po/fr.po +index 8bc08a1..c0084ce 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -622,7 +622,7 @@ msgstr "Mot de passe :" + + #: ../src/daemon/abrt-auto-reporting.c:341 + msgid "Cannot continue without password\n" +-msgstr "Impossible de continuer sans mot de passe" ++msgstr "Impossible de continuer sans mot de passe\n" + + #. Print only the part before ':' of a string like "username:password" + #: ../src/daemon/abrt-auto-reporting.c:382 +-- +2.4.3 + diff --git a/SOURCES/0158-doc-fix-related-to-conditional-compilation-of-man-pa.patch b/SOURCES/0158-doc-fix-related-to-conditional-compilation-of-man-pa.patch new file mode 100644 index 0000000..c0acdf9 --- /dev/null +++ b/SOURCES/0158-doc-fix-related-to-conditional-compilation-of-man-pa.patch @@ -0,0 +1,44 @@ +From 6e4de5e17a8ac9739b55d9d2e3c34599c6af06db Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 28 Jul 2015 16:20:47 +0200 +Subject: [PATCH] doc: fix related to conditional compilation of man page + +abrt-auto-reporting.txt is a copy of either +abrt-auto-reporting-authenticated.txt or +abrt-auto-reporting-unauthenticated.txt. abrt-auto-reporting.txt file always +exists because MAN1_TXT variable contains it and is distributed (the file is listed +in the EXTRA_DIST variable). It would be difficult to ensure +to have abrt-auto-reporting.txt in the MAN1_TXT and exclude it +from the EXTRA_DIST. So enforce copy, to get the right version of man page, seems +like the easiest way. + +Related to rhbz#1191572 + +Signed-off-by: Matej Habrnal +--- + doc/Makefile.am | 9 +++++++++ + 1 file changed, 9 insertions(+) + +diff --git a/doc/Makefile.am b/doc/Makefile.am +index 8aac85e..d95d9fb 100644 +--- a/doc/Makefile.am ++++ b/doc/Makefile.am +@@ -75,6 +75,15 @@ MAN_SOURCE = + MAN_SOURCE += abrt-auto-reporting-authenticated.txt + MAN_SOURCE += abrt-auto-reporting-unauthenticated.txt + ++# abrt-auto-reporting.txt is a copy of either ++# abrt-auto-reporting-authenticated.txt or ++# abrt-auto-reporting-unauthenticated.txt. abrt-auto-reporting.txt file always ++# exists because MAN1_TXT variable contains it and is distributed (the file is listed ++# in the EXTRA_DIST variable). It would be difficult to ensure ++# to have abrt-auto-reporting.txt in the MAN1_TXT and exclude it ++# from the EXTRA_DIST. So enforce copy, to get the right version of man page, seems ++# like the easiest way. ++.PHONY: abrt-auto-reporting.txt + if AUTHENTICATED_AUTOREPORTING + abrt-auto-reporting.txt: abrt-auto-reporting-authenticated.txt + else +-- +2.4.3 + diff --git a/SOURCES/0160-dbus-api-unify-reporting-of-errors.patch b/SOURCES/0160-dbus-api-unify-reporting-of-errors.patch new file mode 100644 index 0000000..c3e48f3 --- /dev/null +++ b/SOURCES/0160-dbus-api-unify-reporting-of-errors.patch @@ -0,0 +1,82 @@ +From c4ed648911bf4fb7b5c2c9596bd2418f4f836e00 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 11 Aug 2015 09:54:55 +0200 +Subject: [PATCH] dbus-api: unify reporting of errors + +User ERR_PTR for failures in all functions because some of the functions +use NULL as a valid response (NULL is an empty GList). + +Related: rhbz#1224984 + +Signed-off-by: Jakub Filak +--- + src/include/libabrt.h | 12 +++++++----- + src/lib/problem_api_dbus.c | 2 +- + 2 files changed, 8 insertions(+), 6 deletions(-) + +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 5d74aa3..3b17a64 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -135,7 +135,7 @@ void koops_print_suspicious_strings_filtered(const regex_t **filterout); + + Requires authorization + +- @return 0 if successfull non-zeru on failure ++ @return 0 if successful; non-zero on failure + */ + int chown_dir_over_dbus(const char *problem_dir_path); + +@@ -161,7 +161,8 @@ char *load_text_over_dbus(const char *problem_id, const char *element_name); + @brief Delets multiple problems specified by their id (as returned from problem_data_save) + + @param problem_dir_paths List of problem ids +- @return 0 if operation was successfull, non-zero on failure ++ ++ @return 0 if operation was successful, non-zero on failure + */ + + int delete_problem_dirs_over_dbus(const GList *problem_dir_paths); +@@ -169,14 +170,14 @@ int delete_problem_dirs_over_dbus(const GList *problem_dir_paths); + /** + @brief Fetches problem information for specified problem id + +- @return problem_data_t or NULL on failure ++ @return a valid pointer to problem_data_t or ERR_PTR on failure + */ + problem_data_t *get_problem_data_dbus(const char *problem_dir_path); + + /** + @brief Fetches full problem data for specified problem id + +- @return problem_data_t or ERR_PTR on failure ++ @return a valid pointer to problem_data_t or ERR_PTR on failure + */ + problem_data_t *get_full_problem_data_over_dbus(const char *problem_dir_path); + +@@ -184,7 +185,8 @@ problem_data_t *get_full_problem_data_over_dbus(const char *problem_dir_path); + @brief Fetches all problems from problem database + + @param authorize If set to true will try to fetch even problems owned by other users (will require root authorization over policy kit) +- @return List of problem ids or NULL on failure ++ ++ @return List of problem ids or ERR_PTR on failure (NULL is an empty list) + */ + GList *get_problems_over_dbus(bool authorize); + +diff --git a/src/lib/problem_api_dbus.c b/src/lib/problem_api_dbus.c +index 5148932..dd06633 100644 +--- a/src/lib/problem_api_dbus.c ++++ b/src/lib/problem_api_dbus.c +@@ -132,7 +132,7 @@ problem_data_t *get_problem_data_dbus(const char *problem_dir_path) + { + error_msg(_("Can't get problem data from abrt-dbus: %s"), error->message); + g_error_free(error); +- return NULL; ++ return ERR_PTR; + } + + problem_data_t *pd = problem_data_new(); +-- +2.4.3 + diff --git a/SOURCES/0161-cli-fix-testing-of-DBus-API-return-codes.patch b/SOURCES/0161-cli-fix-testing-of-DBus-API-return-codes.patch new file mode 100644 index 0000000..fc233da --- /dev/null +++ b/SOURCES/0161-cli-fix-testing-of-DBus-API-return-codes.patch @@ -0,0 +1,56 @@ +From b5c28f6c7ce86fc53048d5c51a4850a82f48f876 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 11 Aug 2015 10:01:53 +0200 +Subject: [PATCH] cli: fix testing of DBus API return codes + +The DBus wrapper functions uses ERR_PTR to report an error, so the +callers has to test the returned pointers for NULL and for ERR_PTR. + +Related: rhbz#1224984 + +Signed-off-by: Jakub Filak +--- + src/cli/list.c | 3 +++ + src/cli/status.c | 5 ++++- + 2 files changed, 7 insertions(+), 1 deletion(-) + +diff --git a/src/cli/list.c b/src/cli/list.c +index c76e4fb..e688d2f 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -36,6 +36,9 @@ static problem_data_t *load_problem_data(const char *problem_id) + + /* First, check if there is a problem with the passed id */ + GList *problems = get_problems_over_dbus(g_cli_authenticate); ++ if (problems == ERR_PTR) ++ return NULL; ++ + GList *item = g_list_find_custom(problems, problem_id, (GCompareFunc)strcmp); + + /* (git requires at least 5 char hash prefix, we do the same) */ +diff --git a/src/cli/status.c b/src/cli/status.c +index 0635289..3620cea 100644 +--- a/src/cli/status.c ++++ b/src/cli/status.c +@@ -27,6 +27,9 @@ static unsigned int count_problem_dirs(unsigned long since) + unsigned count = 0; + + GList *problems = get_problems_over_dbus(g_cli_authenticate); ++ if (problems == ERR_PTR) ++ return count; ++ + for (GList *iter = problems; iter != NULL; iter = g_list_next(iter)) + { + const char *problem_id = (const char *)iter->data; +@@ -37,7 +40,7 @@ static unsigned int count_problem_dirs(unsigned long since) + } + + char *time_str = load_text_over_dbus(problem_id, FILENAME_LAST_OCCURRENCE); +- if (time_str == NULL) ++ if (time_str == ERR_PTR || time_str == NULL) + { + log_debug("Not counting problem %s: failed to get time element", problem_id); + continue; +-- +2.4.3 + diff --git a/SOURCES/0162-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch b/SOURCES/0162-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch new file mode 100644 index 0000000..5626c7d --- /dev/null +++ b/SOURCES/0162-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch @@ -0,0 +1,59 @@ +From f1df45f8d0e7cd489eb2dd1b2e03e85e85f83f95 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 11 Aug 2015 16:17:40 +0200 +Subject: [PATCH] ccpp: fix comment related to 'MakeCompatCore' option in + CCpp.conf + +The comment fits only on the default core_pattern template. +If the core_pattern is not default, the comment does not fit. + +Related to rhbz#1252384 + +Signed-off-by: Matej Habrnal +--- + doc/abrt-CCpp.conf.txt | 9 +++++++-- + src/hooks/CCpp.conf | 9 +++++++-- + 2 files changed, 14 insertions(+), 4 deletions(-) + +diff --git a/doc/abrt-CCpp.conf.txt b/doc/abrt-CCpp.conf.txt +index f8085d6..42981fd 100644 +--- a/doc/abrt-CCpp.conf.txt ++++ b/doc/abrt-CCpp.conf.txt +@@ -11,8 +11,13 @@ The configuration file consists of items in the format "Option = Value". + Ithe following items are recognized: + + MakeCompatCore = 'yes' / 'no' ...:: +- If you also want to dump file named "core" +- in crashed process' current dir, set to "yes". ++ CCpp hook writes its template to the "/proc/sys/kernel/core_pattern" file ++ and stores the original template in the "/var/run/abrt/saved_core_pattern" ++ file. If you want CCpp hook to create a core dump file named according to ++ the original template as well, set 'MakeCompatCore' to 'yes'. ++ If the original template string starts with "|", the string "core" is used ++ instead of the template. ++ For more information about naming core dump files see 'man 5 core'. + + SaveBinaryImage = 'yes' / 'no' ...:: + Do you want a copy of crashed binary be saved? +diff --git a/src/hooks/CCpp.conf b/src/hooks/CCpp.conf +index d2f8adb..08d1b28 100644 +--- a/src/hooks/CCpp.conf ++++ b/src/hooks/CCpp.conf +@@ -1,7 +1,12 @@ + # Configuration file for CCpp hook + +-# If you also want to dump file named "core" +-# in crashed process' current dir, set to "yes" ++# CCpp hook writes its template to the "/proc/sys/kernel/core_pattern" file ++# and stores the original template in the "/var/run/abrt/saved_core_pattern" ++# file. If you want CCpp hook to create a core dump file named according to ++# the original template as well, set 'MakeCompatCore' to 'yes'. ++# If the original template string starts with "|", the string "core" is used ++# instead of the template. ++# For more information about naming core dump files see 'man 5 core'. + MakeCompatCore = yes + + # Do you want a copy of crashed binary be saved? +-- +2.4.3 + diff --git a/SOURCES/0163-ccpp-use-global-TID.patch b/SOURCES/0163-ccpp-use-global-TID.patch new file mode 100644 index 0000000..23c8551 --- /dev/null +++ b/SOURCES/0163-ccpp-use-global-TID.patch @@ -0,0 +1,37 @@ +From 25ca1b05529d7ce95a3948f45391e22ab0fd9744 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 12 Aug 2015 17:40:12 +0200 +Subject: [PATCH] ccpp: use global TID + +'%i' is TID of the thread from the crashed process's PID namespace but +abrt-hook-ccpp is run by kernel in the init PID namespace, so '%i' +is TID of a completely unrelated process. + +For mode details see 'man 5 core'. + +Related: rhbz#1252590 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-install-ccpp-hook.in | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in +index fff0a33..65f771f 100755 +--- a/src/hooks/abrt-install-ccpp-hook.in ++++ b/src/hooks/abrt-install-ccpp-hook.in +@@ -11,9 +11,9 @@ SAVED_PATTERN_DIR="@VAR_RUN@/abrt" + SAVED_PATTERN_FILE="@VAR_RUN@/abrt/saved_core_pattern" + HOOK_BIN="@libexecdir@/abrt-hook-ccpp" + # Must match percent_specifiers[] order in abrt-hook-ccpp.c: +-PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %i" ++PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %I" + # Same, but with bogus "executable name" parameter +-PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %i" ++PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %I" + + # core_pipe_limit specifies how many dump_helpers can run at the same time + # 0 - means unlimited, but it's not guaranteed that /proc/ of crashing +-- +2.4.3 + diff --git a/SOURCES/0164-Warn-against-disabling-private-reports-in-abrt.conf.patch b/SOURCES/0164-Warn-against-disabling-private-reports-in-abrt.conf.patch new file mode 100644 index 0000000..dec4fbf --- /dev/null +++ b/SOURCES/0164-Warn-against-disabling-private-reports-in-abrt.conf.patch @@ -0,0 +1,32 @@ +From eb3e4583bf8214b374e0453764d194130618d391 Mon Sep 17 00:00:00 2001 +From: Richard Marko +Date: Fri, 14 Aug 2015 12:03:07 +0200 +Subject: [PATCH] Warn against disabling private reports in abrt.conf + +Related rhbz#1253166 + +Signed-off-by: Richard Marko +--- + src/daemon/abrt.conf | 7 +++++-- + 1 file changed, 5 insertions(+), 2 deletions(-) + +diff --git a/src/daemon/abrt.conf b/src/daemon/abrt.conf +index 171ee4c..2a83f8e 100644 +--- a/src/daemon/abrt.conf ++++ b/src/daemon/abrt.conf +@@ -44,7 +44,10 @@ AutoreportingEnabled = no + # + # ShortenedReporting = yes + +-# Disable this if you want to regular users to own the problem data colleted by +-# abrt. ++# Disable this option if you want to allow regular users to have file system ++# rights to read the problem data stored in DumpLocation. + # ++# Caution: ++# THE PROBLEM DATA CONTAINS EXCERPTS OF /var/log/messages, dmesg AND sosreport ++# data GENERATED BY abrtd UNDER THE USER root. + PrivateReports = yes +-- +2.4.3 + diff --git a/SOURCES/0165-Only-analyze-vulnerabilities-when-coredump-present.patch b/SOURCES/0165-Only-analyze-vulnerabilities-when-coredump-present.patch new file mode 100644 index 0000000..6ebb751 --- /dev/null +++ b/SOURCES/0165-Only-analyze-vulnerabilities-when-coredump-present.patch @@ -0,0 +1,34 @@ +From aedc22529c52c9f25236e3eedf2aec20dddf8a56 Mon Sep 17 00:00:00 2001 +From: Martin Milata +Date: Thu, 4 Dec 2014 15:20:34 +0100 +Subject: [PATCH] Only analyze vulnerabilities when coredump present + +Also only generate core_backtrace if it's not already present. + +Related to #882. + +Signed-off-by: Martin Milata +--- + src/plugins/ccpp_event.conf | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/plugins/ccpp_event.conf b/src/plugins/ccpp_event.conf +index 62ff08a..f4f3828 100644 +--- a/src/plugins/ccpp_event.conf ++++ b/src/plugins/ccpp_event.conf +@@ -16,9 +16,9 @@ EVENT=post-create analyzer=CCpp + fi + # Try generating backtrace, if it fails we can still use + # the hash generated by abrt-action-analyze-c +- ##satyr migration: +- #satyr abrt-create-core-stacktrace "$DUMP_DIR" +- abrt-action-generate-core-backtrace ++ [ ! -e core_backtrace ] && abrt-action-generate-core-backtrace ++ # Run GDB plugin to see if crash looks exploitable ++ [ -r coredump ] && abrt-action-analyze-vulnerability + # Generate hash + abrt-action-analyze-c && + abrt-action-list-dsos -m maps -o dso_list && +-- +2.4.3 + diff --git a/SOURCES/0166-UUID-from-core-backtrace-if-coredump-is-missing.patch b/SOURCES/0166-UUID-from-core-backtrace-if-coredump-is-missing.patch new file mode 100644 index 0000000..113c02a --- /dev/null +++ b/SOURCES/0166-UUID-from-core-backtrace-if-coredump-is-missing.patch @@ -0,0 +1,139 @@ +From 54ff71a2bec4386c871b54100e02065384aefb63 Mon Sep 17 00:00:00 2001 +From: Martin Milata +Date: Tue, 2 Dec 2014 12:44:49 +0100 +Subject: [PATCH] UUID from core backtrace if coredump is missing + +Closes #882. + +Signed-off-by: Martin Milata +--- + src/plugins/abrt-action-analyze-c.c | 91 ++++++++++++++++++++++++++++++++++--- + 1 file changed, 85 insertions(+), 6 deletions(-) + +diff --git a/src/plugins/abrt-action-analyze-c.c b/src/plugins/abrt-action-analyze-c.c +index a53f4fb..f98cfe5 100644 +--- a/src/plugins/abrt-action-analyze-c.c ++++ b/src/plugins/abrt-action-analyze-c.c +@@ -18,6 +18,13 @@ + */ + #include "libabrt.h" + ++#include ++ ++#include ++#include ++#include ++#include ++ + static void trim_unstrip_output(char *result, const char *unstrip_n_output) + { + // lines look like this: +@@ -49,6 +56,62 @@ static void trim_unstrip_output(char *result, const char *unstrip_n_output) + *dst = '\0'; + } + ++static char *build_ids_from_core_backtrace(const char *dump_dir_name) ++{ ++ char *error = NULL; ++ char *core_backtrace_path = xasprintf("%s/"FILENAME_CORE_BACKTRACE, dump_dir_name); ++ char *json = xmalloc_open_read_close(core_backtrace_path, /*maxsize:*/ NULL); ++ free(core_backtrace_path); ++ ++ if (!json) ++ return NULL; ++ ++ struct sr_core_stacktrace *stacktrace = sr_core_stacktrace_from_json_text(json, &error); ++ free(json); ++ if (!stacktrace) ++ { ++ if (error) ++ { ++ log_info("Failed to parse core backtrace: %s", error); ++ free(error); ++ } ++ return NULL; ++ } ++ ++ struct sr_core_thread *thread = sr_core_stacktrace_find_crash_thread(stacktrace); ++ if (!thread) ++ { ++ log_info("Failed to find crash thread"); ++ sr_core_stacktrace_free(stacktrace); ++ return NULL; ++ } ++ ++ void *build_id_list = NULL; ++ ++ struct strbuf *strbuf = strbuf_new(); ++ for (struct sr_core_frame *frame = thread->frames; ++ frame; ++ frame = frame->next) ++ { ++ if (frame->build_id) ++ build_id_list = g_list_prepend(build_id_list, frame->build_id); ++ } ++ ++ build_id_list = g_list_sort(build_id_list, (GCompareFunc)strcmp); ++ for (GList *iter = build_id_list; iter; iter = g_list_next(iter)) ++ { ++ GList *next = g_list_next(iter); ++ if (next == NULL || 0 != strcmp(iter->data, next->data)) ++ { ++ strbuf = strbuf_append_strf(strbuf, "%s\n", (char *)iter->data); ++ } ++ } ++ g_list_free(build_id_list); ++ sr_core_stacktrace_free(stacktrace); ++ ++ return strbuf_free_nobuf(strbuf); ++} ++ + int main(int argc, char **argv) + { + /* I18n */ +@@ -82,13 +145,27 @@ int main(int argc, char **argv) + + export_abrt_envvars(0); + +- /* Run unstrip -n and trim its output, leaving only sizes and build ids */ ++ char *unstrip_n_output = NULL; ++ char *coredump_path = xasprintf("%s/"FILENAME_COREDUMP, dump_dir_name); ++ if (access(coredump_path, R_OK) == 0) ++ unstrip_n_output = run_unstrip_n(dump_dir_name, /*timeout_sec:*/ 30); + +- char *unstrip_n_output = run_unstrip_n(dump_dir_name, /*timeout_sec:*/ 30); +- if (!unstrip_n_output) +- return 1; /* bad dump_dir_name, can't run unstrip, etc... */ +- /* modifies unstrip_n_output in-place: */ +- trim_unstrip_output(unstrip_n_output, unstrip_n_output); ++ free(coredump_path); ++ ++ if (unstrip_n_output) ++ { ++ /* Run unstrip -n and trim its output, leaving only sizes and build ids */ ++ /* modifies unstrip_n_output in-place: */ ++ trim_unstrip_output(unstrip_n_output, unstrip_n_output); ++ } ++ else ++ { ++ /* bad dump_dir_name, can't run unstrip, etc... ++ * or maybe missing coredump - try generating it from core_backtrace ++ */ ++ ++ unstrip_n_output = build_ids_from_core_backtrace(dump_dir_name); ++ } + + /* Hash package + executable + unstrip_n_output and save it as UUID */ + +@@ -131,6 +208,8 @@ int main(int argc, char **argv) + /*free(executable);*/ + /*free(unstrip_n_output);*/ + ++ log_debug("String to hash: %s", string_to_hash); ++ + char hash_str[SHA1_RESULT_LEN*2 + 1]; + str_to_sha1str(hash_str, string_to_hash); + +-- +2.4.3 + diff --git a/SOURCES/0167-ccpp-correct-comments-mentioning-TID.patch b/SOURCES/0167-ccpp-correct-comments-mentioning-TID.patch new file mode 100644 index 0000000..1f66344 --- /dev/null +++ b/SOURCES/0167-ccpp-correct-comments-mentioning-TID.patch @@ -0,0 +1,48 @@ +From 6ff643d615b41a53236255e7d27a43aa35bd24f8 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 9 Sep 2015 14:09:57 +0200 +Subject: [PATCH] ccpp: correct comments mentioning TID + +abrt-hook-ccpp uses '%I'. + +See commit 25ca1b05529d7ce95a3948f45391e22ab0fd9744 for details. + +Related: rhbz#1252590 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 5b277af..f5200dc 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -160,13 +160,13 @@ static struct dump_dir *dd; + * %g - gid + * %t - UNIX time of dump + * %e - executable filename +- * %i - crash thread tid ++ * %I - global crash thread tid + * %% - output one "%" + */ + /* Hook must be installed with exactly the same sequence of %c specifiers. + * Last one, %h, may be omitted (we can find it out). + */ +-static const char percent_specifiers[] = "%scpugtei"; ++static const char percent_specifiers[] = "%scpugteI"; + static char *core_basename = (char*) "core"; + + static char* get_executable(pid_t pid, int *fd_p) +@@ -688,7 +688,7 @@ int main(int argc, char** argv) + + if (argc < 8) + { +- /* percent specifier: %s %c %p %u %g %t %e %i */ ++ /* percent specifier: %s %c %p %u %g %t %e %I */ + /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8]*/ + error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME BINARY_NAME [TID]", argv[0]); + } +-- +2.4.3 + diff --git a/SOURCES/0168-ccpp-Use-Global-PID.patch b/SOURCES/0168-ccpp-Use-Global-PID.patch new file mode 100644 index 0000000..4d8b04c --- /dev/null +++ b/SOURCES/0168-ccpp-Use-Global-PID.patch @@ -0,0 +1,100 @@ +From 051448283b05c26ceb5ae561be4b0805d7075b2e Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 9 Sep 2015 14:02:57 +0200 +Subject: [PATCH] ccpp: Use Global PID + +Related: #1261036 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 20 ++++++++++++-------- + src/hooks/abrt-install-ccpp-hook.in | 4 ++-- + 2 files changed, 14 insertions(+), 10 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index f5200dc..12b3f118 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -161,12 +161,13 @@ static struct dump_dir *dd; + * %t - UNIX time of dump + * %e - executable filename + * %I - global crash thread tid ++ * %P - global pid + * %% - output one "%" + */ + /* Hook must be installed with exactly the same sequence of %c specifiers. + * Last one, %h, may be omitted (we can find it out). + */ +-static const char percent_specifiers[] = "%scpugteI"; ++static const char percent_specifiers[] = "%scpugtePI"; + static char *core_basename = (char*) "core"; + + static char* get_executable(pid_t pid, int *fd_p) +@@ -688,9 +689,9 @@ int main(int argc, char** argv) + + if (argc < 8) + { +- /* percent specifier: %s %c %p %u %g %t %e %I */ +- /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8]*/ +- error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME BINARY_NAME [TID]", argv[0]); ++ /* percent specifier: %s %c %p %u %g %t %e %P %I*/ ++ /* argv: [0] [1] [2] [3] [4] [5] [6] [7] [8] [9]*/ ++ error_msg_and_die("Usage: %s SIGNO CORE_SIZE_LIMIT PID UID GID TIME BINARY_NAME GLOBAL_PID [TID]", argv[0]); + } + + /* Not needed on 2.6.30. +@@ -718,9 +719,9 @@ int main(int argc, char** argv) + ulimit_c = ~((off_t)1 << (sizeof(off_t)*8-1)); + } + const char *pid_str = argv[3]; +- pid_t pid = xatoi_positive(argv[3]); ++ pid_t local_pid = xatoi_positive(argv[3]); + uid_t uid = xatoi_positive(argv[4]); +- if (errno || pid <= 0) ++ if (errno || local_pid <= 0) + { + perror_msg_and_die("PID '%s' or limit '%s' is bogus", argv[3], argv[2]); + } +@@ -733,11 +734,13 @@ int main(int argc, char** argv) + else + free(s); + } ++ const char *global_pid_str = argv[8]; ++ pid_t pid = xatoi_positive(argv[8]); + + pid_t tid = 0; +- if (argv[8]) ++ if (argv[9]) + { +- tid = xatoi_positive(argv[8]); ++ tid = xatoi_positive(argv[9]); + } + + char path[PATH_MAX]; +@@ -914,6 +917,7 @@ int main(int argc, char** argv) + dd_save_text(dd, FILENAME_TYPE, "CCpp"); + dd_save_text(dd, FILENAME_EXECUTABLE, executable); + dd_save_text(dd, FILENAME_PID, pid_str); ++ dd_save_text(dd, /*FILENAME_GLOBAL_PID*/"global_pid", global_pid_str); + dd_save_text(dd, FILENAME_PROC_PID_STATUS, proc_pid_status); + if (user_pwd) + dd_save_text(dd, FILENAME_PWD, user_pwd); +diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in +index 65f771f..707c57d 100755 +--- a/src/hooks/abrt-install-ccpp-hook.in ++++ b/src/hooks/abrt-install-ccpp-hook.in +@@ -11,9 +11,9 @@ SAVED_PATTERN_DIR="@VAR_RUN@/abrt" + SAVED_PATTERN_FILE="@VAR_RUN@/abrt/saved_core_pattern" + HOOK_BIN="@libexecdir@/abrt-hook-ccpp" + # Must match percent_specifiers[] order in abrt-hook-ccpp.c: +-PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %I" ++PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %P %I" + # Same, but with bogus "executable name" parameter +-PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %I" ++PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %P %I" + + # core_pipe_limit specifies how many dump_helpers can run at the same time + # 0 - means unlimited, but it's not guaranteed that /proc/ of crashing +-- +2.4.3 + diff --git a/SOURCES/0169-doc-add-example-into-the-abrt-auto-reporting-man-pag.patch b/SOURCES/0169-doc-add-example-into-the-abrt-auto-reporting-man-pag.patch new file mode 100644 index 0000000..6e0b3fa --- /dev/null +++ b/SOURCES/0169-doc-add-example-into-the-abrt-auto-reporting-man-pag.patch @@ -0,0 +1,36 @@ +From 28f7def4bf579cf49b847301fcbf761b2a2ea8c8 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Fri, 4 Sep 2015 10:06:16 +0200 +Subject: [PATCH] doc: add example into the abrt-auto-reporting man page + +Add example how to turn on the authentication using rhsm consumer certificate. + +Related to rhbz#1223805 + +Signed-off-by: Matej Habrnal +--- + doc/abrt-auto-reporting-authenticated.txt | 8 ++++++++ + 1 file changed, 8 insertions(+) + +diff --git a/doc/abrt-auto-reporting-authenticated.txt b/doc/abrt-auto-reporting-authenticated.txt +index 2a27945..de3302d 100644 +--- a/doc/abrt-auto-reporting-authenticated.txt ++++ b/doc/abrt-auto-reporting-authenticated.txt +@@ -97,6 +97,14 @@ OPTIONS + Also turns the HTTP Authentication off, because these methods cannot + be used together. + ++EXAMPLES ++-------- ++Turn on the authentication using rhsm consumer certificate: ++ ++------------ ++# abrt-auto-reporting enabled --certificate rhsm ++------------ ++ + SEE ALSO + -------- + abrt.conf(5), ureport.conf(5), rhtsupport.conf(5) +-- +2.4.3 + diff --git a/SOURCES/0170-abrt-auto-reporting-add-example-into-the-help.patch b/SOURCES/0170-abrt-auto-reporting-add-example-into-the-help.patch new file mode 100644 index 0000000..7ced8a0 --- /dev/null +++ b/SOURCES/0170-abrt-auto-reporting-add-example-into-the-help.patch @@ -0,0 +1,33 @@ +From bb20db4b9a9e4fd49b3b50de8bd50d2973babf38 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Fri, 4 Sep 2015 09:56:26 +0200 +Subject: [PATCH] abrt-auto-reporting: add example into the help + +Add example how to turn on the authentication using rhsm consumer certificate. + +Related to rhbz#1223805 + +Signed-off-by: Matej Habrnal +--- + src/daemon/abrt-auto-reporting.c | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/src/daemon/abrt-auto-reporting.c b/src/daemon/abrt-auto-reporting.c +index 46f8923..c82b504 100644 +--- a/src/daemon/abrt-auto-reporting.c ++++ b/src/daemon/abrt-auto-reporting.c +@@ -200,6 +200,11 @@ int main(int argc, char *argv[]) + "& [ "STATE_MANUAL" | "STATE_AUTO" | yes | no | 1 | 0 ] \\\n" + " [[--anonymous] | [--username USERNAME [--password PASSWORD]] | [--certificate SOURCE]]\n" + PROGRAM_USAGE_MIDDLE_PART ++ "Example:\n" ++ "Turn on the authentication using rhsm consumer certificate.\n" ++ "\n" ++ "\t# abrt-auto-reporting "STATE_AUTO" --certificate rhsm\n" ++ "\n" + "See abrt-auto-reporting(1), reporter-ureport(1) and reporter-rhtsupport(1)\n" + "for more details.\n" + ); +-- +2.4.3 + diff --git a/SOURCES/0177-sos-use-services-instead-of-startup.patch b/SOURCES/0177-sos-use-services-instead-of-startup.patch new file mode 100644 index 0000000..6d2b075 --- /dev/null +++ b/SOURCES/0177-sos-use-services-instead-of-startup.patch @@ -0,0 +1,30 @@ +From 899c7d8acf4d1aae74d6e2bad55cfbb20e9596e9 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 16 Oct 2015 11:39:00 +0200 +Subject: [PATCH] sos: use 'services' instead of 'startup' + +The plugin has been renamed to 'services'. + +Resolves: #1272005 + +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 ec41653..76d544c 100644 +--- a/src/daemon/abrt_event.conf ++++ b/src/daemon/abrt_event.conf +@@ -73,7 +73,7 @@ EVENT=post-create + --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=startup --only=yum --only=general --only=x11 \ ++ --only=services --only=yum --only=general --only=x11 \ + --only=cups --only=logs --only=grub2 --only=cron --only=pci \ + --only=auditd --only=selinux --only=lvm2 --only=sar \ + --only=processor \ +-- +1.8.3.1 + diff --git a/SOURCES/0178-a-a-i-d-to-abrt-cache-make-own-random-temporary-dire.patch b/SOURCES/0178-a-a-i-d-to-abrt-cache-make-own-random-temporary-dire.patch new file mode 100644 index 0000000..d6bc812 --- /dev/null +++ b/SOURCES/0178-a-a-i-d-to-abrt-cache-make-own-random-temporary-dire.patch @@ -0,0 +1,104 @@ +From e721bc775d9270ac8d9d8daf2fe3f83bffe5d761 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 30 Sep 2015 11:50:18 +0200 +Subject: [PATCH] a-a-i-d-to-abrt-cache: make own random temporary directory + +The set-user-ID wrapper must use own new temporary directory in order to +avoid security issues with unpacking specially crafted debuginfo +packages that might be used to create files or symlinks anywhere on the +file system as the abrt user. + +Withot the forking code the temporary directory would remain on the +filesystem in the case where all debuginfo data are already available. +This is caused by the fact that the underlying libreport functionality +accepts path to a desired temporary directory and creates it only if +necessary. Otherwise, the directory is not touched at all. + +This commit addresses CVE-2015-5273 +Related: #1262252 + +Signed-off-by: Jakub Filak +--- + src/plugins/Makefile.am | 1 + + .../abrt-action-install-debuginfo-to-abrt-cache.c | 41 +++++++++++++++++++--- + 2 files changed, 38 insertions(+), 4 deletions(-) + +diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am +index 326bb6e..6dde4b7 100644 +--- a/src/plugins/Makefile.am ++++ b/src/plugins/Makefile.am +@@ -261,6 +261,7 @@ abrt_action_install_debuginfo_to_abrt_cache_CPPFLAGS = \ + -D_GNU_SOURCE \ + -DBIN_DIR=\"$(bindir)\" \ + -DSBIN_DIR=\"$(sbindir)\" \ ++ -DLARGE_DATA_TMP_DIR=\"$(LARGE_DATA_TMP_DIR)\" \ + $(LIBREPORT_CFLAGS) \ + -Wall -Wwrite-strings \ + -fPIE +diff --git a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +index 81b1486..52d00de 100644 +--- a/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c ++++ b/src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c +@@ -108,8 +108,14 @@ int main(int argc, char **argv) + build_ids_self_fd = xasprintf("/proc/self/fd/%d", build_ids_fd); + } + +- /* name, -v, --ids, -, -y, -e, EXACT, -r, REPO, --, NULL */ +- const char *args[11]; ++ char tmp_directory[] = LARGE_DATA_TMP_DIR"/abrt-tmp-debuginfo.XXXXXX"; ++ if (mkdtemp(tmp_directory) == NULL) ++ perror_msg_and_die("Failed to create working directory"); ++ ++ log_info("Created working directory: %s", tmp_directory); ++ ++ /* name, -v, --ids, -, -y, -e, EXACT, -r, REPO, -t, PATH, --, NULL */ ++ const char *args[13]; + { + const char *verbs[] = { "", "-v", "-vv", "-vvv" }; + unsigned i = 0; +@@ -130,6 +136,8 @@ int main(int argc, char **argv) + args[i++] = "--repo"; + args[i++] = repo; + } ++ args[i++] = "--tmpdir"; ++ args[i++] = tmp_directory; + args[i++] = "--"; + args[i] = NULL; + } +@@ -204,6 +212,31 @@ int main(int argc, char **argv) + umask(0022); + } + +- execvp(EXECUTABLE, (char **)args); +- error_msg_and_die("Can't execute %s", EXECUTABLE); ++ pid_t pid = fork(); ++ if (pid < 0) ++ perror_msg_and_die("fork"); ++ ++ if (pid == 0) ++ { ++ execvp(EXECUTABLE, (char **)args); ++ error_msg_and_die("Can't execute %s", EXECUTABLE); ++ } ++ ++ int status; ++ if (safe_waitpid(pid, &status, 0) < 0) ++ perror_msg_and_die("waitpid"); ++ ++ if (rmdir(tmp_directory) >= 0) ++ log_info("Removed working directory: %s", tmp_directory); ++ else if (errno != ENOENT) ++ perror_msg("Failed to remove working directory"); ++ ++ /* Normal execution should exit here. */ ++ if (WIFEXITED(status)) ++ return WEXITSTATUS(status); ++ ++ if (WIFSIGNALED(status)) ++ error_msg_and_die("Child terminated with signal %d", WTERMSIG(status)); ++ ++ error_msg_and_die("Child exit failed"); + } +-- +1.8.3.1 + diff --git a/SOURCES/0179-conf-introduce-DebugLevel.patch b/SOURCES/0179-conf-introduce-DebugLevel.patch new file mode 100644 index 0000000..67a0bf8 --- /dev/null +++ b/SOURCES/0179-conf-introduce-DebugLevel.patch @@ -0,0 +1,102 @@ +From 373f5d38e3c8fbc4bc466312c659974d31a68ac4 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 30 Sep 2015 12:17:47 +0200 +Subject: [PATCH] conf: introduce DebugLevel + +ABRT should ignore problems caused by ABRT tools if DebugLevel == 0. +DebugLevel is set to 0 by default. + +Related to CVE-2015-5287 +Related: #1262252 + +Signed-off-by: Jakub Filak +--- + doc/abrt.conf.txt | 8 ++++++++ + src/daemon/abrt.conf | 8 ++++++++ + src/include/libabrt.h | 2 ++ + src/lib/abrt_conf.c | 14 ++++++++++++++ + 4 files changed, 32 insertions(+) + +diff --git a/doc/abrt.conf.txt b/doc/abrt.conf.txt +index d782e3d..7ef78f0 100644 +--- a/doc/abrt.conf.txt ++++ b/doc/abrt.conf.txt +@@ -36,6 +36,14 @@ DeleteUploaded = 'yes/no':: + or not. + The default value is 'no'. + ++DebugLevel = '0-100': ++ Allows ABRT tools to detect problems in ABRT itself. By increasing the value ++ you can force ABRT to detect, process and report problems in ABRT. You have ++ to bare in mind that ABRT might fall into an infinite loop when handling ++ problems caused by itself. ++ The default is 0 (non debug mode). ++ ++ + SEE ALSO + -------- + abrtd(8) +diff --git a/src/daemon/abrt.conf b/src/daemon/abrt.conf +index 2a83f8e..24df20b 100644 +--- a/src/daemon/abrt.conf ++++ b/src/daemon/abrt.conf +@@ -51,3 +51,11 @@ AutoreportingEnabled = no + # THE PROBLEM DATA CONTAINS EXCERPTS OF /var/log/messages, dmesg AND sosreport + # data GENERATED BY abrtd UNDER THE USER root. + PrivateReports = yes ++ ++# Allows ABRT tools to detect problems in ABRT itself. By increasing the value ++# you can force ABRT to detect, process and report problems in ABRT. You have ++# to bare in mind that ABRT might fall into an infinite loop when handling ++# problems caused by itself. ++# The default is 0 (non debug mode). ++# ++# DebugLevel = 0 +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 3b17a64..21ce440 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -70,6 +70,8 @@ extern char * g_settings_autoreporting_event; + extern bool g_settings_shortenedreporting; + #define g_settings_privatereports abrt_g_settings_privatereports + extern bool g_settings_privatereports; ++#define g_settings_debug_level abrt_g_settings_debug_level ++extern unsigned int g_settings_debug_level; + + + #define load_abrt_conf abrt_load_abrt_conf +diff --git a/src/lib/abrt_conf.c b/src/lib/abrt_conf.c +index c6aba58..4a49032 100644 +--- a/src/lib/abrt_conf.c ++++ b/src/lib/abrt_conf.c +@@ -28,6 +28,7 @@ bool g_settings_autoreporting = 0; + char * g_settings_autoreporting_event = NULL; + bool g_settings_shortenedreporting = 0; + bool g_settings_privatereports = true; ++unsigned int g_settings_debug_level = 0; + + void free_abrt_conf_data() + { +@@ -110,6 +111,19 @@ static void ParseCommon(map_string_t *settings, const char *conf_filename) + remove_map_string_item(settings, "PrivateReports"); + } + ++ value = get_map_string_item_or_NULL(settings, "DebugLevel"); ++ if (value) ++ { ++ char *end; ++ errno = 0; ++ unsigned long ul = strtoul(value, &end, 10); ++ if (errno || end == value || *end != '\0' || ul > INT_MAX) ++ error_msg("Error parsing %s setting: '%s'", "DebugLevel", value); ++ else ++ g_settings_debug_level = ul; ++ remove_map_string_item(settings, "DebugLevel"); ++ } ++ + GHashTableIter iter; + const char *name; + /*char *value; - already declared */ +-- +1.8.3.1 + diff --git a/SOURCES/0180-ccpp-ignore-crashes-of-ABRT-binaries-if-DebugLevel-0.patch b/SOURCES/0180-ccpp-ignore-crashes-of-ABRT-binaries-if-DebugLevel-0.patch new file mode 100644 index 0000000..3b0ab3d --- /dev/null +++ b/SOURCES/0180-ccpp-ignore-crashes-of-ABRT-binaries-if-DebugLevel-0.patch @@ -0,0 +1,41 @@ +From ab4351808352e00d72a7fd948e3e923d08e1a0fc Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 30 Sep 2015 12:19:48 +0200 +Subject: [PATCH] ccpp: ignore crashes of ABRT binaries if DebugLevel == 0 + +Prior this commit abrt-hook-ccpp was saved core file of any +crashed process executing program whose name starts with "abrt" in +DUMP_LOCATION. + +ABRT does not check size constraints of these core files, so the files +could consume an uncontrolled amount of disk space. + +Related to CVE-2015-5287 +Related: #1262252 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 7 +++++++ + 1 file changed, 7 insertions(+) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 12b3f118..7a19cc2 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -842,6 +842,13 @@ int main(int argc, char** argv) + const char *last_slash = strrchr(executable, '/'); + if (last_slash && strncmp(++last_slash, "abrt", 4) == 0) + { ++ if (g_settings_debug_level == 0) ++ { ++ log_warning("Ignoring crash of %s (SIG%s).", ++ executable, signame ? signame : signal_str); ++ goto finito; ++ } ++ + /* If abrtd/abrt-foo crashes, we don't want to create a _directory_, + * since that can make new copy of abrtd to process it, + * and maybe crash again... +-- +1.8.3.1 + diff --git a/SOURCES/0181-ccpp-save-abrt-core-files-only-to-new-files.patch b/SOURCES/0181-ccpp-save-abrt-core-files-only-to-new-files.patch new file mode 100644 index 0000000..397d0d8 --- /dev/null +++ b/SOURCES/0181-ccpp-save-abrt-core-files-only-to-new-files.patch @@ -0,0 +1,35 @@ +From f982995841607f06faaa055740310e0520c07c67 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 30 Sep 2015 12:24:32 +0200 +Subject: [PATCH] ccpp: save abrt core files only to new files + +Prior this commit abrt-hook-ccpp saved a core file generated by a +process running a program whose name starts with "abrt" in +DUMP_LOCATION/$(basename program)-coredump. If the file was a symlink, +the hook followed and wrote core file to the symlink's target. + +This commit addresses CVE-2015-5287 +Related: #1262252 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt-hook-ccpp.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 7a19cc2..9648b16 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -857,7 +857,8 @@ int main(int argc, char** argv) + if (snprintf(path, sizeof(path), "%s/%s-coredump", g_settings_dump_location, last_slash) >= sizeof(path)) + error_msg_and_die("Error saving '%s': truncated long file path", path); + +- int abrt_core_fd = xopen3(path, O_WRONLY | O_CREAT | O_TRUNC, 0600); ++ unlink(path); ++ int abrt_core_fd = xopen3(path, O_WRONLY | O_CREAT | O_EXCL, 0600); + off_t core_size = copyfd_eof(STDIN_FILENO, abrt_core_fd, COPYFD_SPARSE); + if (core_size < 0 || fsync(abrt_core_fd) != 0) + { +-- +1.8.3.1 + diff --git a/SOURCES/0182-lib-add-convenient-wrappers-for-ensuring-writable-di.patch b/SOURCES/0182-lib-add-convenient-wrappers-for-ensuring-writable-di.patch new file mode 100644 index 0000000..44d7f83 --- /dev/null +++ b/SOURCES/0182-lib-add-convenient-wrappers-for-ensuring-writable-di.patch @@ -0,0 +1,124 @@ +From 40826f4ed0b325961d23f1e5dda45215bdb120c0 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 30 Sep 2015 14:13:35 +0200 +Subject: [PATCH] lib: add convenient wrappers for ensuring writable dir + +Replace lchown with fchown and chmod with fchmod. + +Related to CVE-2015-5287 +Related: #1262252 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrtd.c | 19 ------------------- + src/include/libabrt.h | 6 ++++++ + src/lib/hooklib.c | 46 ++++++++++++++++++++++++++++++++++++++++++++++ + 3 files changed, 52 insertions(+), 19 deletions(-) + +diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c +index b8426dd..b1252d2 100644 +--- a/src/daemon/abrtd.c ++++ b/src/daemon/abrtd.c +@@ -158,25 +158,6 @@ static gboolean handle_signal_cb(GIOChannel *gio, GIOCondition condition, gpoint + return TRUE; /* "please don't remove this event" */ + } + +-static void ensure_writable_dir(const char *dir, mode_t mode, const char *user) +-{ +- struct stat sb; +- +- if (mkdir(dir, mode) != 0 && errno != EEXIST) +- perror_msg_and_die("Can't create '%s'", dir); +- if (stat(dir, &sb) != 0 || !S_ISDIR(sb.st_mode)) +- error_msg_and_die("'%s' is not a directory", dir); +- +- struct passwd *pw = getpwnam(user); +- if (!pw) +- perror_msg_and_die("Can't find user '%s'", user); +- +- if ((sb.st_uid != pw->pw_uid || sb.st_gid != pw->pw_gid) && lchown(dir, pw->pw_uid, pw->pw_gid) != 0) +- perror_msg_and_die("Can't set owner %u:%u on '%s'", (unsigned int)pw->pw_uid, (unsigned int)pw->pw_gid, dir); +- if ((sb.st_mode & 07777) != mode && chmod(dir, mode) != 0) +- perror_msg_and_die("Can't set mode %o on '%s'", mode, dir); +-} +- + static void sanitize_dump_dir_rights(void) + { + /* We can't allow everyone to create dumps: otherwise users can flood +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 21ce440..2510a77 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -42,6 +42,12 @@ int low_free_space(unsigned setting_MaxCrashReportsSize, const char *dump_locati + + #define trim_problem_dirs abrt_trim_problem_dirs + void trim_problem_dirs(const char *dirname, double cap_size, const char *exclude_path); ++#define ensure_writable_dir_id abrt_ensure_writable_dir_uid_git ++void ensure_writable_dir_uid_gid(const char *dir, mode_t mode, uid_t uid, gid_t gid); ++#define ensure_writable_dir abrt_ensure_writable_dir ++void ensure_writable_dir(const char *dir, mode_t mode, const char *user); ++#define ensure_writable_dir_group abrt_ensure_writable_dir_group ++void ensure_writable_dir_group(const char *dir, mode_t mode, const char *user, const char *group); + #define run_unstrip_n abrt_run_unstrip_n + char *run_unstrip_n(const char *dump_dir_name, unsigned timeout_sec); + #define get_backtrace abrt_get_backtrace +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index 8e93663..160a011 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -428,6 +428,52 @@ char* problem_data_save(problem_data_t *pd) + return problem_id; + } + ++void ensure_writable_dir_uid_gid(const char *dir, mode_t mode, uid_t uid, gid_t gid) ++{ ++ struct stat sb; ++ int dir_fd; ++ ++ if (mkdir(dir, mode) != 0 && errno != EEXIST) ++ perror_msg_and_die("Can't create '%s'", dir); ++ ++ dir_fd = open(dir, O_DIRECTORY | O_NOFOLLOW); ++ if (dir_fd < 0) ++ perror_msg_and_die("Can't open directory '%s'", dir); ++ ++ if (fstat(dir_fd, &sb) != 0) ++ perror_msg_and_die("Can't stat directory '%s'", dir); ++ ++ if ((sb.st_uid != uid || sb.st_gid != gid) && fchown(dir_fd, uid, gid) != 0) ++ perror_msg_and_die("Can't set owner %u:%u on '%s'", (unsigned int)uid, (unsigned int)gid, dir); ++ ++ if ((sb.st_mode & 07777) != mode && fchmod(dir_fd, mode) != 0) ++ perror_msg_and_die("Can't set mode %o on '%s'", mode, dir); ++ ++ close(dir_fd); ++} ++ ++void ensure_writable_dir(const char *dir, mode_t mode, const char *user) ++{ ++ struct passwd *pw = getpwnam(user); ++ if (!pw) ++ perror_msg_and_die("Can't find user '%s'", user); ++ ++ ensure_writable_dir_uid_gid(dir, mode, pw->pw_uid, pw->pw_gid); ++} ++ ++void ensure_writable_dir_group(const char *dir, mode_t mode, const char *user, const char *group) ++{ ++ struct passwd *pw = getpwnam(user); ++ if (!pw) ++ perror_msg_and_die("Can't find user '%s'", user); ++ ++ struct group *gr = getgrnam(group); ++ if (!gr) ++ perror_msg_and_die("Can't find group '%s'", group); ++ ++ ensure_writable_dir_uid_gid(dir, mode, pw->pw_uid, gr->gr_gid); ++} ++ + bool dir_is_in_dump_location(const char *dir_name) + { + unsigned len = strlen(g_settings_dump_location); +-- +1.8.3.1 + diff --git a/SOURCES/0183-abrtd-switch-owner-of-the-dump-location-to-root.patch b/SOURCES/0183-abrtd-switch-owner-of-the-dump-location-to-root.patch new file mode 100644 index 0000000..9930589 --- /dev/null +++ b/SOURCES/0183-abrtd-switch-owner-of-the-dump-location-to-root.patch @@ -0,0 +1,31 @@ +From 57bc5697db222c96cb3adbee635f072abeeff6ad Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 30 Sep 2015 14:14:31 +0200 +Subject: [PATCH] abrtd: switch owner of the dump location to 'root' + +Additional hardening suggested by Florian Weimer + +Related to CVE-2015-5287 +Related: #1262252 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrtd.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c +index b1252d2..b79e940 100644 +--- a/src/daemon/abrtd.c ++++ b/src/daemon/abrtd.c +@@ -164,7 +164,7 @@ static void sanitize_dump_dir_rights(void) + * us with thousands of bogus or malicious dumps */ + /* 07000 bits are setuid, setgit, and sticky, and they must be unset */ + /* 00777 bits are usual "rwxrwxrwx" access rights */ +- ensure_writable_dir(g_settings_dump_location, 0755, "abrt"); ++ ensure_writable_dir_group(g_settings_dump_location, 0751, "root", "abrt"); + /* temp dir */ + ensure_writable_dir(VAR_RUN"/abrt", 0755, "root"); + } +-- +1.8.3.1 + diff --git a/SOURCES/0206-augeas-augtool-save-files-etc-abrt-plugins-oops.conf.patch b/SOURCES/0206-augeas-augtool-save-files-etc-abrt-plugins-oops.conf.patch new file mode 100644 index 0000000..d0bfe83 --- /dev/null +++ b/SOURCES/0206-augeas-augtool-save-files-etc-abrt-plugins-oops.conf.patch @@ -0,0 +1,36 @@ +From 6ddbf69d4b9e1e79f404b1e9ef6ade5511b0f758 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 24 Mar 2016 10:44:20 +0100 +Subject: [PATCH] augeas: augtool save + /files/etc/abrt/plugins/oops.conf/DropNotReportableOopses + +Without this commit it was not possible to seve +/files/etc/abrt/plugins/oops.conf/DropNotReportableOopses. + +Related to rhbz#1175679 + +- thanks to Dominic Cleal for the patch + +Signed-off-by: Matej Habrnal +--- + augeas/abrt.aug | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/augeas/abrt.aug b/augeas/abrt.aug +index 1f95b7f..6eadd3e 100644 +--- a/augeas/abrt.aug ++++ b/augeas/abrt.aug +@@ -4,8 +4,10 @@ module Abrt = + let lns = Libreport.lns + + let filter = (incl "/etc/abrt/*" ) ++ . (excl "/etc/abrt/plugins") + . (incl "/etc/abrt/plugins/*") + . (incl "/usr/share/abrt/conf.d/*") ++ . (excl "/usr/share/abrt/conf.d/plugins") + . (incl "/usr/share/abrt/conf.d/plugins/*") + . Util.stdexcl + +-- +1.8.3.1 + diff --git a/SOURCES/0207-vmcore-catch-IOErrors-and-OSErrors.patch b/SOURCES/0207-vmcore-catch-IOErrors-and-OSErrors.patch new file mode 100644 index 0000000..0383686 --- /dev/null +++ b/SOURCES/0207-vmcore-catch-IOErrors-and-OSErrors.patch @@ -0,0 +1,41 @@ +From 530cee09dd84565552ade0bdf08b40f900bef8f1 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 27 Nov 2014 12:45:04 +0100 +Subject: [PATCH] vmcore: catch IOErrors and OSErrors + +Perhaps some temporary data cleaner removed problem directory while the hook +was still using in. + +Resolves: rhbz#1311100 + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt_harvest_vmcore.py.in | 12 ++++++++++-- + 1 file changed, 10 insertions(+), 2 deletions(-) + +diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in +index 17e2be8..c6a7e6b 100644 +--- a/src/hooks/abrt_harvest_vmcore.py.in ++++ b/src/hooks/abrt_harvest_vmcore.py.in +@@ -272,8 +272,16 @@ def harvest_vmcore(): + except OSError: + sys.stderr.write("Unable to delete '%s'. Ignoring\n" % f_full) + +- # Let abrtd know what type of problem it is: +- create_abrtd_info(destdirnew) ++ try: ++ # Let abrtd know what type of problem it is: ++ create_abrtd_info(destdirnew) ++ except EnvironmentError as ex: ++ sys.stderr.write("Unable to create problem directory info: " + str(ex)) ++ try: ++ shutil.rmtree(destdirnew) ++ except Exception as ex: ++ sys.stderr.write("Unable to remove incomplete problem directory: " + str(ex)) ++ continue + + # chown -R 0:0 + change_owner_rec(destdirnew) +-- +1.8.3.1 + diff --git a/SOURCES/0209-lib-hooklib-make-signal_is_fatal-public.patch b/SOURCES/0209-lib-hooklib-make-signal_is_fatal-public.patch new file mode 100644 index 0000000..4d7f429 --- /dev/null +++ b/SOURCES/0209-lib-hooklib-make-signal_is_fatal-public.patch @@ -0,0 +1,60 @@ +From 27a9ae13ec7b41969eabc88441ad5cca12c26a87 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 21 Mar 2016 15:38:46 +0100 +Subject: [PATCH] lib: hooklib: make signal_is_fatal() public + +Related to: rhbz#1277848 + +Signed-off-by: Matej Habrnal +--- + src/include/hooklib.h | 2 ++ + src/lib/hooklib.c | 26 ++++++++++++++++++++++++++ + 2 files changed, 28 insertions(+) + +diff --git a/src/include/hooklib.h b/src/include/hooklib.h +index 4edd4ea..2de0294 100644 +--- a/src/include/hooklib.h ++++ b/src/include/hooklib.h +@@ -29,3 +29,5 @@ + stored data, but it's not guaranteed) + */ + char *problem_data_save(problem_data_t *pd); ++ ++int signal_is_fatal(int signal_no, const char **name); +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index 160a011..3e47612 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -553,3 +553,29 @@ bool allowed_new_user_problem_entry(uid_t uid, const char *name, const char *val + error_msg("Only root is permitted to create element '%s' containing '%s'", name, value); + return false; + } ++ ++int signal_is_fatal(int signal_no, const char **name) ++{ ++ const char *signame = NULL; ++ switch (signal_no) ++ { ++ case SIGILL : signame = "ILL" ; break; ++ case SIGFPE : signame = "FPE" ; break; ++ case SIGSEGV: signame = "SEGV"; break; ++ case SIGBUS : signame = "BUS" ; break; //Bus error (bad memory access) ++ case SIGABRT: signame = "ABRT"; break; //usually when abort() was called ++ // We have real-world reports from users who see buggy programs ++ // dying with SIGTRAP, uncommented it too: ++ case SIGTRAP: signame = "TRAP"; break; //Trace/breakpoint trap ++ // These usually aren't caused by bugs: ++ //case SIGQUIT: signame = "QUIT"; break; //Quit from keyboard ++ //case SIGSYS : signame = "SYS" ; break; //Bad argument to routine (SVr4) ++ //case SIGXCPU: signame = "XCPU"; break; //CPU time limit exceeded (4.2BSD) ++ //case SIGXFSZ: signame = "XFSZ"; break; //File size limit exceeded (4.2BSD) ++ } ++ ++ if (name != NULL) ++ *name = signame; ++ ++ return signame != NULL; ++} +-- +1.8.3.1 + diff --git a/SOURCES/0210-ccpp-add-IgnoredPath-option.patch b/SOURCES/0210-ccpp-add-IgnoredPath-option.patch new file mode 100644 index 0000000..6c8f373 --- /dev/null +++ b/SOURCES/0210-ccpp-add-IgnoredPath-option.patch @@ -0,0 +1,186 @@ +From 4f1770991a3b5da7dadd4c4e9b1a48c7d96f6808 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 21 Mar 2016 15:25:35 +0100 +Subject: [PATCH] ccpp: add IgnoredPath option + +ABRT will ignore crashes in executables for which absolute path matches one of +specified patterns. + +Related to rhbz#1277848 + +Signed-off-by: Matej Habrnal +--- + doc/abrt-CCpp.conf.txt | 4 +++ + src/hooks/CCpp.conf | 5 ++++ + src/hooks/abrt-hook-ccpp.c | 71 +++++++++++++++++++++++++++++++++------------- + 3 files changed, 61 insertions(+), 19 deletions(-) + +diff --git a/doc/abrt-CCpp.conf.txt b/doc/abrt-CCpp.conf.txt +index 42981fd..4db4b54 100644 +--- a/doc/abrt-CCpp.conf.txt ++++ b/doc/abrt-CCpp.conf.txt +@@ -39,6 +39,10 @@ SaveFullCore = 'yes' / 'no' ...:: + directory. + Default is 'yes'. + ++IgnoredPaths = /path/to/ignore/*, */another/ignored/path* ...:: ++ ABRT will ignore crashes in executables whose absolute path matches one of ++ specified patterns. ++ + VerboseLog = NUM:: + Used to make the hook more verbose + +diff --git a/src/hooks/CCpp.conf b/src/hooks/CCpp.conf +index 08d1b28..be55e05 100644 +--- a/src/hooks/CCpp.conf ++++ b/src/hooks/CCpp.conf +@@ -32,3 +32,8 @@ SaveFullCore = yes + # Specify where you want to store debuginfos (default: /var/cache/abrt-di) + # + #DebuginfoLocation = /var/cache/abrt-di ++ ++# ABRT will ignore crashes in executables whose absolute path matches one of ++# specified patterns. ++# ++#IgnoredPaths = +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 9648b16..18cd608 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -18,6 +18,7 @@ + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ ++#include + #include + #include "libabrt.h" + #include +@@ -631,6 +632,19 @@ finito: + return err; + } + ++static bool is_path_ignored(const GList *list, const char *path) ++{ ++ const GList *li; ++ for (li = list; li != NULL; li = g_list_next(li)) ++ { ++ if (fnmatch((char*)li->data, path, /*flags:*/ 0) == 0) ++ { ++ return true; ++ } ++ } ++ return false; ++} ++ + static int test_configuration(bool setting_SaveFullCore, bool setting_CreateCoreBacktrace) + { + if (!setting_SaveFullCore && !setting_CreateCoreBacktrace) +@@ -643,6 +657,26 @@ static int test_configuration(bool setting_SaveFullCore, bool setting_CreateCore + return 0; + } + ++static void error_msg_not_process_crash(const char *pid_str, const char *process_str, ++ long unsigned uid, int signal_no, const char *signame, const char *message, ...) ++{ ++ va_list p; ++ va_start(p, message); ++ char *message_full = xvasprintf(message, p); ++ va_end(p); ++ ++ if (signame) ++ error_msg("Process %s (%s) of user %lu killed by SIG%s - %s", pid_str, ++ process_str, uid, signame, message_full); ++ else ++ error_msg("Process %s (%s) of user %lu killed by signal %d - %s", pid_str, ++ process_str, uid, signal_no, message_full); ++ ++ free(message_full); ++ ++ return; ++} ++ + int main(int argc, char** argv) + { + int err = 1; +@@ -666,6 +700,7 @@ int main(int argc, char** argv) + bool setting_SaveBinaryImage; + bool setting_SaveFullCore; + bool setting_CreateCoreBacktrace; ++ GList *setting_ignored_paths = NULL; + { + map_string_t *settings = new_map_string(); + load_abrt_plugin_conf_file("CCpp.conf", settings); +@@ -677,6 +712,10 @@ int main(int argc, char** argv) + value = get_map_string_item_or_NULL(settings, "SaveFullCore"); + setting_SaveFullCore = value ? string_to_bool(value) : true; + value = get_map_string_item_or_NULL(settings, "CreateCoreBacktrace"); ++ value = get_map_string_item_or_NULL(settings, "IgnoredPaths"); ++ if (value) ++ setting_ignored_paths = parse_list(value); ++ + setting_CreateCoreBacktrace = value ? string_to_bool(value) : true; + value = get_map_string_item_or_NULL(settings, "VerboseLog"); + if (value) +@@ -712,6 +751,8 @@ int main(int argc, char** argv) + errno = 0; + const char* signal_str = argv[1]; + int signal_no = xatoi_positive(signal_str); ++ const char *signame = NULL; ++ bool signal_is_fatal_bool = signal_is_fatal(signal_no, &signame); + off_t ulimit_c = strtoull(argv[2], NULL, 10); + if (ulimit_c < 0) /* unlimited? */ + { +@@ -753,6 +794,15 @@ int main(int argc, char** argv) + (long)pid, executable); + } + ++ const char *last_slash = strrchr(executable, '/'); ++ if (executable && is_path_ignored(setting_ignored_paths, executable)) ++ { ++ error_msg_not_process_crash(pid_str, last_slash + 1, (long unsigned)uid, signal_no, ++ signame, "ignoring (listed in 'IgnoredPaths')"); ++ ++ return 0; ++ } ++ + user_pwd = get_cwd(pid); + log_notice("user_pwd:'%s'", user_pwd); + +@@ -793,24 +843,8 @@ int main(int argc, char** argv) + return create_user_core(user_core_fd, pid, ulimit_c); + } + +- const char *signame = NULL; +- switch (signal_no) +- { +- case SIGILL : signame = "ILL" ; break; +- case SIGFPE : signame = "FPE" ; break; +- case SIGSEGV: signame = "SEGV"; break; +- case SIGBUS : signame = "BUS" ; break; //Bus error (bad memory access) +- case SIGABRT: signame = "ABRT"; break; //usually when abort() was called +- // We have real-world reports from users who see buggy programs +- // dying with SIGTRAP, uncommented it too: +- case SIGTRAP: signame = "TRAP"; break; //Trace/breakpoint trap +- // These usually aren't caused by bugs: +- //case SIGQUIT: signame = "QUIT"; break; //Quit from keyboard +- //case SIGSYS : signame = "SYS" ; break; //Bad argument to routine (SVr4) +- //case SIGXCPU: signame = "XCPU"; break; //CPU time limit exceeded (4.2BSD) +- //case SIGXFSZ: signame = "XFSZ"; break; //File size limit exceeded (4.2BSD) +- default: return create_user_core(user_core_fd, pid, ulimit_c); // not a signal we care about +- } ++ if (!signal_is_fatal_bool) ++ return create_user_core(user_core_fd, pid, ulimit_c); // not a signal we care about + + if (!daemon_is_ok()) + { +@@ -839,7 +873,6 @@ int main(int argc, char** argv) + return create_user_core(user_core_fd, pid, ulimit_c); + } + +- const char *last_slash = strrchr(executable, '/'); + if (last_slash && strncmp(++last_slash, "abrt", 4) == 0) + { + if (g_settings_debug_level == 0) +-- +1.8.3.1 + diff --git a/SOURCES/0213-ccpp-add-AllowedUsers-and-AllowedGroups-feature.patch b/SOURCES/0213-ccpp-add-AllowedUsers-and-AllowedGroups-feature.patch new file mode 100644 index 0000000..efc68c4 --- /dev/null +++ b/SOURCES/0213-ccpp-add-AllowedUsers-and-AllowedGroups-feature.patch @@ -0,0 +1,155 @@ +From 29e8577ae1d7252513883941cae1c576f30c2d75 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 22 Mar 2016 12:35:55 +0100 +Subject: [PATCH] ccpp: add AllowedUsers and AllowedGroups feature + +The feature allows dump core only for allowed users. + +The logic is the following: + - if both options are not-defined or empty keep all core dumps + - else if crashed UID is in the list of users keep the core dump + - else if crashed UID belongs to a group in the list of groups keep the core dump + +Related to rhbz#1277849 + +Signed-off-by: Matej Habrnal +--- + doc/abrt-CCpp.conf.txt | 10 ++++++++ + src/hooks/CCpp.conf | 7 ++++++ + src/hooks/abrt-hook-ccpp.c | 63 ++++++++++++++++++++++++++++++++++++++++++++++ + 3 files changed, 80 insertions(+) + +diff --git a/doc/abrt-CCpp.conf.txt b/doc/abrt-CCpp.conf.txt +index 4db4b54..dffa45d 100644 +--- a/doc/abrt-CCpp.conf.txt ++++ b/doc/abrt-CCpp.conf.txt +@@ -43,6 +43,16 @@ IgnoredPaths = /path/to/ignore/*, */another/ignored/path* ...:: + ABRT will ignore crashes in executables whose absolute path matches one of + specified patterns. + ++AllowedUsers = root, ...:: ++ ABRT will process only crashes of either allowed users 'AllowedUsers' or ++ users who are members of allowed group 'AllowedGroups'. If no allowed users ++ nor allowed group are specified ABRT will process crashes of all users. ++ ++AllowedGroups = root, ...:: ++ ABRT will process only crashes of either allowed users 'AllowedUsers' or ++ users who are members of allowed group 'AllowedGroups'. If no allowed users ++ nor allowed group are specified ABRT will process crashes of all users. ++ + VerboseLog = NUM:: + Used to make the hook more verbose + +diff --git a/src/hooks/CCpp.conf b/src/hooks/CCpp.conf +index be55e05..af31ed5 100644 +--- a/src/hooks/CCpp.conf ++++ b/src/hooks/CCpp.conf +@@ -37,3 +37,10 @@ SaveFullCore = yes + # specified patterns. + # + #IgnoredPaths = ++ ++# ABRT will process only crashes of either allowed users or users who are ++# members of allowed group. If no allowed users nor allowed group are specified ++# ABRT will process crashes of all users. ++# ++#AllowedUsers = ++#AllowedGroups = +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 18cd608..c9fbf68 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -645,6 +645,44 @@ static bool is_path_ignored(const GList *list, const char *path) + return false; + } + ++static bool is_user_allowed(uid_t uid, const GList *list) ++{ ++ const GList *li; ++ for (li = list; li != NULL; li = g_list_next(li)) ++ { ++ const char *username = (const char*)li->data; ++ struct passwd *pw = getpwnam(username); ++ if (pw == NULL) ++ { ++ log_warning("can't get uid of user '%s' (listed in 'AllowedUsers')", username); ++ continue; ++ } ++ ++ if(pw->pw_uid == uid) ++ return true; ++ } ++ return false; ++} ++ ++static bool is_user_in_allowed_group(uid_t uid, const GList *list) ++{ ++ const GList *li; ++ for (li = list; li != NULL; li = g_list_next(li)) ++ { ++ const char *groupname = (const char*)li->data; ++ struct group *gr = getgrnam(groupname); ++ if (gr == NULL) ++ { ++ log_warning("can't get gid of group '%s' (listed in 'AllowedGroups')", groupname); ++ continue; ++ } ++ ++ if(uid_in_group(uid, gr->gr_gid)) ++ return true; ++ } ++ return false; ++} ++ + static int test_configuration(bool setting_SaveFullCore, bool setting_CreateCoreBacktrace) + { + if (!setting_SaveFullCore && !setting_CreateCoreBacktrace) +@@ -701,6 +739,8 @@ int main(int argc, char** argv) + bool setting_SaveFullCore; + bool setting_CreateCoreBacktrace; + GList *setting_ignored_paths = NULL; ++ GList *setting_allowed_users = NULL; ++ GList *setting_allowed_groups = NULL; + { + map_string_t *settings = new_map_string(); + load_abrt_plugin_conf_file("CCpp.conf", settings); +@@ -716,6 +756,13 @@ int main(int argc, char** argv) + if (value) + setting_ignored_paths = parse_list(value); + ++ value = get_map_string_item_or_NULL(settings, "AllowedUsers"); ++ if (value) ++ setting_allowed_users = parse_list(value); ++ value = get_map_string_item_or_NULL(settings, "AllowedGroups"); ++ if (value) ++ setting_allowed_groups = parse_list(value); ++ + setting_CreateCoreBacktrace = value ? string_to_bool(value) : true; + value = get_map_string_item_or_NULL(settings, "VerboseLog"); + if (value) +@@ -803,6 +850,22 @@ int main(int argc, char** argv) + return 0; + } + ++ /* dumping core for user, if allowed */ ++ if (setting_allowed_users || setting_allowed_groups) ++ { ++ if (setting_allowed_users && is_user_allowed(uid, setting_allowed_users)) ++ log_debug("User %lu is listed in 'AllowedUsers'", (long unsigned)uid); ++ else if (setting_allowed_groups && is_user_in_allowed_group(uid, setting_allowed_groups)) ++ log_debug("User %lu is member of group listed in 'AllowedGroups'", (long unsigned)uid); ++ else ++ { ++ error_msg_not_process_crash(pid_str, last_slash + 1, (long unsigned)uid, signal_no, ++ signame, "ignoring (not allowed in 'AllowedUsers' nor 'AllowedGroups')"); ++ ++ xfunc_die(); ++ } ++ } ++ + user_pwd = get_cwd(pid); + log_notice("user_pwd:'%s'", user_pwd); + +-- +1.8.3.1 + diff --git a/SOURCES/0214-Save-Vendor-and-GPG-Fingerprint.patch b/SOURCES/0214-Save-Vendor-and-GPG-Fingerprint.patch new file mode 100644 index 0000000..3e1df23 --- /dev/null +++ b/SOURCES/0214-Save-Vendor-and-GPG-Fingerprint.patch @@ -0,0 +1,232 @@ +From 95ea12b9a4be68cc25f0811e693c7a024b5e3d4b Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 9 Feb 2016 16:53:21 +0100 +Subject: [PATCH] Save Vendor and GPG Fingerprint + +Red Hat keys can be found at: + https://access.redhat.com/security/team/key + +Related: #1258482 +--- + src/daemon/abrt-action-save-package-data.c | 34 ++++++++++++++++++++----- + src/daemon/abrt-action-save-package-data.conf | 7 ++++++ + src/daemon/rpm.c | 36 +++++++++++++++++++-------- + src/daemon/rpm.h | 15 +++++++++++ + src/plugins/abrt-action-save-kernel-data | 6 +++++ + 5 files changed, 82 insertions(+), 16 deletions(-) + +diff --git a/src/daemon/abrt-action-save-package-data.c b/src/daemon/abrt-action-save-package-data.c +index 97d5f5e..ef2007e 100644 +--- a/src/daemon/abrt-action-save-package-data.c ++++ b/src/daemon/abrt-action-save-package-data.c +@@ -224,6 +224,7 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name) + char *cmdline = NULL; + char *executable = NULL; + char *package_short_name = NULL; ++ char *fingerprint = NULL; + struct pkg_envra *pkg_name = NULL; + char *component = NULL; + int error = 1; +@@ -311,13 +312,12 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name) + goto ret; /* return 1 (failure) */ + } + +- if (settings_bOpenGPGCheck) ++ fingerprint = rpm_get_fingerprint(package_short_name); ++ if (!(fingerprint != NULL && rpm_fingerprint_is_imported(fingerprint)) ++ && settings_bOpenGPGCheck) + { +- if (!rpm_chk_fingerprint(package_short_name)) +- { +- log("Package '%s' isn't signed with proper key", package_short_name); +- goto ret; /* return 1 (failure) */ +- } ++ log("Package '%s' isn't signed with proper key", package_short_name); ++ goto ret; /* return 1 (failure) */ + /* We used to also check the integrity of the executable here: + * if (!CheckHash(package_short_name.c_str(), executable)) BOOM(); + * Checking the MD5 sum requires to run prelink to "un-prelink" the +@@ -340,6 +340,27 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name) + dd_save_text(dd, FILENAME_PKG_VERSION, pkg_name->p_version); + dd_save_text(dd, FILENAME_PKG_RELEASE, pkg_name->p_release); + dd_save_text(dd, FILENAME_PKG_ARCH, pkg_name->p_arch); ++ dd_save_text(dd, FILENAME_PKG_VENDOR, pkg_name->p_vendor); ++ ++ if (fingerprint) ++ { ++ /* 16 character + 3 spaces + 1 '\0' + 2 Bytes for errors :) */ ++ char key_fingerprint[22] = {0}; ++ ++ /* The condition is just a defense against errors */ ++ for (size_t i = 0, j = 0; j < sizeof(key_fingerprint) - 2; ) ++ { ++ key_fingerprint[j++] = toupper(fingerprint[i++]); ++ ++ if (fingerprint[i] == '\0') ++ break; ++ ++ if (!(i & (0x3))) ++ key_fingerprint[j++] = ' '; ++ } ++ ++ dd_save_text(dd, FILENAME_PKG_FINGERPRINT, key_fingerprint); ++ } + } + + if (component) +@@ -355,6 +376,7 @@ static int SavePackageDescriptionToDebugDump(const char *dump_dir_name) + free(package_short_name); + free_pkg_envra(pkg_name); + free(component); ++ free(fingerprint); + + return error; + } +diff --git a/src/daemon/abrt-action-save-package-data.conf b/src/daemon/abrt-action-save-package-data.conf +index 3d35bb6..bf97264 100644 +--- a/src/daemon/abrt-action-save-package-data.conf ++++ b/src/daemon/abrt-action-save-package-data.conf +@@ -3,6 +3,13 @@ + # the list of public keys used to check the signature is + # in the file gpg_keys + # ++# How can I check the GPG key used to sign an installed pacakge on ++# Red hat Enterprise Linux: ++# https://access.redhat.com/solutions/1120013 ++# ++# Product Signing (GPG) Keys: ++# https://access.redhat.com/security/team/key ++# + OpenGPGCheck = yes + + # Blacklisted packages +diff --git a/src/daemon/rpm.c b/src/daemon/rpm.c +index b69992c..d3d3d0a 100644 +--- a/src/daemon/rpm.c ++++ b/src/daemon/rpm.c +@@ -99,7 +99,22 @@ void rpm_load_gpgkey(const char* filename) + + int rpm_chk_fingerprint(const char* pkg) + { +- int ret = 0; ++ char *fingerprint = rpm_get_fingerprint(pkg); ++ int res = 0; ++ if (fingerprint) ++ res = rpm_fingerprint_is_imported(fingerprint); ++ free(fingerprint); ++ return res; ++} ++ ++int rpm_fingerprint_is_imported(const char* fingerprint) ++{ ++ return !!g_list_find_custom(list_fingerprints, fingerprint, (GCompareFunc)g_strcmp0); ++} ++ ++char *rpm_get_fingerprint(const char *pkg) ++{ ++ char *fingerprint = NULL; + char *pgpsig = NULL; + const char *errmsg = NULL; + +@@ -117,20 +132,15 @@ int rpm_chk_fingerprint(const char* pkg) + goto error; + } + +- { +- char *pgpsig_tmp = strstr(pgpsig, " Key ID "); +- if (pgpsig_tmp) +- { +- pgpsig_tmp += sizeof(" Key ID ") - 1; +- ret = g_list_find_custom(list_fingerprints, pgpsig_tmp, (GCompareFunc)g_strcmp0) != NULL; +- } +- } ++ char *pgpsig_tmp = strstr(pgpsig, " Key ID "); ++ if (pgpsig_tmp) ++ fingerprint = xstrdup(pgpsig_tmp + sizeof(" Key ID ") - 1); + + error: + free(pgpsig); + rpmdbFreeIterator(iter); + rpmtsFree(ts); +- return ret; ++ return fingerprint; + } + + /* +@@ -244,6 +254,7 @@ pkg_add_id(name); + pkg_add_id(version); + pkg_add_id(release); + pkg_add_id(arch); ++pkg_add_id(vendor); + + // caller is responsible to free returned value + struct pkg_envra *rpm_get_package_nvr(const char *filename, const char *rootdir_or_NULL) +@@ -314,6 +325,10 @@ struct pkg_envra *rpm_get_package_nvr(const char *filename, const char *rootdir_ + if (r) + goto error; + ++ r = pkg_add_vendor(header, p); ++ if (r) ++ goto error; ++ + p->p_nvr = xasprintf("%s-%s-%s", p->p_name, p->p_version, p->p_release); + + rpmdbFreeIterator(iter); +@@ -334,6 +349,7 @@ void free_pkg_envra(struct pkg_envra *p) + if (!p) + return; + ++ free(p->p_vendor); + free(p->p_epoch); + free(p->p_name); + free(p->p_version); +diff --git a/src/daemon/rpm.h b/src/daemon/rpm.h +index 1b90368..89aa088 100644 +--- a/src/daemon/rpm.h ++++ b/src/daemon/rpm.h +@@ -38,6 +38,7 @@ struct pkg_envra { + char *p_version; + char *p_release; + char *p_arch; ++ char *p_vendor; + }; + + void free_pkg_envra(struct pkg_envra *p); +@@ -69,6 +70,20 @@ void rpm_load_gpgkey(const char* filename); + int rpm_chk_fingerprint(const char* pkg); + + /** ++ * A function, which checks if the given finger print is imported. ++ * @param pkg A package name. ++ * @return 1 if imported, otherwise (not-imported, or error) 0 ++ */ ++int rpm_fingerprint_is_imported(const char* fingerprint); ++ ++/** ++ * A function, which returns package's finger print ++ * @param pkg A package name. ++ * @return NULL if not-valid, otherwise malloced NULL-terminated string. ++ */ ++char *rpm_get_fingerprint(const char* pkg); ++ ++/** + * Gets a package name. This package contains particular + * file. If the file doesn't belong to any package, empty string is + * returned. +diff --git a/src/plugins/abrt-action-save-kernel-data b/src/plugins/abrt-action-save-kernel-data +index 7df85cf..5f1ddc7 100755 +--- a/src/plugins/abrt-action-save-kernel-data ++++ b/src/plugins/abrt-action-save-kernel-data +@@ -29,3 +29,9 @@ rpm -q --qf "%{release}\n" "$package" > pkg_release + epoch="$( rpm -q --qf "%{epoch}" "$package" )" + test "$epoch" = "(none)" && epoch=0 + echo "$epoch" > pkg_epoch ++rpm -q --qf "%{vendor}\n" "$package" > pkg_vendor ++ ++FINGERPRINT=$(rpm -q --qf "%|SIGGPG?{%{SIGGPG:pgpsig}}:{%{SIGPGP:pgpsig}}|" "$package" 2>/dev/null | tail -1) ++if [ -n "$FINGERPRINT" -a "_(none)" != "_$FINGERPRINT" ]; then ++ echo $FINGERPRINT | sed 's/.*Key ID \(....\)\(....\)\(....\)\(....\)$/\U\1 \U\2 \U\3 \U\4/' > pkg_fingerprint ++fi +-- +1.8.3.1 + diff --git a/SOURCES/0221-lib-prevent-from-creating-non-root-sub-dirs-in-dump-.patch b/SOURCES/0221-lib-prevent-from-creating-non-root-sub-dirs-in-dump-.patch new file mode 100644 index 0000000..31b6cc8 --- /dev/null +++ b/SOURCES/0221-lib-prevent-from-creating-non-root-sub-dirs-in-dump-.patch @@ -0,0 +1,36 @@ +From 2acf4b7691165003cae6308f006cef329802f79e Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 5 Apr 2016 14:51:28 +0200 +Subject: [PATCH] lib: prevent from creating non-root sub-dirs in dump dir + +In the case an uid element doesn't exist in time of dump dir creating, we have +to create dump dir owned by root. + +Related to rhbz#1264921 + +Signed-off-by: Matej Habrnal +--- + src/lib/hooklib.c | 7 ++++++- + 1 file changed, 6 insertions(+), 1 deletion(-) + +diff --git a/src/lib/hooklib.c b/src/lib/hooklib.c +index 160a011..ed1607d 100644 +--- a/src/lib/hooklib.c ++++ b/src/lib/hooklib.c +@@ -415,7 +415,12 @@ char* problem_data_save(problem_data_t *pd) + if (g_settings_privatereports) + dd = create_dump_dir_from_problem_data_ext(pd, g_settings_dump_location, 0); + else +- dd = create_dump_dir_from_problem_data(pd, g_settings_dump_location); ++ { ++ if (problem_data_get_content_or_NULL(pd, FILENAME_UID) == NULL) ++ dd = create_dump_dir_from_problem_data_ext(pd, g_settings_dump_location, 0); ++ else ++ dd = create_dump_dir_from_problem_data(pd, g_settings_dump_location); ++ } + + char *problem_id = NULL; + if (dd) +-- +1.8.3.1 + diff --git a/SOURCES/0222-ccpp-exit-with-error-if-cannot-get-executable.patch b/SOURCES/0222-ccpp-exit-with-error-if-cannot-get-executable.patch new file mode 100644 index 0000000..d22d352 --- /dev/null +++ b/SOURCES/0222-ccpp-exit-with-error-if-cannot-get-executable.patch @@ -0,0 +1,49 @@ +From 80d2c8604e4dae2fccad721eae0b219376a6ffce Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 21 Apr 2016 11:20:40 +0200 +Subject: [PATCH] ccpp: exit with error if cannot get executable + +Related to rhbz#1277849 + +Signed-off-by: Matej Habrnal +--- + src/hooks/abrt-hook-ccpp.c | 11 +++++++++-- + 1 file changed, 9 insertions(+), 2 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index c9fbf68..8afd0d3 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -703,13 +703,16 @@ static void error_msg_not_process_crash(const char *pid_str, const char *process + char *message_full = xvasprintf(message, p); + va_end(p); + ++ char *process_name = (process_str) ? xasprintf(" (%s)", process_str) : xstrdup(""); ++ + if (signame) + error_msg("Process %s (%s) of user %lu killed by SIG%s - %s", pid_str, +- process_str, uid, signame, message_full); ++ process_name, uid, signame, message_full); + else + error_msg("Process %s (%s) of user %lu killed by signal %d - %s", pid_str, +- process_str, uid, signal_no, message_full); ++ process_name, uid, signal_no, message_full); + ++ free(process_name); + free(message_full); + + return; +@@ -835,6 +838,10 @@ int main(int argc, char** argv) + + int src_fd_binary = -1; + char *executable = get_executable(pid, setting_SaveBinaryImage ? &src_fd_binary : NULL); ++ if (executable == NULL) ++ error_msg_not_process_crash(pid_str, NULL, (long unsigned)uid, signal_no, ++ signame, "ignoring (can't read /proc/PID/exe link)"); ++ + if (executable && strstr(executable, "/abrt-hook-ccpp")) + { + error_msg_and_die("PID %lu is '%s', not dumping it to avoid recursion", +-- +1.8.3.1 + diff --git a/SOURCES/0223-ccpp-add-xfunc_die-if-cannot-get-executable.patch b/SOURCES/0223-ccpp-add-xfunc_die-if-cannot-get-executable.patch new file mode 100644 index 0000000..1390605 --- /dev/null +++ b/SOURCES/0223-ccpp-add-xfunc_die-if-cannot-get-executable.patch @@ -0,0 +1,45 @@ +From ec6296c489571286f6ba4dc586fdd936b899ba92 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 21 Apr 2016 15:54:03 +0200 +Subject: [PATCH] ccpp: add xfunc_die() if cannot get executable + +Also remove extra checks of executable. + +Related to rhbz#1277849 + +Signed-off-by: Matej Habrnal +--- + src/hooks/abrt-hook-ccpp.c | 8 ++++++-- + 1 file changed, 6 insertions(+), 2 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 8afd0d3..2c05c78 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -839,17 +839,21 @@ int main(int argc, char** argv) + int src_fd_binary = -1; + char *executable = get_executable(pid, setting_SaveBinaryImage ? &src_fd_binary : NULL); + if (executable == NULL) ++ { + error_msg_not_process_crash(pid_str, NULL, (long unsigned)uid, signal_no, + signame, "ignoring (can't read /proc/PID/exe link)"); + +- if (executable && strstr(executable, "/abrt-hook-ccpp")) ++ xfunc_die(); ++ } ++ ++ if (strstr(executable, "/abrt-hook-ccpp")) + { + error_msg_and_die("PID %lu is '%s', not dumping it to avoid recursion", + (long)pid, executable); + } + + const char *last_slash = strrchr(executable, '/'); +- if (executable && is_path_ignored(setting_ignored_paths, executable)) ++ if (is_path_ignored(setting_ignored_paths, executable)) + { + error_msg_not_process_crash(pid_str, last_slash + 1, (long unsigned)uid, signal_no, + signame, "ignoring (listed in 'IgnoredPaths')"); +-- +1.8.3.1 + diff --git a/SOURCES/0225-vmcore-generate-reason-file-in-all-cases.patch b/SOURCES/0225-vmcore-generate-reason-file-in-all-cases.patch new file mode 100644 index 0000000..36b1fe6 --- /dev/null +++ b/SOURCES/0225-vmcore-generate-reason-file-in-all-cases.patch @@ -0,0 +1,35 @@ +From ef62408248f975dab68f99e1be1eb9836374dc7c Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 27 Mar 2015 10:51:52 +0100 +Subject: [PATCH] vmcore: generate 'reason' file in all cases + +If kdump generates the dmesg log file (vmcore-dmesg.log), the vmcore's +post-create event doesn't generate 'reason' file. It is caused by +inappropriate use of 'abrt-dump-oops' where the event uses that helper +to parse the log file to generate 'backtrace' file instead of using it +with the '-u' argument to update the dump directory and create all +necessary files. + +Resolves: rhbz#1250337 + +Signed-off-by: Jakub Filak +--- + src/plugins/vmcore_event.conf | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/plugins/vmcore_event.conf b/src/plugins/vmcore_event.conf +index 34608d9..5957b3f 100644 +--- a/src/plugins/vmcore_event.conf ++++ b/src/plugins/vmcore_event.conf +@@ -3,7 +3,7 @@ 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 $? ++ abrt-dump-oops -u $DUMP_DIR vmcore-dmesg.txt || exit $? + # + # Does "kernel" element exist? + test -f kernel && exit 0 +-- +1.8.3.1 + diff --git a/SOURCES/0227-console-notifications-add-timeout.patch b/SOURCES/0227-console-notifications-add-timeout.patch new file mode 100644 index 0000000..ff0eb17 --- /dev/null +++ b/SOURCES/0227-console-notifications-add-timeout.patch @@ -0,0 +1,26 @@ +From 83831bb2af42219682e3e1d4adbd350e634bd07e Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 20 Jan 2015 15:12:05 +0100 +Subject: [PATCH] console-notifications: add timeout + +Related to #898 +Resolves rhbz#1249101 + +Signed-off-by: Jakub Filak +--- + src/cli/abrt-console-notification.sh | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/cli/abrt-console-notification.sh b/src/cli/abrt-console-notification.sh +index 976dfc3..a98f164 100755 +--- a/src/cli/abrt-console-notification.sh ++++ b/src/cli/abrt-console-notification.sh +@@ -39,4 +39,4 @@ if [ -f "$TMPPATH" ]; then + mv -f "$TMPPATH" "$SINCEFILE" >"$ABRT_DEBUG_LOG" 2>&1 + fi + +-abrt-cli status --since="$SINCE" 2>"$ABRT_DEBUG_LOG" ++timeout 10s abrt-cli status --since="$SINCE" 2>"$ABRT_DEBUG_LOG" || echo "'abrt-cli status' timed out" +-- +1.8.3.1 + diff --git a/SOURCES/0228-Fix-memory-leaks-in-abrt-dbus.patch b/SOURCES/0228-Fix-memory-leaks-in-abrt-dbus.patch new file mode 100644 index 0000000..a70dad7 --- /dev/null +++ b/SOURCES/0228-Fix-memory-leaks-in-abrt-dbus.patch @@ -0,0 +1,163 @@ +From 1902735613a3cc4a1c87e8cbae83a7452bfd8327 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Sun, 1 May 2016 07:13:56 +0200 +Subject: [PATCH] Fix memory leaks in abrt-dbus + +Fix several repeated leaks that were causing abrt-dbus to waste system +memory. + +I used this valgrind command: + valgrind --tool=memcheck --leak-check=full --show-leak-kinds=all \ + --track-origins=yes --suppressions=glib.supp \ + --log-file=/tmp/leaks-$(date +%s).txt abrt-dbus -vvv -t 10 + +With suppressions from libsecret and NetworkManager: + * https://raw.githubusercontent.com/GNOME/libsecret/master/build/glib.supp + * https://raw.githubusercontent.com/NetworkManager/NetworkManager/master/valgrind.suppressions + +The suppressions were needed because Glib allocates a lot of static +stuff and does not free it at exit because it is useless. + +Resolves: #1319704 + +Signed-off-by: Jakub Filak +--- + src/dbus/abrt-dbus.c | 39 ++++++++++++++++++++++----------------- + src/dbus/abrt-polkit.c | 3 +++ + src/lib/abrt_conf.c | 3 +++ + src/lib/abrt_glib.c | 7 +++---- + src/lib/problem_api.c | 1 + + 5 files changed, 32 insertions(+), 21 deletions(-) + +diff --git a/src/dbus/abrt-dbus.c b/src/dbus/abrt-dbus.c +index 173cec4..0a459cd 100644 +--- a/src/dbus/abrt-dbus.c ++++ b/src/dbus/abrt-dbus.c +@@ -97,22 +97,21 @@ static uid_t get_caller_uid(GDBusConnection *connection, GDBusMethodInvocation * + GError *error = NULL; + guint caller_uid; + +- GDBusProxy * proxy = g_dbus_proxy_new_sync(connection, +- G_DBUS_PROXY_FLAGS_NONE, +- NULL, +- "org.freedesktop.DBus", +- "/org/freedesktop/DBus", +- "org.freedesktop.DBus", +- NULL, +- &error); +- +- GVariant *result = g_dbus_proxy_call_sync(proxy, +- "GetConnectionUnixUser", +- g_variant_new ("(s)", caller), +- G_DBUS_CALL_FLAGS_NONE, +- -1, +- NULL, +- &error); ++ /* Proxy isn't necessary if only need to call a single method. By default ++ * GDBusProxy connects to signals and downloads property values. It ++ * suppressed by passing flags argument, but not-creating proxy at all is ++ * much faster and safer. */ ++ GVariant *result = g_dbus_connection_call_sync(connection, ++ "org.freedesktop.DBus", ++ "/org/freedesktop/DBus", ++ "org.freedesktop.DBus", ++ "GetConnectionUnixUser", ++ g_variant_new ("(s)", caller), ++ /* reply_type */ NULL, ++ G_DBUS_CALL_FLAGS_NONE, ++ /* timeout */ -1, ++ /* cancellable */ NULL, ++ &error); + + if (result == NULL) + { +@@ -940,7 +939,11 @@ static void handle_method_call(GDBusConnection *connection, + static gboolean on_timeout_cb(gpointer user_data) + { + g_main_loop_quit(loop); +- return TRUE; ++ ++ /* FALSE -> remove and destroy this source. Without it, the timeout source ++ * will be leaked at exit - that isn't a problem but it makes valgrind out ++ * less readable. */ ++ return FALSE; + } + + static const GDBusInterfaceVTable interface_vtable = +@@ -1059,6 +1062,8 @@ int main(int argc, char *argv[]) + + g_dbus_node_info_unref(introspection_data); + ++ g_main_loop_unref(loop); ++ + free_abrt_conf_data(); + + return 0; +diff --git a/src/dbus/abrt-polkit.c b/src/dbus/abrt-polkit.c +index 39880e5..34af8a4 100644 +--- a/src/dbus/abrt-polkit.c ++++ b/src/dbus/abrt-polkit.c +@@ -59,8 +59,11 @@ static PolkitResult do_check(PolkitSubject *subject, const char *action_id) + POLKIT_CHECK_AUTHORIZATION_FLAGS_ALLOW_USER_INTERACTION, + cancellable, + &error); ++ ++ g_object_unref(cancellable); + g_object_unref(authority); + g_source_remove(cancel_timeout); ++ g_object_unref(subject); + if (error) + { + g_error_free(error); +diff --git a/src/lib/abrt_conf.c b/src/lib/abrt_conf.c +index 4a49032..5ae64c5 100644 +--- a/src/lib/abrt_conf.c ++++ b/src/lib/abrt_conf.c +@@ -37,6 +37,9 @@ void free_abrt_conf_data() + + free(g_settings_dump_location); + g_settings_dump_location = NULL; ++ ++ free(g_settings_autoreporting_event); ++ g_settings_autoreporting_event = NULL; + } + + static void ParseCommon(map_string_t *settings, const char *conf_filename) +diff --git a/src/lib/abrt_glib.c b/src/lib/abrt_glib.c +index f7c128e..60e104f 100644 +--- a/src/lib/abrt_glib.c ++++ b/src/lib/abrt_glib.c +@@ -22,15 +22,14 @@ + GList *string_list_from_variant(GVariant *variant) + { + GList *list = NULL; +- GVariantIter *iter; ++ GVariantIter iter; ++ g_variant_iter_init(&iter, variant); + gchar *str; +- g_variant_get(variant, "as", &iter); +- while (g_variant_iter_loop(iter, "s", &str)) ++ while (g_variant_iter_loop(&iter, "s", &str)) + { + log_notice("adding: %s", str); + list = g_list_prepend(list, xstrdup(str)); + } +- g_variant_unref(variant); + + /* we were prepending items, so we should reverse the list to not confuse people + * by returning items in reversed order than it's in the variant +diff --git a/src/lib/problem_api.c b/src/lib/problem_api.c +index b343882..9fedb3d 100644 +--- a/src/lib/problem_api.c ++++ b/src/lib/problem_api.c +@@ -51,6 +51,7 @@ int for_each_problem_in_dir(const char *path, + if (dir_fd < 0) + { + VERB2 perror_msg("can't open problem directory '%s'", full_name); ++ free(full_name); + continue; + } + +-- +1.8.3.1 + diff --git a/SOURCES/0229-python-fix-check-for-absolute-path.patch b/SOURCES/0229-python-fix-check-for-absolute-path.patch new file mode 100644 index 0000000..faabb35 --- /dev/null +++ b/SOURCES/0229-python-fix-check-for-absolute-path.patch @@ -0,0 +1,55 @@ +From 61c3922184f8a5c8c29cbb0a67d907a5ab385daf Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 2 May 2016 13:38:18 +0200 +Subject: [PATCH] python: fix check for absolute path + +Related to rhbz#1166633 + +Signed-off-by: Matej Habrnal +--- + src/hooks/abrt_exception_handler.py.in | 20 ++++++++++++++------ + 1 file changed, 14 insertions(+), 6 deletions(-) + +diff --git a/src/hooks/abrt_exception_handler.py.in b/src/hooks/abrt_exception_handler.py.in +index 6cf36d0..7455663 100644 +--- a/src/hooks/abrt_exception_handler.py.in ++++ b/src/hooks/abrt_exception_handler.py.in +@@ -167,13 +167,21 @@ def get_dso_list(tb): + + return list(packages) + +-def conf_enabled(var_name): ++def require_abs_path(): ++ """ ++ Return True if absolute path requirement is enabled ++ in configuration ++ """ ++ ++ import problem ++ + try: + conf = problem.load_plugin_conf_file("python.conf") +- except: +- return -1 +- else: +- conf.get(var_name, -1) ++ except OsError: ++ return False ++ ++ return conf.get("RequireAbsolutePath", "yes") == "yes" ++ + + def handleMyException((etype, value, tb)): + """ +@@ -219,7 +227,7 @@ def handleMyException((etype, value, tb)): + # (In this case we can't reliably determine package) + syslog("detected unhandled Python exception in '%s'" % sys.argv[0]) + if sys.argv[0][0] != "/": +- if conf_enabled("RequireAbsolutePath") != 0: ++ if require_abs_path(): + raise Exception + + import traceback +-- +1.8.3.1 + diff --git a/SOURCES/0232-ccpp-unify-log-message-of-ignored-crashes.patch b/SOURCES/0232-ccpp-unify-log-message-of-ignored-crashes.patch new file mode 100644 index 0000000..4d2c269 --- /dev/null +++ b/SOURCES/0232-ccpp-unify-log-message-of-ignored-crashes.patch @@ -0,0 +1,397 @@ +From 6724ba03fea310439c02f97d9429b921d12275c5 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 19 May 2016 12:10:42 +0200 +Subject: [PATCH] ccpp: unify log message of ignored crashes + +ABRT will ignore crashes in executables for which absolute path matches one of +specified patterns. + +Example of log messages in case of ignoring crashes: +- Crash's path is listed in 'IgnoredPath' in CCpp.conf + Process 16431 (will_segfault) of user 0 killed by SIGSEGV - ignoring + (listed in 'IgnoredPaths') + +- Repeating crash + Process 16219 (will_segfault) of user 1000 killed by SIGSEGV - + ignoring (repeated crash) + +- abrt-ccpp-hook crash + Process 16223 (abrt-hook-ccpp) of user 1000 killed by SIGSEGV - + ignoring (avoid recursion) + +- abrt crash + Process 16228 (abrt_test) of user 1000 killed by SIGSEGV - + ignoring ('DebugLevel' == 0) + +- not supported signal + Process 16229 (crash) of user 1000 killed by signal 99 - ignoring + (unsupported signal) + +- abrtd is not running + Process 16229 (crash) of user 1000 killed by signal 99 - ignoring + (abrtd is not running) + +- low free space + Process 16229 (crash) of user 1000 killed by signal 99 - ignoring + (low free space) + +- failed to parse /proc/$PID/status Uid + Process 16229 (crash) of user 1000 killed by signal 99 - ignoring + (Failed to parse /proc/16229/status (Uid)) + +- failed to parse /proc/$PID/status Gid + Process 16229 (crash) of user 1000 killed by signal 99 - ignoring + (Failed to parse /proc/16229/status (Gid)) + +- failed to get executable + Process 16229 (crash) of user 1000 killed by signal 99 - ignoring + (Can't read /proc/16229/exe link) + +- core size limit is bogus + Process 16229 (crash) of user 1000 killed by signal 99 - ignoring + (RLIMIT_CORE 'foo' is bogus) + +I the case the crash is not ignored the log msg is following: + Process 21768 (will_segfault) of user 1000 killed by SIGSEGV - + dumping core + +Related to: #1337186 + +Signed-off-by: Matej Habrnal +--- + src/hooks/abrt-hook-ccpp.c | 211 ++++++++++++++++++++++++++++----------------- + 1 file changed, 133 insertions(+), 78 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 2c05c78..dc4dec6 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -695,7 +695,7 @@ static int test_configuration(bool setting_SaveFullCore, bool setting_CreateCore + return 0; + } + +-static void error_msg_not_process_crash(const char *pid_str, const char *process_str, ++static void error_msg_process_crash(const char *pid_str, const char *process_str, + long unsigned uid, int signal_no, const char *signame, const char *message, ...) + { + va_list p; +@@ -706,10 +706,10 @@ static void error_msg_not_process_crash(const char *pid_str, const char *process + char *process_name = (process_str) ? xasprintf(" (%s)", process_str) : xstrdup(""); + + if (signame) +- error_msg("Process %s (%s) of user %lu killed by SIG%s - %s", pid_str, ++ error_msg("Process %s%s of user %lu killed by SIG%s - %s", pid_str, + process_name, uid, signame, message_full); + else +- error_msg("Process %s (%s) of user %lu killed by signal %d - %s", pid_str, ++ error_msg("Process %s%s of user %lu killed by signal %d - %s", pid_str, + process_name, uid, signal_no, message_full); + + free(process_name); +@@ -718,6 +718,20 @@ static void error_msg_not_process_crash(const char *pid_str, const char *process + return; + } + ++static void error_msg_ignore_crash(const char *pid_str, const char *process_str, ++ long unsigned uid, int signal_no, const char *signame, const char *message, ...) ++{ ++ va_list p; ++ va_start(p, message); ++ char *message_full = xvasprintf(message, p); ++ va_end(p); ++ ++ error_msg_process_crash(pid_str, process_str, uid, signal_no, signame, "ignoring (%s)", message_full); ++ ++ free(message_full); ++ return; ++} ++ + int main(int argc, char** argv) + { + int err = 1; +@@ -798,24 +812,35 @@ int main(int argc, char** argv) + } + } + +- errno = 0; + const char* signal_str = argv[1]; + int signal_no = xatoi_positive(signal_str); + const char *signame = NULL; + bool signal_is_fatal_bool = signal_is_fatal(signal_no, &signame); ++ ++ const char *pid_str = argv[3]; ++ /* xatoi_positive() handles errors */ ++ uid_t uid = xatoi_positive(argv[4]); ++ ++ errno = 0; + off_t ulimit_c = strtoull(argv[2], NULL, 10); ++ if (errno) ++ { ++ error_msg_ignore_crash(pid_str, NULL, (long unsigned)uid, signal_no, ++ signame, "RLIMIT_CORE '%s' is bogus", argv[2]); ++ xfunc_die(); ++ } ++ + if (ulimit_c < 0) /* unlimited? */ + { + /* set to max possible >0 value */ + ulimit_c = ~((off_t)1 << (sizeof(off_t)*8-1)); + } +- const char *pid_str = argv[3]; +- pid_t local_pid = xatoi_positive(argv[3]); +- uid_t uid = xatoi_positive(argv[4]); +- if (errno || local_pid <= 0) +- { +- perror_msg_and_die("PID '%s' or limit '%s' is bogus", argv[3], argv[2]); +- } ++ ++ const char *global_pid_str = argv[8]; ++ pid_t pid = xatoi_positive(argv[8]); ++ ++ user_pwd = get_cwd(pid); /* may be NULL on error */ ++ log_notice("user_pwd:'%s'", user_pwd); + + { + char *s = xmalloc_fopen_fgetline_fclose(VAR_RUN"/abrt/saved_core_pattern"); +@@ -825,8 +850,6 @@ int main(int argc, char** argv) + else + free(s); + } +- const char *global_pid_str = argv[8]; +- pid_t pid = xatoi_positive(argv[8]); + + pid_t tid = 0; + if (argv[9]) +@@ -836,56 +859,24 @@ int main(int argc, char** argv) + + char path[PATH_MAX]; + +- int src_fd_binary = -1; +- char *executable = get_executable(pid, setting_SaveBinaryImage ? &src_fd_binary : NULL); +- if (executable == NULL) +- { +- error_msg_not_process_crash(pid_str, NULL, (long unsigned)uid, signal_no, +- signame, "ignoring (can't read /proc/PID/exe link)"); +- +- xfunc_die(); +- } +- +- if (strstr(executable, "/abrt-hook-ccpp")) +- { +- error_msg_and_die("PID %lu is '%s', not dumping it to avoid recursion", +- (long)pid, executable); +- } +- +- const char *last_slash = strrchr(executable, '/'); +- if (is_path_ignored(setting_ignored_paths, executable)) +- { +- error_msg_not_process_crash(pid_str, last_slash + 1, (long unsigned)uid, signal_no, +- signame, "ignoring (listed in 'IgnoredPaths')"); +- +- return 0; +- } +- +- /* dumping core for user, if allowed */ +- if (setting_allowed_users || setting_allowed_groups) +- { +- if (setting_allowed_users && is_user_allowed(uid, setting_allowed_users)) +- log_debug("User %lu is listed in 'AllowedUsers'", (long unsigned)uid); +- else if (setting_allowed_groups && is_user_in_allowed_group(uid, setting_allowed_groups)) +- log_debug("User %lu is member of group listed in 'AllowedGroups'", (long unsigned)uid); +- else +- { +- error_msg_not_process_crash(pid_str, last_slash + 1, (long unsigned)uid, signal_no, +- signame, "ignoring (not allowed in 'AllowedUsers' nor 'AllowedGroups')"); +- +- xfunc_die(); +- } +- } +- +- user_pwd = get_cwd(pid); +- log_notice("user_pwd:'%s'", user_pwd); +- + sprintf(path, "/proc/%lu/status", (long)pid); + char *proc_pid_status = xmalloc_xopen_read_close(path, /*maxsz:*/ NULL); + + uid_t fsuid = uid; + uid_t tmp_fsuid = get_fsuid(proc_pid_status); ++ if (tmp_fsuid < 0) ++ { ++ error_msg_ignore_crash(pid_str, NULL, (long unsigned)uid, signal_no, ++ signame, "Failed to parse /proc/%lu/status (Uid)", (long)pid); ++ xfunc_die(); ++ } + const int fsgid = get_fsgid(proc_pid_status); ++ if (fsgid < 0) ++ { ++ error_msg_ignore_crash(pid_str, NULL, (long unsigned)uid, signal_no, ++ signame, "Failed to parse /proc/%lu/status (Gid)", (long)pid); ++ xfunc_die(); ++ } + + int suid_policy = dump_suid_policy(); + if (tmp_fsuid != uid) +@@ -901,8 +892,7 @@ int main(int argc, char** argv) + } + } + +- /* If PrivateReports is on, root owns all problem directories */ +- const uid_t dduid = g_settings_privatereports ? 0 : fsuid; ++ snprintf(path, sizeof(path), "%s/last-ccpp", g_settings_dump_location); + + /* Open a fd to compat coredump, if requested and is possible */ + int user_core_fd = -1; +@@ -910,18 +900,72 @@ int main(int argc, char** argv) + /* note: checks "user_pwd == NULL" inside; updates core_basename */ + user_core_fd = open_user_core(uid, fsuid, fsgid, pid, &argv[1]); + ++ int src_fd_binary = -1; ++ char *executable = get_executable(pid, setting_SaveBinaryImage ? &src_fd_binary : NULL); + if (executable == NULL) + { + /* readlink on /proc/$PID/exe failed, don't create abrt dump dir */ +- error_msg("Can't read /proc/%lu/exe link", (long)pid); ++ error_msg_ignore_crash(pid_str, NULL, (long unsigned)uid, signal_no, ++ signame, "Can't read /proc/%lu/exe link", (long)pid); ++ ++ xfunc_die(); ++ } ++ ++ const char *last_slash = strrchr(executable, '/'); ++ /* if the last_slash was found, skip it */ ++ if (last_slash) ++last_slash; ++ ++ if (is_path_ignored(setting_ignored_paths, executable)) ++ { ++ error_msg_ignore_crash(pid_str, last_slash, (long unsigned)uid, signal_no, ++ signame, "listed in 'IgnoredPaths'"); ++ ++ return 0; ++ } ++ ++ if (strstr(executable, "/abrt-hook-ccpp")) ++ { ++ error_msg_ignore_crash(pid_str, last_slash, (long unsigned)uid, signal_no, ++ signame, "avoid recursion"); ++ ++ xfunc_die(); ++ } ++ ++ /* Check /var/tmp/abrt/last-ccpp marker, do not dump repeated crashes ++ * if they happen too often. Else, write new marker value. ++ */ ++ if (check_recent_crash_file(path, executable)) ++ { ++ error_msg_ignore_crash(pid_str, last_slash, (long unsigned)uid, signal_no, ++ signame, "repeated crash"); ++ ++ /* It is a repeating crash */ + return create_user_core(user_core_fd, pid, ulimit_c); + } + ++ const bool abrt_crash = (last_slash && (strncmp(last_slash, "abrt", 4) == 0)); ++ if (abrt_crash && g_settings_debug_level == 0) ++ { ++ error_msg_ignore_crash(pid_str, last_slash, (long unsigned)uid, signal_no, ++ signame, "'DebugLevel' == 0"); ++ ++ goto finito; ++ } ++ ++ /* unsupported signal */ + if (!signal_is_fatal_bool) ++ { ++ error_msg_ignore_crash(pid_str, last_slash, (long unsigned)uid, signal_no, ++ signame, "unsupported signal"); ++ + return create_user_core(user_core_fd, pid, ulimit_c); // not a signal we care about ++ } + + if (!daemon_is_ok()) + { ++ error_msg_ignore_crash(pid_str, last_slash, (long unsigned)uid, signal_no, ++ signame, "abrtd is not running"); ++ + /* not an error, exit with exit code 0 */ + log("abrtd is not running. If it crashed, " + "/proc/sys/kernel/core_pattern contains a stale value, " +@@ -930,32 +974,40 @@ int main(int argc, char** argv) + return create_user_core(user_core_fd, pid, ulimit_c); + } + ++ /* dumping core for user, if allowed */ ++ if (setting_allowed_users || setting_allowed_groups) ++ { ++ if (setting_allowed_users && is_user_allowed(uid, setting_allowed_users)) ++ log_debug("User %lu is listed in 'AllowedUsers'", (long unsigned)uid); ++ else if (setting_allowed_groups && is_user_in_allowed_group(uid, setting_allowed_groups)) ++ log_debug("User %lu is member of group listed in 'AllowedGroups'", (long unsigned)uid); ++ else ++ { ++ error_msg_ignore_crash(pid_str, last_slash, (long unsigned)uid, signal_no, ++ signame, "not allowed in 'AllowedUsers' nor 'AllowedGroups'"); ++ ++ xfunc_die(); ++ } ++ } ++ ++ /* low free space */ + if (g_settings_nMaxCrashReportsSize > 0) + { + /* If free space is less than 1/4 of MaxCrashReportsSize... */ + if (low_free_space(g_settings_nMaxCrashReportsSize, g_settings_dump_location)) ++ { ++ error_msg_ignore_crash(pid_str, last_slash, (long unsigned)uid, signal_no, ++ signame, "low free space"); + return create_user_core(user_core_fd, pid, ulimit_c); ++ } + } + +- /* Check /var/tmp/abrt/last-ccpp marker, do not dump repeated crashes +- * if they happen too often. Else, write new marker value. +- */ +- snprintf(path, sizeof(path), "%s/last-ccpp", g_settings_dump_location); +- if (check_recent_crash_file(path, executable)) +- { +- /* It is a repeating crash */ +- return create_user_core(user_core_fd, pid, ulimit_c); +- } ++ /* processing crash - inform user about it */ ++ error_msg_process_crash(pid_str, last_slash, (long unsigned)uid, ++ signal_no, signame, "dumping core"); + +- if (last_slash && strncmp(++last_slash, "abrt", 4) == 0) ++ if (abrt_crash) + { +- if (g_settings_debug_level == 0) +- { +- log_warning("Ignoring crash of %s (SIG%s).", +- executable, signame ? signame : signal_str); +- goto finito; +- } +- + /* If abrtd/abrt-foo crashes, we don't want to create a _directory_, + * since that can make new copy of abrtd to process it, + * and maybe crash again... +@@ -974,7 +1026,7 @@ int main(int argc, char** argv) + * but it does not log file name */ + error_msg_and_die("Error saving '%s'", path); + } +- log("Saved core dump of pid %lu (%s) to %s (%llu bytes)", (long)pid, executable, path, (long long)core_size); ++ log_notice("Saved core dump of pid %lu (%s) to %s (%llu bytes)", (long)pid, executable, path, (long long)core_size); + err = 0; + goto finito; + } +@@ -986,6 +1038,9 @@ int main(int argc, char** argv) + return create_user_core(user_core_fd, pid, ulimit_c); + } + ++ /* If PrivateReports is on, root owns all problem directories */ ++ const uid_t dduid = g_settings_privatereports ? 0 : fsuid; ++ + /* use dduid (either fsuid or 0) instead of uid, so we don't expose any + * sensitive information of suided app in /var/tmp/abrt + * +-- +1.8.3.1 + diff --git a/SOURCES/0233-abrt-hook-ccpp-save-get_fsuid-return-values-in-int-v.patch b/SOURCES/0233-abrt-hook-ccpp-save-get_fsuid-return-values-in-int-v.patch new file mode 100644 index 0000000..fdfecd8 --- /dev/null +++ b/SOURCES/0233-abrt-hook-ccpp-save-get_fsuid-return-values-in-int-v.patch @@ -0,0 +1,48 @@ +From 3853f65022ef450469a6f612fe1ae11ab3f87a8a Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 26 May 2016 10:15:07 +0200 +Subject: [PATCH] abrt-hook-ccpp: save get_fsuid() return values in int + variables + +int because get_fsuid() returns negative values in case of error +Revealed by coverity. + +Related to: #1337186 + +Signed-off-by: Matej Habrnal +--- + src/hooks/abrt-hook-ccpp.c | 7 ++++--- + 1 file changed, 4 insertions(+), 3 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index dc4dec6..581a540 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -863,7 +863,8 @@ int main(int argc, char** argv) + char *proc_pid_status = xmalloc_xopen_read_close(path, /*maxsz:*/ NULL); + + uid_t fsuid = uid; +- uid_t tmp_fsuid = get_fsuid(proc_pid_status); ++ /* int because get_fsuid() returns negative values in case of error */ ++ int tmp_fsuid = get_fsuid(proc_pid_status); + if (tmp_fsuid < 0) + { + error_msg_ignore_crash(pid_str, NULL, (long unsigned)uid, signal_no, +@@ -879,12 +880,12 @@ int main(int argc, char** argv) + } + + int suid_policy = dump_suid_policy(); +- if (tmp_fsuid != uid) ++ if ((uid_t)tmp_fsuid != uid) + { + /* use root for suided apps unless it's explicitly set to UNSAFE */ + fsuid = 0; + if (suid_policy == DUMP_SUID_UNSAFE) +- fsuid = tmp_fsuid; ++ fsuid = (uid_t)tmp_fsuid; + else + { + g_user_core_flags = O_EXCL; +-- +1.8.3.1 + diff --git a/SOURCES/0238-vmcore-fix-finding-partitions-by-UUID-and-LABEL.patch b/SOURCES/0238-vmcore-fix-finding-partitions-by-UUID-and-LABEL.patch new file mode 100644 index 0000000..16845b7 --- /dev/null +++ b/SOURCES/0238-vmcore-fix-finding-partitions-by-UUID-and-LABEL.patch @@ -0,0 +1,91 @@ +From 5cdaa8e6a276ad8cb79c3457badbb4f9dda5aa3e Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 13 Jun 2016 09:43:21 +0200 +Subject: [PATCH] vmcore: fix finding partitions by UUID and LABEL + +In kdump.conf fs partition can be specified by UUID or LABEL but mtab +uses only file system node path. Hence, we need to translate the ID to +its node path. + +Related: rhbz#1147053 + +Signed-off-by: Jakub Filak +--- + configure.ac | 2 ++ + src/hooks/Makefile.am | 1 + + src/hooks/abrt_harvest_vmcore.py.in | 27 +++++++++++++++++++++++++++ + 3 files changed, 30 insertions(+) + +diff --git a/configure.ac b/configure.ac +index 330dd9c..20a7f27 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -173,6 +173,8 @@ AC_ARG_ENABLE(doxygen-docs, + [enable_doxygen_docs=no] + ) + ++AC_PATH_PROG([BLKID], [BLKID], [/usr/sbin/blkid], [$PATH:/usr/sbin:/sbin]) ++ + # Doxygen Documentation + + AC_PATH_PROG(DOXYGEN, doxygen, no) +diff --git a/src/hooks/Makefile.am b/src/hooks/Makefile.am +index 9a527f4..216cfc1 100644 +--- a/src/hooks/Makefile.am ++++ b/src/hooks/Makefile.am +@@ -92,6 +92,7 @@ abrt-install-ccpp-hook: abrt-install-ccpp-hook.in + abrt-harvest-vmcore: abrt_harvest_vmcore.py.in + sed -e s,\@CONF_DIR\@,\$(CONF_DIR)\,g \ + -e s,\@DEFAULT_DUMP_LOCATION\@,$(DEFAULT_DUMP_LOCATION),g \ ++ -e s,\@BLKID\@,$(BLKID),g \ + $< >$@ + + abrt-harvest-pstoreoops: abrt-harvest-pstoreoops.in +diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in +index c6a7e6b..e71e5c9 100644 +--- a/src/hooks/abrt_harvest_vmcore.py.in ++++ b/src/hooks/abrt_harvest_vmcore.py.in +@@ -13,6 +13,7 @@ import shutil + import time + import hashlib + import augeas ++from subprocess import Popen, PIPE + + import problem + +@@ -37,6 +38,32 @@ def get_mount_point(part_id): + part_id - device node, label or uuid + """ + ++ idtypes = {"UUID=":"-U", "PARTUUID=":"-U", "LABEL=":"-L", "PARTLABEL=":"-L"} ++ ++ for typ, switch in idtypes.items(): ++ if not part_id.startswith(typ): ++ continue ++ ++ idf = part_id[len(typ):] ++ try: ++ proc = Popen(["@BLKID@", switch, idf], stdout=PIPE, stderr=PIPE) ++ out, err = proc.communicate() ++ if err: ++ sys.stderr.write("Failed 'blkid {0} {1}': {2}\n" ++ .format(switch, idf, err)) ++ sys.exit(1) ++ if not out: ++ sys.stderr.write("No results from 'blkid {0} {1}'\n" ++ .format(switch, idf)) ++ sys.exit(1) ++ ++ part_id = out.strip() ++ break ++ except OSError as ex: ++ sys.stderr.write("Cannot run 'blkid {0} {1}': {2}\n" ++ .format(switch, idf, str(ex))) ++ sys.exit(1) ++ + # look up the identifier in /etc/mtab + result = get_augeas("Fstab", "/etc/mtab").get("/files/etc/mtab/*" + "[spec=\"" + part_id + "\"]/file") +-- +1.8.3.1 + diff --git a/SOURCES/0240-vmcore-use-findmnt-to-get-mountpoint.patch b/SOURCES/0240-vmcore-use-findmnt-to-get-mountpoint.patch new file mode 100644 index 0000000..dd93690 --- /dev/null +++ b/SOURCES/0240-vmcore-use-findmnt-to-get-mountpoint.patch @@ -0,0 +1,133 @@ +From 79108d97e3b3d031c34c432634b305ce0becf716 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 16 Jun 2016 14:21:28 +0200 +Subject: [PATCH] vmcore: use findmnt to get mountpoint + +findmnt solves both problems: +* UUID=/LABEL= +* different device links + +Related: rhbz#1147053 + +Signed-off-by: Jakub Filak + +Conflicts: + src/hooks/abrt_harvest_vmcore.py.in +--- + configure.ac | 2 +- + src/hooks/Makefile.am | 2 +- + src/hooks/abrt_harvest_vmcore.py.in | 59 ++++++++++++++----------------------- + 3 files changed, 24 insertions(+), 39 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 20a7f27..02d7e0e 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -173,7 +173,7 @@ AC_ARG_ENABLE(doxygen-docs, + [enable_doxygen_docs=no] + ) + +-AC_PATH_PROG([BLKID], [BLKID], [/usr/sbin/blkid], [$PATH:/usr/sbin:/sbin]) ++AC_PATH_PROG([FINDMNT], [findmnt], [/usr/bin/findmnt], [$PATH:/usr/sbin:/sbin]) + + # Doxygen Documentation + +diff --git a/src/hooks/Makefile.am b/src/hooks/Makefile.am +index 216cfc1..650a771 100644 +--- a/src/hooks/Makefile.am ++++ b/src/hooks/Makefile.am +@@ -92,7 +92,7 @@ abrt-install-ccpp-hook: abrt-install-ccpp-hook.in + abrt-harvest-vmcore: abrt_harvest_vmcore.py.in + sed -e s,\@CONF_DIR\@,\$(CONF_DIR)\,g \ + -e s,\@DEFAULT_DUMP_LOCATION\@,$(DEFAULT_DUMP_LOCATION),g \ +- -e s,\@BLKID\@,$(BLKID),g \ ++ -e s,\@FINDMNT\@,$(FINDMNT),g \ + $< >$@ + + abrt-harvest-pstoreoops: abrt-harvest-pstoreoops.in +diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in +index e71e5c9..6b2719e 100644 +--- a/src/hooks/abrt_harvest_vmcore.py.in ++++ b/src/hooks/abrt_harvest_vmcore.py.in +@@ -18,6 +18,12 @@ from subprocess import Popen, PIPE + import problem + + ++def errx(message, code=1): ++ sys.stderr.write(message) ++ sys.stderr.write("\n") ++ sys.stderr.flush() ++ sys.exit(code) ++ + def get_augeas(module, file_path): + """ + A function for efficient configuration of Augeas. +@@ -32,49 +38,28 @@ def get_augeas(module, file_path): + + def get_mount_point(part_id): + """ +- A function used to look up a mount point in mtab using +- the provided identifier. ++ A function used to look up a mount point of the provided identifier ++ using 'findmnt' system utility. + + part_id - device node, label or uuid + """ + +- idtypes = {"UUID=":"-U", "PARTUUID=":"-U", "LABEL=":"-L", "PARTLABEL=":"-L"} +- +- for typ, switch in idtypes.items(): +- if not part_id.startswith(typ): +- continue +- +- idf = part_id[len(typ):] +- try: +- proc = Popen(["@BLKID@", switch, idf], stdout=PIPE, stderr=PIPE) +- out, err = proc.communicate() +- if err: +- sys.stderr.write("Failed 'blkid {0} {1}': {2}\n" +- .format(switch, idf, err)) +- sys.exit(1) +- if not out: +- sys.stderr.write("No results from 'blkid {0} {1}'\n" +- .format(switch, idf)) +- sys.exit(1) +- +- part_id = out.strip() +- break +- except OSError as ex: +- sys.stderr.write("Cannot run 'blkid {0} {1}': {2}\n" +- .format(switch, idf, str(ex))) +- sys.exit(1) ++ try: ++ proc = Popen(["@FINDMNT@", "--noheadings", "--first-only", "--raw", ++ "--evaluate", "--output", "TARGET", part_id], ++ stdout=PIPE, stderr=PIPE) ++ out, err = proc.communicate() ++ if err: ++ errx("Error finding mountpoint of '{0}': {1}" ++ .format(devpath, err)) ++ ++ result = out.strip() ++ if proc.returncode != 0 or not result: ++ errx("Cannot find mountpoint of '{0}'".format(part_id)) + +- # look up the identifier in /etc/mtab +- result = get_augeas("Fstab", "/etc/mtab").get("/files/etc/mtab/*" +- "[spec=\"" + part_id + "\"]/file") +- if result: + return result +- else: +- # identifier not in the table +- sys.stderr.write("Error: Cannot access partition '" + part_id + +- "', mount point not found in /etc/mtab!\n") +- sys.exit(1) +- ++ except OSError as ex: ++ errx("Cannot run 'findmnt': {1}".format(str(ex))) + + def parse_kdump(): + """ +-- +1.8.3.1 + diff --git a/SOURCES/0245-daemon-trigger-dump-location-cleanup-after-detection.patch b/SOURCES/0245-daemon-trigger-dump-location-cleanup-after-detection.patch new file mode 100644 index 0000000..67ed58e --- /dev/null +++ b/SOURCES/0245-daemon-trigger-dump-location-cleanup-after-detection.patch @@ -0,0 +1,603 @@ +From b963494f41fe75463a14c127e9ded5760cb09cec Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 19 Jul 2016 20:34:02 +0200 +Subject: [PATCH] daemon: trigger dump location cleanup after detection + +This commit restores the old behaviour where the cleanup algorithm was +started right after new dump directory is created. This prevents piling +up of new dump directories which could lead to consumption of too much +disk space. The piling up of dump directories is currently prevented by +the plugins removing old dump directories on their own, which is in fact +problematic because the plugins don't know about each other and that causes +race conditions. + +The post-create EVENT execution was moved from abrtd to abrt-server in +commit b6640620e27a029b3f1f8dcec22fb4c95e48db2a in order to replace the +inotify watch in abrtd with the /creation_notification method of +abrt-server. + +What are the cases we must deal with +----------------------------------- + +1) an old directory is to be removed +2) one of the queued directory is to be removed +3) currently processing directory is to be removed + +The case 1) is not problematic at all (except removing directories that +are currently being handled by users). + +The case 2) would cause an error message produced by abrt-handle-event +waked up from waiting for post-create.lock - the error message could be +avoided by ignoring the error in case of running post-create EVENT. + +The case 3) is extremely problematic and must be avoid in all situation. +There is no other way how to avoid this case without a central +synchronization algorithm. One could claim that we should lock the +currently processed dump directory and don't removed the locked ones but +libreport's locking algorithm doesn't support recursive locking between +processes - however, the recursive inter process locking would get rid +of the case 1). Or abrt-handle-event could write the handled directory +name to a new file but it is not clear where the file would be consumed +as there is no authority doing the cleanup. And, what is the worst, +communication trough files will lead to another type race conditions. + +What this patch introduces +-------------------------- + +This patch adds communication between abrtd and its child processes +abrt-server. When abrt-server is asked to run post-create EVENT, it +sends the "NEW_PROBLEM_DETECTED: $DUMP_DIR" message to abrtd over +STDERR. STDERR is used because STDOUT is occupied by the socket (we +might want to make it less obfuscated in future and use a FIFO +or something else, but now I am happy with using STDERR). abrtd +then pushes the abrt-server process to a queue used to track abrt-server +processes wanting to run post-create EVENT. When a process from the +queue is to be executed abrtd sends it SIGUSR1 signal. If a dump +directory of any of queued process was removed, abrtd sends the relevant +abrt-server process SIGINT signal. + +Resolves #1132459 + +Signed-off-by: Jakub Filak + +Conflicts: + src/daemon/abrt-server.c + src/daemon/abrtd.c +--- + src/daemon/abrt-server.c | 129 ++++++++++++++++++++ + src/daemon/abrtd.c | 303 +++++++++++++++++++++++++++++++++++++++++++++-- + 2 files changed, 420 insertions(+), 12 deletions(-) + +diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c +index afd9fd3..a0faef6 100644 +--- a/src/daemon/abrt-server.c ++++ b/src/daemon/abrt-server.c +@@ -16,6 +16,7 @@ + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + #include "problem_api.h" ++#include "abrt_glib.h" + #include "libabrt.h" + + /* Maximal length of backtrace. */ +@@ -71,10 +72,75 @@ MANDATORY ITEMS: + You can send more messages using the same KEY=value format. + */ + ++static int g_signal_pipe[2]; ++ ++struct waiting_context ++{ ++ GMainLoop *main_loop; ++ const char *dirname; ++ int retcode; ++ enum abrt_daemon_reply ++ { ++ ABRT_CONTINUE, ++ ABRT_INTERRUPT, ++ } reply; ++}; ++ + static unsigned total_bytes_read = 0; + + static uid_t client_uid = (uid_t)-1L; + ++static void ++handle_signal(int signo) ++{ ++ int save_errno = errno; ++ uint8_t sig_caught = signo; ++ if (write(g_signal_pipe[1], &sig_caught, 1)) ++ /* we ignore result, if () shuts up stupid compiler */; ++ errno = save_errno; ++} ++ ++static gboolean ++handle_signal_pipe_cb(GIOChannel *gio, GIOCondition condition, gpointer user_data) ++{ ++ gsize len = 0; ++ uint8_t signals[2]; ++ ++ for (;;) ++ { ++ GError *error = NULL; ++ GIOStatus stat = g_io_channel_read_chars(gio, (void *)signals, sizeof(signals), &len, NULL); ++ if (stat == G_IO_STATUS_ERROR) ++ error_msg_and_die(_("Can't read from gio channel: '%s'"), error ? error->message : ""); ++ if (stat == G_IO_STATUS_EOF) ++ return FALSE; /* Remove this GLib source */ ++ if (stat == G_IO_STATUS_AGAIN) ++ break; ++ ++ /* G_IO_STATUS_NORMAL */ ++ for (unsigned signo = 0; signo < len; ++signo) ++ { ++ /* we did receive a signal */ ++ struct waiting_context *context = (struct waiting_context *)user_data; ++ log_debug("Got signal %d through signal pipe", signals[signo]); ++ switch (signals[signo]) ++ { ++ case SIGUSR1: context->reply = ABRT_CONTINUE; break; ++ case SIGINT: context->reply = ABRT_INTERRUPT; break; ++ default: ++ { ++ error_msg("Bug - aborting - unsupported signal: %d", signals[signo]); ++ abort(); ++ } ++ } ++ ++ g_main_loop_quit(context->main_loop); ++ return FALSE; /* remove this event */ ++ } ++ } ++ ++ return TRUE; /* "please don't remove this event" */ ++} + + /* Remove dump dir */ + static int delete_path(const char *dump_dir_name) +@@ -153,6 +219,24 @@ static pid_t spawn_event_handler_child(const char *dump_dir_name, const char *ev + return child; + } + ++static gboolean emit_new_problem_signal(gpointer data) ++{ ++ struct waiting_context *context = (struct waiting_context *)data; ++ ++ const size_t wrote = fprintf(stderr, "NEW_PROBLEM_DETECTED: %s\n", context->dirname); ++ fflush(stderr); ++ ++ if (wrote <= 0) ++ { ++ error_msg("Failed to communicate with the daemon"); ++ context->retcode = 503; ++ g_main_loop_quit(context->main_loop); ++ } ++ ++ log_notice("Emitted new problem signal, waiting for SIGUSR1|SIGINT"); ++ return FALSE; ++} ++ + static int run_post_create(const char *dirname) + { + /* If doesn't start with "g_settings_dump_location/"... */ +@@ -179,6 +263,51 @@ static int run_post_create(const char *dirname) + } + } + ++ /* ++ * The post-create event cannot be run concurrently for more problem ++ * directories. The problem is in searching for duplicates process ++ * in case when two concurrently processed directories are duplicates ++ * of each other. Both of the directories are marked as duplicates ++ * of each other and are deleted. ++ */ ++ log_debug("Creating glib main loop"); ++ struct waiting_context context = {0}; ++ context.main_loop = g_main_loop_new(NULL, FALSE); ++ context.dirname = dirname; ++ ++ log_debug("Setting up a signal handler"); ++ /* Set up signal pipe */ ++ xpipe(g_signal_pipe); ++ close_on_exec_on(g_signal_pipe[0]); ++ close_on_exec_on(g_signal_pipe[1]); ++ ndelay_on(g_signal_pipe[0]); ++ ndelay_on(g_signal_pipe[1]); ++ signal(SIGUSR1, handle_signal); ++ signal(SIGINT, handle_signal); ++ GIOChannel *channel_signal = abrt_gio_channel_unix_new(g_signal_pipe[0]); ++ g_io_add_watch(channel_signal, G_IO_IN | G_IO_PRI, handle_signal_pipe_cb, &context); ++ ++ g_idle_add(emit_new_problem_signal, &context); ++ ++ g_main_loop_run(context.main_loop); ++ ++ g_main_loop_unref(context.main_loop); ++ g_io_channel_unref(channel_signal); ++ close(g_signal_pipe[1]); ++ close(g_signal_pipe[0]); ++ ++ log_notice("Waiting finished"); ++ ++ if (context.retcode != 0) ++ return context.retcode; ++ ++ if (context.reply != ABRT_CONTINUE) ++ /* The only reason for the interruption is removed problem directory */ ++ return 413; ++ /* ++ * The post-create event synchronization done. ++ */ ++ + int child_stdout_fd; + int child_pid = spawn_event_handler_child(dirname, "post-create", &child_stdout_fd); + +diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c +index b79e940..ff0565c 100644 +--- a/src/daemon/abrtd.c ++++ b/src/daemon/abrtd.c +@@ -55,9 +55,42 @@ static int s_signal_pipe_write = -1; + static unsigned s_timeout; + static bool s_exiting; + ++GList *s_processes; ++GList *s_dir_queue; ++ + static GIOChannel *channel_socket = NULL; + static guint channel_id_socket = 0; +-static int child_count = 0; ++ ++struct abrt_server_proc ++{ ++ pid_t pid; ++ int fdout; ++ char *dirname; ++ GIOChannel *channel; ++ guint watch_id; ++ enum { ++ AS_UKNOWN, ++ AS_POST_CREATE, ++ } type; ++}; ++ ++/* Returns 0 if proc's pid equals the the given pid */ ++static gint abrt_server_compare_pid(struct abrt_server_proc *proc, pid_t *pid) ++{ ++ return proc->pid != *pid; ++} ++ ++/* Returns 0 if proc's fdout equals the the given fdout */ ++static gint abrt_server_compare_fdout(struct abrt_server_proc *proc, int *fdout) ++{ ++ return proc->fdout != *fdout; ++} ++ ++/* Returns 0 if proc's dirname equals the the given dirname */ ++static gint abrt_server_compare_dirname(struct abrt_server_proc *proc, const char *dirname) ++{ ++ return g_strcmp0(proc->dirname, dirname); ++} + + /* Helpers */ + static guint add_watch_or_die(GIOChannel *channel, unsigned condition, GIOFunc func) +@@ -69,9 +102,212 @@ static guint add_watch_or_die(GIOChannel *channel, unsigned condition, GIOFunc f + return r; + } + +-static void increment_child_count(void) ++static void stop_abrt_server(struct abrt_server_proc *proc) ++{ ++ kill(proc->pid, SIGINT); ++} ++ ++static void dispose_abrt_server(struct abrt_server_proc *proc) ++{ ++ close(proc->fdout); ++ free(proc->dirname); ++ ++ if (proc->watch_id > 0) ++ g_source_remove(proc->watch_id); ++ ++ if (proc->channel != NULL) ++ g_io_channel_unref(proc->channel); ++} ++ ++static void notify_next_post_create_process(struct abrt_server_proc *finished) ++{ ++ if (finished != NULL) ++ s_dir_queue = g_list_remove(s_dir_queue, finished); ++ ++ while (s_dir_queue != NULL) ++ { ++ struct abrt_server_proc *n = (struct abrt_server_proc *)s_dir_queue->data; ++ if (n->type == AS_POST_CREATE) ++ break; ++ ++ if (kill(n->pid, SIGUSR1) >= 0) ++ { ++ n->type = AS_POST_CREATE; ++ break; ++ } ++ ++ /* This could happen only if the notified process disappeared - crashed? ++ */ ++ perror_msg("Failed to send SIGUSR1 to %d", n->pid); ++ log_warning("Directory '%s' will not be processed", n->dirname); ++ ++ /* Remove the problematic process from the post-crate directory queue ++ * and go to try to notify another process. ++ */ ++ s_dir_queue = g_list_delete_link(s_dir_queue, s_dir_queue); ++ } ++} ++ ++/* Queueing the process will also lead to cleaning up the dump location. ++ */ ++static void queue_post_craete_process(struct abrt_server_proc *proc) ++{ ++ load_abrt_conf(); ++ struct abrt_server_proc *running = s_dir_queue == NULL ? NULL ++ : (struct abrt_server_proc *)s_dir_queue->data; ++ if (g_settings_nMaxCrashReportsSize == 0) ++ goto consider_processing; ++ ++ const char *full_path_ignored = running != NULL ? running->dirname ++ : proc->dirname; ++ const char *ignored = strrchr(full_path_ignored, '/'); ++ if (NULL == ignored) ++ /* Paranoia, this should not happen. */ ++ ignored = full_path_ignored; ++ else ++ /* Move behind '/' */ ++ ++ignored; ++ ++ char *worst_dir = NULL; ++ const double max_size = 1024 * 1024 * g_settings_nMaxCrashReportsSize; ++ while (get_dirsize_find_largest_dir(g_settings_dump_location, &worst_dir, ignored) >= max_size ++ && worst_dir) ++ { ++ const char *kind = "old"; ++ char *deleted = concat_path_file(g_settings_dump_location, worst_dir); ++ ++ GList *proc_of_deleted_item = NULL; ++ if (proc != NULL && strcmp(deleted, proc->dirname) == 0) ++ { ++ kind = "new"; ++ stop_abrt_server(proc); ++ proc = NULL; ++ } ++ else if ((proc_of_deleted_item = g_list_find_custom(s_dir_queue, deleted, (GCompareFunc)abrt_server_compare_dirname))) ++ { ++ kind = "unprocessed"; ++ struct abrt_server_proc *removed_proc = (struct abrt_server_proc *)proc_of_deleted_item->data; ++ s_dir_queue = g_list_delete_link(s_dir_queue, proc_of_deleted_item); ++ stop_abrt_server(removed_proc); ++ } ++ ++ log("Size of '%s' >= %u MB (MaxCrashReportsSize), deleting %s directory '%s'", ++ g_settings_dump_location, g_settings_nMaxCrashReportsSize, ++ kind, worst_dir); ++ ++ free(worst_dir); ++ worst_dir = NULL; ++ ++ struct dump_dir *dd = dd_opendir(deleted, DD_FAIL_QUIETLY_ENOENT); ++ if (dd != NULL) ++ dd_delete(dd); ++ ++ free(deleted); ++ } ++ ++consider_processing: ++ /* If the process survived cleaning up the dump location, append it to the ++ * post-create queue. ++ */ ++ if (proc != NULL) ++ s_dir_queue = g_list_append(s_dir_queue, proc); ++ ++ /* If there were no running post-crate process before we added the ++ * currently handled process to the post-create queue, start processing of ++ * the currently handled process. ++ */ ++ if (running == NULL) ++ notify_next_post_create_process(NULL/*finished*/); ++} ++ ++static gboolean abrt_server_output_cb(GIOChannel *channel, GIOCondition condition, gpointer user_data) ++{ ++ int fdout = g_io_channel_unix_get_fd(channel); ++ GList *item = g_list_find_custom(s_processes, &fdout, (GCompareFunc)abrt_server_compare_fdout); ++ if (item == NULL) ++ { ++ log_warning("Closing a pipe fd (%d) without a process assigned", fdout); ++ close(fdout); ++ return FALSE; ++ } ++ ++ struct abrt_server_proc *proc = (struct abrt_server_proc *)item->data; ++ ++ if (condition & G_IO_HUP) ++ { ++ log_debug("abrt-server(%d) closed its pipe", proc->pid); ++ proc->watch_id = 0; ++ return FALSE; ++ } ++ ++ for (;;) ++ { ++ gchar *line; ++ gsize len = 0; ++ gsize pos = 0; ++ GError *error = NULL; ++ ++ /* We use buffered channel so we do not need to read from the channel in a ++ * loop */ ++ GIOStatus stat = g_io_channel_read_line(channel, &line, &len, &pos, &error); ++ if (stat == G_IO_STATUS_ERROR) ++ error_msg_and_die("Can't read from pipe of abrt-server(%d): '%s'", proc->pid, error ? error->message : ""); ++ if (stat == G_IO_STATUS_EOF) ++ { ++ log_debug("abrt-server(%d)'s output read till end", proc->pid); ++ proc->watch_id = 0; ++ return FALSE; /* Remove this event */ ++ } ++ if (stat == G_IO_STATUS_AGAIN) ++ break; ++ ++ /* G_IO_STATUS_NORMAL) */ ++ line[pos] = '\0'; ++ if (g_str_has_prefix(line, "NEW_PROBLEM_DETECTED: ")) ++ { ++ if (proc->dirname != NULL) ++ { ++ log_warning("abrt-server(%d): already handling: %s", proc->pid, proc->dirname); ++ free(proc->dirname); ++ /* Because process can be only once in the dir queue */ ++ s_dir_queue = g_list_remove(s_dir_queue, proc); ++ } ++ ++ proc->dirname = xstrdup(line + strlen("NEW_PROBLEM_DETECTED: ")); ++ log_notice("abrt-server(%d): handling new problem: %s", proc->pid, proc->dirname); ++ queue_post_craete_process(proc); ++ } ++ else ++ log("abrt-server(%d): not recognized message: '%s'", proc->pid, line); ++ ++ g_free(line); ++ } ++ ++ return TRUE; /* Keep this event */ ++} ++ ++static void add_abrt_server_proc(const pid_t pid, int fdout) + { +- if (++child_count >= MAX_CLIENT_COUNT) ++ struct abrt_server_proc *proc = xmalloc(sizeof(*proc)); ++ proc->pid = pid; ++ proc->fdout = fdout; ++ proc->dirname = NULL; ++ proc->type = AS_UKNOWN; ++ proc->channel = abrt_gio_channel_unix_new(proc->fdout); ++ proc->watch_id = g_io_add_watch(proc->channel, ++ G_IO_IN | G_IO_HUP, ++ abrt_server_output_cb, ++ proc); ++ ++ GError *error = NULL; ++ g_io_channel_set_flags(proc->channel, G_IO_FLAG_NONBLOCK, &error); ++ if (error != NULL) ++ error_msg_and_die("g_io_channel_set_flags failed: '%s'", error->message); ++ ++ g_io_channel_set_buffered(proc->channel, TRUE); ++ ++ s_processes = g_list_append(s_processes, proc); ++ if (g_list_length(s_processes) >= MAX_CLIENT_COUNT) + { + error_msg("Too many clients, refusing connections to '%s'", SOCKET_FILE); + /* To avoid infinite loop caused by the descriptor in "ready" state, +@@ -84,11 +320,29 @@ static void increment_child_count(void) + + static gboolean server_socket_cb(GIOChannel *source, GIOCondition condition, gpointer ptr_unused); + +-static void decrement_child_count(void) ++static void remove_abrt_server_proc(pid_t pid, int status) + { +- if (child_count) +- child_count--; +- if (child_count < MAX_CLIENT_COUNT && !channel_id_socket) ++ GList *item = g_list_find_custom(s_processes, &pid, (GCompareFunc)abrt_server_compare_pid); ++ if (item == NULL) ++ return; ++ ++ struct abrt_server_proc *proc = (struct abrt_server_proc *)item->data; ++ item->data = NULL; ++ s_processes = g_list_delete_link(s_processes, item); ++ ++ if (proc->type == AS_POST_CREATE) ++ notify_next_post_create_process(proc); ++ else ++ { /* Make sure out-of-order exited abrt-server post-create processes do ++ * not stay in the post-create queue. ++ */ ++ s_dir_queue = g_list_remove(s_dir_queue, proc); ++ } ++ ++ dispose_abrt_server(proc); ++ free(proc); ++ ++ if (g_list_length(s_processes) < MAX_CLIENT_COUNT && !channel_id_socket) + { + log_info("Accepting connections on '%s'", SOCKET_FILE); + channel_id_socket = add_watch_or_die(channel_socket, G_IO_IN | G_IO_PRI | G_IO_HUP, server_socket_cb); +@@ -107,17 +361,27 @@ static gboolean server_socket_cb(GIOChannel *source, GIOCondition condition, gpo + + log_notice("New client connected"); + fflush(NULL); /* paranoia */ ++ ++ int pipefd[2]; ++ xpipe(pipefd); ++ + pid_t pid = fork(); + if (pid < 0) + { + perror_msg("fork"); ++ close(pipefd[0]); ++ close(pipefd[1]); + close(socket); + return TRUE; + } + if (pid == 0) /* child */ + { +- xmove_fd(socket, 0); +- xdup2(0, 1); ++ xdup2(socket, STDIN_FILENO); ++ xdup2(socket, STDOUT_FILENO); ++ close(socket); ++ ++ close(pipefd[0]); ++ xmove_fd(pipefd[1], STDERR_FILENO); + + char *argv[3]; /* abrt-server [-s] NULL */ + char **pp = argv; +@@ -129,9 +393,12 @@ static gboolean server_socket_cb(GIOChannel *source, GIOCondition condition, gpo + execvp(argv[0], argv); + perror_msg_and_die("Can't execute '%s'", argv[0]); + } ++ + /* parent */ +- increment_child_count(); + close(socket); ++ close(pipefd[1]); ++ add_abrt_server_proc(pid, pipefd[0]); ++ + return TRUE; + } + +@@ -149,9 +416,21 @@ static gboolean handle_signal_cb(GIOChannel *gio, GIOCondition condition, gpoint + s_exiting = 1; + else + { +- while (safe_waitpid(-1, NULL, WNOHANG) > 0) ++ pid_t cpid; ++ int status; ++ while ((cpid = safe_waitpid(-1, &status, WNOHANG)) > 0) + { +- decrement_child_count(); ++ if (WIFSIGNALED(status)) ++ log_debug("abrt-server(%d) signaled with %d", cpid, WTERMSIG(status)); ++ else if (WIFEXITED(status)) ++ log_debug("abrt-server(%d) exited with %d", cpid, WEXITSTATUS(status)); ++ else ++ { ++ log_debug("abrt-server(%d) is being debugged", cpid); ++ continue; ++ } ++ ++ remove_abrt_server_proc(cpid, status); + } + } + } +-- +1.8.3.1 + diff --git a/SOURCES/0246-handle-event-stop-creating-post-create-lock.patch b/SOURCES/0246-handle-event-stop-creating-post-create-lock.patch new file mode 100644 index 0000000..d490806 --- /dev/null +++ b/SOURCES/0246-handle-event-stop-creating-post-create-lock.patch @@ -0,0 +1,98 @@ +From 44cb33f417d62210759c1730ca13bb03165c47ad Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 19 Jul 2016 20:33:06 +0200 +Subject: [PATCH] handle-event: stop creating post-create lock + +Since the post-create synchronization has been moved to abrtd and +abrt-server, there is no need to crate the post-create.lock file. + +Resolves #1132459 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-handle-event.c | 58 ------------------------------------------ + 1 file changed, 58 deletions(-) + +diff --git a/src/daemon/abrt-handle-event.c b/src/daemon/abrt-handle-event.c +index 8870901..caed577 100644 +--- a/src/daemon/abrt-handle-event.c ++++ b/src/daemon/abrt-handle-event.c +@@ -318,51 +318,6 @@ end: + return retval; + } + +-static void create_lockfile(void) +-{ +- char pid_str[sizeof(long)*3 + 4]; +- sprintf(pid_str, "%lu", (long)getpid()); +- char *lock_filename = concat_path_file(g_settings_dump_location, "post-create.lock"); +- +- /* Someone else's post-create may take a long-ish time to finish. +- * For example, I had a failing email sending there, it took +- * a minute to time out. +- * That's why timeout is large (100 seconds): +- */ +- int count = 100; +- while (1) +- { +- /* Return values: +- * -1: error (in this case, errno is 0 if error message is already logged) +- * 0: failed to lock (someone else has it locked) +- * 1: success +- */ +- int r = create_symlink_lockfile(lock_filename, pid_str); +- if (r > 0) +- break; +- if (r < 0) +- error_msg_and_die("Can't create '%s'", lock_filename); +- if (--count == 0) +- { +- /* Someone else's post-create process is alive but stuck. +- * Don't wait forever. +- */ +- error_msg("Stale lock '%s', removing it", lock_filename); +- xunlink(lock_filename); +- break; +- } +- sleep(1); +- } +- free(lock_filename); +-} +- +-static void delete_lockfile(void) +-{ +- char *lock_filename = concat_path_file(g_settings_dump_location, "post-create.lock"); +- xunlink(lock_filename); +- free(lock_filename); +-} +- + static char *do_log(char *log_line, void *param) + { + /* We pipe output of events to our log. +@@ -428,23 +383,10 @@ int main(int argc, char **argv) + make_run_event_state_forwarding(run_state); + run_state->logging_callback = do_log; + if (post_create) +- { + run_state->post_run_callback = is_crash_a_dup; +- /* +- * The post-create event cannot be run concurrently for more problem +- * directories. The problem is in searching for duplicates process +- * in case when two concurrently processed directories are duplicates +- * of each other. Both of the directories are marked as duplicates +- * of each other and are deleted. +- */ +- create_lockfile(); +- } + + int r = run_event_on_dir_name(run_state, dump_dir_name, event_name); + +- if (post_create) +- delete_lockfile(); +- + const bool no_action_for_event = (r == 0 && run_state->children_count == 0); + + free_run_event_state(run_state); +-- +1.8.3.1 + diff --git a/SOURCES/0250-lib-check_recent_crash_file-do-not-produce-error_msg.patch b/SOURCES/0250-lib-check_recent_crash_file-do-not-produce-error_msg.patch new file mode 100644 index 0000000..65238d4 --- /dev/null +++ b/SOURCES/0250-lib-check_recent_crash_file-do-not-produce-error_msg.patch @@ -0,0 +1,47 @@ +From c6e54a5eaacab21a56c41c4b138e800f6aa15faf Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 8 Dec 2015 16:33:31 +0100 +Subject: [PATCH] lib: check_recent_crash_file do not produce error_msg + +Regarding to the desire to unite log messages in abrt-hook-ccpp, +we need to erase loging from check_recent_crash_file() function and let the +loging on caller of the function. + +Related to rhbz#1337186 + +Signed-off-by: Matej Habrnal +--- + src/daemon/abrt-server.c | 3 +++ + src/lib/check_recent_crash_file.c | 1 - + 2 files changed, 3 insertions(+), 1 deletion(-) + +diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c +index a0faef6..9a1361b 100644 +--- a/src/daemon/abrt-server.c ++++ b/src/daemon/abrt-server.c +@@ -885,7 +885,10 @@ static int perform_http_xact(void) + int repeating_crash = check_recent_crash_file(last_file, executable); + free(last_file); + if (repeating_crash) /* Only pretend that we saved it */ ++ { ++ error_msg("Not saving repeating crash in '%s'", executable); + goto out; /* ret is 0: "success" */ ++ } + } + + #if 0 +diff --git a/src/lib/check_recent_crash_file.c b/src/lib/check_recent_crash_file.c +index 63db260..2df6aff 100644 +--- a/src/lib/check_recent_crash_file.c ++++ b/src/lib/check_recent_crash_file.c +@@ -44,7 +44,6 @@ int check_recent_crash_file(const char *filename, const char *executable) + buf[sz] = '\0'; + if (strcmp(executable, buf) == 0) + { +- error_msg("Not saving repeating crash in '%s'", executable); + close(fd); + return 1; + } +-- +1.8.3.1 + diff --git a/SOURCES/0254-daemon-send-base-names-from-abrt-server-to-abrtd.patch b/SOURCES/0254-daemon-send-base-names-from-abrt-server-to-abrtd.patch new file mode 100644 index 0000000..0104cc5 --- /dev/null +++ b/SOURCES/0254-daemon-send-base-names-from-abrt-server-to-abrtd.patch @@ -0,0 +1,73 @@ +From 4bba01e5bc60b4827a007f7d401b1e34f0944b70 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Fri, 26 Aug 2016 12:22:24 +0200 +Subject: [PATCH] daemon: send base names from abrt-server to abrtd + +The /creation_notification method accepts arbitrary file system path and +it might cause abrtd some troubles if the path is not in canonical form. + +ABRT enforces the notified paths to be directories in /var/spool/abrt +but ignores number of slash occurrences as it is not security relevant. + +Switching to base names will assure that the problems associated with file +system path forms will be gone and no new problems will be introduced. + +The other option is to use realpath() but this function resolves +symbolic links and if /var/spool is a symbolic link, we will be in +trouble. + +Related: rhbz#1132459 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-server.c | 2 +- + src/daemon/abrtd.c | 6 +++--- + 2 files changed, 4 insertions(+), 4 deletions(-) + +diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c +index 9a1361b..76186db 100644 +--- a/src/daemon/abrt-server.c ++++ b/src/daemon/abrt-server.c +@@ -273,7 +273,7 @@ static int run_post_create(const char *dirname) + log_debug("Creating glib main loop"); + struct waiting_context context = {0}; + context.main_loop = g_main_loop_new(NULL, FALSE); +- context.dirname = dirname; ++ context.dirname = strrchr(dirname, '/') + 1; + + log_debug("Setting up a signal handler"); + /* Set up signal pipe */ +diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c +index ff0565c..fc4f01e 100644 +--- a/src/daemon/abrtd.c ++++ b/src/daemon/abrtd.c +@@ -174,16 +174,15 @@ static void queue_post_craete_process(struct abrt_server_proc *proc) + && worst_dir) + { + const char *kind = "old"; +- char *deleted = concat_path_file(g_settings_dump_location, worst_dir); + + GList *proc_of_deleted_item = NULL; +- if (proc != NULL && strcmp(deleted, proc->dirname) == 0) ++ if (proc != NULL && strcmp(worst_dir, proc->dirname) == 0) + { + kind = "new"; + stop_abrt_server(proc); + proc = NULL; + } +- else if ((proc_of_deleted_item = g_list_find_custom(s_dir_queue, deleted, (GCompareFunc)abrt_server_compare_dirname))) ++ else if ((proc_of_deleted_item = g_list_find_custom(s_dir_queue, worst_dir, (GCompareFunc)abrt_server_compare_dirname))) + { + kind = "unprocessed"; + struct abrt_server_proc *removed_proc = (struct abrt_server_proc *)proc_of_deleted_item->data; +@@ -195,6 +194,7 @@ static void queue_post_craete_process(struct abrt_server_proc *proc) + g_settings_dump_location, g_settings_nMaxCrashReportsSize, + kind, worst_dir); + ++ char *deleted = concat_path_file(g_settings_dump_location, worst_dir); + free(worst_dir); + worst_dir = NULL; + +-- +1.8.3.1 + diff --git a/SOURCES/0256-Translation-updates.patch b/SOURCES/0256-Translation-updates.patch new file mode 100644 index 0000000..175a7c2 --- /dev/null +++ b/SOURCES/0256-Translation-updates.patch @@ -0,0 +1,3945 @@ +From 879a02adb6a5887bed134545e7db9b1d00fa7836 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 1 Sep 2016 14:49:24 +0200 +Subject: [PATCH] Translation updates + +Resolves #1304240 + +Signed-off-by: Matej Habrnal +--- + po/de.po | 124 +++++++++++++++++++-------------------- + po/es.po | 188 ++++++++++++++++++++++++++++++------------------------------ + po/fr.po | 129 ++++++++++++++++++++--------------------- + po/it.po | 124 +++++++++++++++++++-------------------- + po/ja.po | 124 +++++++++++++++++++-------------------- + po/ko.po | 124 +++++++++++++++++++-------------------- + po/pt_BR.po | 134 +++++++++++++++++++++---------------------- + po/ru.po | 124 +++++++++++++++++++-------------------- + po/zh_CN.po | 131 +++++++++++++++++++++--------------------- + po/zh_TW.po | 126 ++++++++++++++++++++-------------------- + 10 files changed, 664 insertions(+), 664 deletions(-) + +diff --git a/po/de.po b/po/de.po +index 455b7b2..ea61f95 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -19,7 +19,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-07-14 15:37+0200\n" ++"POT-Creation-Date: 2016-06-29 15:31+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -29,7 +29,7 @@ msgstr "" + "language/de/)\n" + "Language: de\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.6.2\n" ++"X-Generator: Zanata 3.9.5\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -363,7 +363,7 @@ msgstr "Über" + msgid "Quit" + msgstr "Beenden" + +-#: ../src/daemon/abrt-action-save-package-data.c:378 ++#: ../src/daemon/abrt-action-save-package-data.c:400 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -373,9 +373,9 @@ msgstr "" + "\n" + "Paketdatenbank durchsuchen und Paket- und Komponentennamen speichern" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:412 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -384,12 +384,12 @@ msgstr "" + msgid "Problem directory" + msgstr "Fehler-Verzeichnis" + +-#: ../src/daemon/abrt-action-save-package-data.c:391 ++#: ../src/daemon/abrt-action-save-package-data.c:413 + msgid "Configuration file" + msgstr "Konfigurationsdatei" + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 + msgid "& [options]" + msgstr "& [options]" + +@@ -403,72 +403,72 @@ msgstr "NUM als Client-UID benutzen" + msgid "Log to syslog" + msgstr "In Systemprotokoll speichern" + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 + msgid "Add program names to log" + msgstr "Anwendungsnamen protokollieren" + +-#: ../src/dbus/abrt-dbus.c:132 ++#: ../src/dbus/abrt-dbus.c:131 + msgid "Unknown error" + msgstr "Unbekannter Fehler" + +-#: ../src/dbus/abrt-dbus.c:221 ++#: ../src/dbus/abrt-dbus.c:220 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "»%s« ist kein gültiges Problem-Verzeichnis" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:255 + #, c-format + msgid "'%s' element can't be modified" + msgstr "Element »%s« kann nicht geändert werden" + +-#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 +-#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 +-#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:284 ../src/dbus/abrt-dbus.c:497 ++#: ../src/dbus/abrt-dbus.c:559 ../src/dbus/abrt-dbus.c:624 ++#: ../src/dbus/abrt-dbus.c:814 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Nicht erlaubt" + +-#: ../src/dbus/abrt-dbus.c:298 ++#: ../src/dbus/abrt-dbus.c:297 + msgid "Can't access the problem for modification" + msgstr "Der Fehlerbericht kann nicht für die Bearbeitung geöffnet werden" + +-#: ../src/dbus/abrt-dbus.c:514 ++#: ../src/dbus/abrt-dbus.c:513 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Ordnerrechte konnten nicht angepasst werden. Für detaillierte Hinweise die " + "System-Logdateien überprüfen." + + # translation auto-copied from project abrt, version master, document abrt, author Roman Spirgi +-#: ../src/dbus/abrt-dbus.c:635 ++#: ../src/dbus/abrt-dbus.c:634 + msgid "Can't access the problem for reading" + msgstr "Fehlerbericht kann nicht mit Lesezugriff geöffnet werden" + +-#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 +-#: ../src/dbus/abrt-dbus.c:911 ++#: ../src/dbus/abrt-dbus.c:689 ../src/dbus/abrt-dbus.c:754 ++#: ../src/dbus/abrt-dbus.c:910 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "»%s« ist kein gültiger Name für das Element" + +-#: ../src/dbus/abrt-dbus.c:711 ++#: ../src/dbus/abrt-dbus.c:710 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Größe von '%s' kann nicht bestimmt werden" + +-#: ../src/dbus/abrt-dbus.c:726 ++#: ../src/dbus/abrt-dbus.c:725 + msgid "No problem space left" + msgstr "Kein weiterer Speicherplatz für die Fehlerbeschreibung vorhanden" + +-#: ../src/dbus/abrt-dbus.c:776 ++#: ../src/dbus/abrt-dbus.c:775 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Element »%s« kann nicht vo Fehlerverzeichnis »%s« entfernt werden" + +-#: ../src/dbus/abrt-dbus.c:803 ++#: ../src/dbus/abrt-dbus.c:802 + msgid "Can't access the problem" + msgstr "Auf Fehlerbericht kann nicht zugegriffen werden" + +-#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:986 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -477,16 +477,16 @@ msgstr "" + "Der Name »%s« ist verloren gegangen. Bitte stellen Sie sicher, dass kein " + "anderer Dienst unter dem gleichen Namen läuft.\n" + +-#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:480 + msgid "Exit after NUM seconds of inactivity" + msgstr "Nach NUM Sekunden Inaktivität beenden" + +-#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1031 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Die Anwendung muss mit Root-Rechten ausgeführt werden." + +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:432 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -501,11 +501,11 @@ msgstr "" + "Entwicklern helfen wollen, dieses Problem zu lösen, kontaktieren Sie die " + "Entwickler bitte direkt." + +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:478 + msgid "Do not daemonize" + msgstr "Nicht als Hintergrunddienst ausführen" + +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:479 + msgid "Log to syslog even with -d" + msgstr "Auch mit -d im Systemprotokoll speichern" + +@@ -561,71 +561,71 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "Maximale Cache-Größe in MB. Standard ist " + + #: ../src/daemon/abrt-auto-reporting.c:200 +-#: ../src/daemon/abrt-auto-reporting.c:208 ++#: ../src/daemon/abrt-auto-reporting.c:213 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:235 ++#: ../src/daemon/abrt-auto-reporting.c:240 + msgid "Turns the authentication off" + msgstr "Deaktiviert die Authentifizierung" + +-#: ../src/daemon/abrt-auto-reporting.c:236 ++#: ../src/daemon/abrt-auto-reporting.c:241 + msgid "Red Hat Support user name" + msgstr "Red Hat Support Benutzername" + +-#: ../src/daemon/abrt-auto-reporting.c:237 ++#: ../src/daemon/abrt-auto-reporting.c:242 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Red Hat Support Passwort; falls nicht angegeben, wird zur Eingabe eines " + "Passworts aufgefordert" + +-#: ../src/daemon/abrt-auto-reporting.c:238 ++#: ../src/daemon/abrt-auto-reporting.c:243 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL-Zertifikatspfad oder -Zertifikatstyp" + +-#: ../src/daemon/abrt-auto-reporting.c:254 ++#: ../src/daemon/abrt-auto-reporting.c:259 + msgid "You also need to specify --username for --password" + msgstr "Sie müssen ebenfalls --username für --password angeben" + +-#: ../src/daemon/abrt-auto-reporting.c:260 ++#: ../src/daemon/abrt-auto-reporting.c:265 + msgid "You can use either --username or --certificate" + msgstr "Sie können entweder --username oder --certificate verwenden" + +-#: ../src/daemon/abrt-auto-reporting.c:266 ++#: ../src/daemon/abrt-auto-reporting.c:271 + msgid "You can use either --username or --anonymous" + msgstr "Sie können entweder --username oder --anonymous verwenden" + +-#: ../src/daemon/abrt-auto-reporting.c:272 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "You can use either --anonymous or --certificate" + msgstr "Sie können entweder --anonymous oder --certificate verwenden" + +-#: ../src/daemon/abrt-auto-reporting.c:279 ++#: ../src/daemon/abrt-auto-reporting.c:284 + msgid "Invalid number of arguments" + msgstr "Ungültige Parameteranzahl" + +-#: ../src/daemon/abrt-auto-reporting.c:298 ++#: ../src/daemon/abrt-auto-reporting.c:303 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Unbekannter Optionswert: »%s«\n" + +-#: ../src/daemon/abrt-auto-reporting.c:338 ++#: ../src/daemon/abrt-auto-reporting.c:343 + msgid "Password:" + msgstr "Passwort:" + +-#: ../src/daemon/abrt-auto-reporting.c:341 ++#: ../src/daemon/abrt-auto-reporting.c:346 + msgid "Cannot continue without password\n" + msgstr "Fortfahren ohne Passwort nicht möglich\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:382 ++#: ../src/daemon/abrt-auto-reporting.c:387 + msgid "HTTP Authenticated auto reporting" + msgstr "Per HTTP authentifizierte automatische Berichterstattung" + +-#: ../src/daemon/abrt-auto-reporting.c:384 ++#: ../src/daemon/abrt-auto-reporting.c:389 + msgid "SSL Client Authenticated auto reporting" + msgstr "Per SSL-Client authentifizierte automatische Berichterstattung" + +-#: ../src/daemon/abrt-auto-reporting.c:386 ++#: ../src/daemon/abrt-auto-reporting.c:391 + msgid "anonymous auto reporting" + msgstr "Anonyme automatische Berichterstattung" + +@@ -799,7 +799,7 @@ msgstr "Verarbeitung der Ablaufverfolgung für %s ist fehlgeschlagen" + msgid "Crash thread not found" + msgstr "Absturz Thread nicht gefunden" + +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -2026,7 +2026,7 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Siehe 'abrt-cli COMMAND --help' für weitere Informationen" + +-#: ../src/cli/list.c:121 ++#: ../src/cli/list.c:124 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -2034,30 +2034,30 @@ msgstr "" + "%sFühren Sie »abrt-cli report %s« aus, um ein Ticket im Red Hat Kundenportal " + "zu erstellen\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:176 + msgid "& list [options]" + msgstr "& auflisten [options]" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:185 + msgid "List only not-reported problems" + msgstr "Nur noch nicht berichtete Probleme anzeigen" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:184 ../src/cli/list.c:237 ++#: ../src/cli/list.c:187 ../src/cli/list.c:240 + msgid "Show detailed report" + msgstr "Detaillierten Bericht anzeigen" + +-#: ../src/cli/list.c:185 ++#: ../src/cli/list.c:188 + 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:186 ++#: ../src/cli/list.c:189 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Nur die Probleme anzeigen, welcher nach dem festgelegten Zeitpunkt auftraten" + +-#: ../src/cli/list.c:212 ++#: ../src/cli/list.c:215 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2068,34 +2068,34 @@ msgstr "" + "Betracht, sie\n" + "zu aktivieren, indem Sie 'abrt-auto-reporting enabled' als Root ausführen\n" + +-#: ../src/cli/list.c:229 ++#: ../src/cli/list.c:232 + msgid "& info [options] DIR..." + msgstr "& info [Optionen] DIR..." + +-#: ../src/cli/list.c:238 ++#: ../src/cli/list.c:241 + msgid "Text larger than this will be shown abridged" + msgstr "Längere Texte werden gekürzt angezeigt" + +-#: ../src/cli/list.c:258 ++#: ../src/cli/list.c:261 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Kein solches Fehlerverzeichnis »%s« vorhanden" + +-#: ../src/cli/status.c:63 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "& Status" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:74 + msgid "Print only the problem count without any message" + msgstr "Nur die Fehleranzahl ohne Mitteilung ausgeben" + +-#: ../src/cli/status.c:72 ++#: ../src/cli/status.c:75 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Das aktuellste Auftreten des Fehlers anstatt des angegebenen Zeitstempel " + "ausgeben" + +-#: ../src/cli/status.c:88 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" +diff --git a/po/es.po b/po/es.po +index eb5642e..cb1c136 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -23,21 +23,22 @@ + # Gerardo Rosales , 2015. #zanata + # Gladys Guerrero Lozano , 2015. #zanata + # Jakub Filak , 2015. #zanata ++# Máximo Castañeda Riloba , 2016. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-07-14 15:37+0200\n" ++"POT-Creation-Date: 2016-06-29 15:31+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-07-21 11:54-0400\n" +-"Last-Translator: Gladys Guerrero Lozano \n" ++"PO-Revision-Date: 2016-08-31 07:26-0400\n" ++"Last-Translator: Máximo Castañeda Riloba \n" + "Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/" + "language/es/)\n" + "Language: es\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.6.2\n" ++"X-Generator: Zanata 3.9.5\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -367,7 +368,7 @@ msgstr "Acerca de" + msgid "Quit" + msgstr "Salir" + +-#: ../src/daemon/abrt-action-save-package-data.c:378 ++#: ../src/daemon/abrt-action-save-package-data.c:400 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -378,9 +379,9 @@ msgstr "" + "Solicita el paquete de base de datos y guarda el nombre del paquete y " + "componente" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:412 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -389,14 +390,14 @@ msgstr "" + msgid "Problem directory" + msgstr "Directorio de problemas" + +-#: ../src/daemon/abrt-action-save-package-data.c:391 ++#: ../src/daemon/abrt-action-save-package-data.c:413 + msgid "Configuration file" + msgstr "Archivo de configuración" + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 + msgid "& [options]" +-msgstr "& [options]" ++msgstr "& [opciones]" + + #: ../src/daemon/abrt-server.c:803 + msgid "Use NUM as client uid" +@@ -408,73 +409,73 @@ msgstr "Utilice NUM como uid del cliente" + msgid "Log to syslog" + msgstr "Registrarse en syslog" + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 + msgid "Add program names to log" + msgstr "Agrega el nombre del programa al log" + +-#: ../src/dbus/abrt-dbus.c:132 ++#: ../src/dbus/abrt-dbus.c:131 + msgid "Unknown error" + msgstr "Error desconocido" + +-#: ../src/dbus/abrt-dbus.c:221 ++#: ../src/dbus/abrt-dbus.c:220 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' no es un directorio de problemas válido" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:255 + #, c-format + msgid "'%s' element can't be modified" + msgstr "'%s' elemento no puede ser modificado" + +-#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 +-#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 +-#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:284 ../src/dbus/abrt-dbus.c:497 ++#: ../src/dbus/abrt-dbus.c:559 ../src/dbus/abrt-dbus.c:624 ++#: ../src/dbus/abrt-dbus.c:814 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "No autorizado" + +-#: ../src/dbus/abrt-dbus.c:298 ++#: ../src/dbus/abrt-dbus.c:297 + msgid "Can't access the problem for modification" + msgstr "No puedo acceder al problema para modificación" + +-#: ../src/dbus/abrt-dbus.c:514 ++#: ../src/dbus/abrt-dbus.c:513 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Error al ejecutar chown en directorio. Revise los registros del sistema para " + "más detalles. " + + # translation auto-copied from project abrt, version master, document abrt, author Alex Puchades +-#: ../src/dbus/abrt-dbus.c:635 ++#: ../src/dbus/abrt-dbus.c:634 + msgid "Can't access the problem for reading" + msgstr "No se puede acceder al problema para lectura" + +-#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 +-#: ../src/dbus/abrt-dbus.c:911 ++#: ../src/dbus/abrt-dbus.c:689 ../src/dbus/abrt-dbus.c:754 ++#: ../src/dbus/abrt-dbus.c:910 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' no es un nombre válido de elemento" + +-#: ../src/dbus/abrt-dbus.c:711 ++#: ../src/dbus/abrt-dbus.c:710 + #, c-format + msgid "Can't get size of '%s'" + msgstr "No se puede obtener tamaño de «%s»" + +-#: ../src/dbus/abrt-dbus.c:726 ++#: ../src/dbus/abrt-dbus.c:725 + msgid "No problem space left" + msgstr "No queda espacio del problema" + +-#: ../src/dbus/abrt-dbus.c:776 ++#: ../src/dbus/abrt-dbus.c:775 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "No puedo borrar el elemento '%s' del directorio de problemas '%s'" + + # translation auto-copied from project abrt, version master, document abrt, author Alex Puchades +-#: ../src/dbus/abrt-dbus.c:803 ++#: ../src/dbus/abrt-dbus.c:802 + msgid "Can't access the problem" + msgstr "No se puede acceder al problema" + +-#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:986 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -483,16 +484,16 @@ msgstr "" + "El nombre '%s' ser perdió, por favor, verifique si otro servicio que tenga " + "ese nombre no se esté ejecutando.\n" + +-#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:480 + msgid "Exit after NUM seconds of inactivity" + msgstr "Sale después de NUM de segundos de inactividad" + +-#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1031 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa debe ser ejecutado como root." + +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:432 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -507,11 +508,11 @@ msgstr "" + "tiempo y desea ayudar a los desarrolladores en su esfuerzo por solucionarlo, " + "por favor contáctelos directamente." + +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:478 + msgid "Do not daemonize" + msgstr "No convertir en un demonio" + +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:479 + msgid "Log to syslog even with -d" + msgstr "Registrar en syslog aún con -d" + +@@ -554,7 +555,7 @@ msgstr "" + + #: ../src/daemon/abrt-upload-watch.c:281 + msgid "Daemize" +-msgstr "Daemize" ++msgstr "Convertir en demonio" + + #: ../src/daemon/abrt-upload-watch.c:282 + msgid "Number of concurrent workers. Default is " +@@ -565,71 +566,71 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "Tamaño máximo de la caché en MB. El predeterminado es" + + #: ../src/daemon/abrt-auto-reporting.c:200 +-#: ../src/daemon/abrt-auto-reporting.c:208 ++#: ../src/daemon/abrt-auto-reporting.c:213 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:235 ++#: ../src/daemon/abrt-auto-reporting.c:240 + msgid "Turns the authentication off" + msgstr "Retira la autenticación" + +-#: ../src/daemon/abrt-auto-reporting.c:236 ++#: ../src/daemon/abrt-auto-reporting.c:241 + msgid "Red Hat Support user name" + msgstr "Nombre de usuario de Red Hat Support" + +-#: ../src/daemon/abrt-auto-reporting.c:237 ++#: ../src/daemon/abrt-auto-reporting.c:242 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Contraseña de Red Hat Support, si no la ingresa, se le indicará" + +-#: ../src/daemon/abrt-auto-reporting.c:238 ++#: ../src/daemon/abrt-auto-reporting.c:243 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Rutas de certificado uReport SSL o tipo de certificado" + +-#: ../src/daemon/abrt-auto-reporting.c:254 ++#: ../src/daemon/abrt-auto-reporting.c:259 + msgid "You also need to specify --username for --password" + msgstr "También necesita especificar --username para --password" + +-#: ../src/daemon/abrt-auto-reporting.c:260 ++#: ../src/daemon/abrt-auto-reporting.c:265 + msgid "You can use either --username or --certificate" + msgstr "Puede usar --username o --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:266 ++#: ../src/daemon/abrt-auto-reporting.c:271 + msgid "You can use either --username or --anonymous" + msgstr "Puede usar --username o --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:272 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "You can use either --anonymous or --certificate" + msgstr "Puede usar --anonymous o --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:279 ++#: ../src/daemon/abrt-auto-reporting.c:284 + msgid "Invalid number of arguments" + msgstr "Número de argumentos no es válido" + +-#: ../src/daemon/abrt-auto-reporting.c:298 ++#: ../src/daemon/abrt-auto-reporting.c:303 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valor de opción desconocido: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:338 ++#: ../src/daemon/abrt-auto-reporting.c:343 + msgid "Password:" + msgstr "Contraseña:" + +-#: ../src/daemon/abrt-auto-reporting.c:341 ++#: ../src/daemon/abrt-auto-reporting.c:346 + msgid "Cannot continue without password\n" + msgstr "No puede continuar sin contraseña\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:382 ++#: ../src/daemon/abrt-auto-reporting.c:387 + msgid "HTTP Authenticated auto reporting" +-msgstr "Autoreporte autenticado HTTP" ++msgstr "Presentación automática de informes con autenticación HTTP" + +-#: ../src/daemon/abrt-auto-reporting.c:384 ++#: ../src/daemon/abrt-auto-reporting.c:389 + msgid "SSL Client Authenticated auto reporting" +-msgstr "Autoreporte de cliente autenticadoSSL " ++msgstr "Presentación automática de informes con autenticación de cliente SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:386 ++#: ../src/daemon/abrt-auto-reporting.c:391 + msgid "anonymous auto reporting" +-msgstr "Autoreporte anónimo " ++msgstr "Presentación automática de informes anónima" + + #: ../src/daemon/abrt-handle-upload.in:135 + #, c-format +@@ -724,12 +725,12 @@ msgstr "Generación de seguimiento" + #: ../src/lib/problem_api_dbus.c:42 + #, c-format + msgid "Can't connect to system DBus: %s" +-msgstr "No se puede conectar con el sistema DBys: %s" ++msgstr "No se puede conectar con el sistema DBus: %s" + + #: ../src/lib/problem_api_dbus.c:68 + #, c-format + msgid "Can't chown '%s': %s" +-msgstr "No puedo hacer chown'%s': %s" ++msgstr "No se pudo cambiar el propietario de '%s': %s" + + #: ../src/lib/problem_api_dbus.c:97 + #, c-format +@@ -765,14 +766,14 @@ msgid "" + "Can't write to '%s'. Problem '%s' will not be removed from the ignored " + "problems '%s'" + msgstr "" +-"No puede escribir en ‘%s’. Problema ‘%s’ no será quitado de los problemas " +-"ignorados ‘%s’" ++"No puede escribir en ‘%s’. No se eliminará el problema ‘%s’ de la lista de " ++"problemas ignorados ‘%s’" + + #. Something nefarious happened + #: ../src/lib/ignored_problems.c:264 + #, 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’" ++msgstr "No puede renombrar ‘%s’ a ‘%s’. No se pudo eliminar el problema ‘%s’" + + #: ../src/plugins/abrt-action-analyze-backtrace.c:41 + msgid "" +@@ -781,9 +782,9 @@ msgid "" + "Analyzes C/C++ backtrace, generates duplication hash, backtrace rating,\n" + "and identifies crash function in problem directory DIR" + msgstr "" +-"& [options] -d DIR\n" ++"& [opciones] -d DIR\n" + "\n" +-"Analiza el trazado de C/C++, genera duplicación de hash, clasificación de " ++"Analiza el trazado de C/C++, genera duplicación de hash, clasificación de " + "seguimiento \n" + "e identifica función de caídas en directorio de problemas DIR" + +@@ -801,7 +802,7 @@ msgstr "Ha fallado el análisis del trazado de %s" + msgid "Crash thread not found" + msgstr "No se encontró el hilo que se colgó" + +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -905,10 +906,10 @@ msgid "" + "\n" + "Analyzes coredump in problem directory DIR, generates and saves backtrace" + msgstr "" +-"& [options] -d DIR\n" ++"& [opciones] -d DIR\n" + "\n" +-"Analiza a coredump en el directorio de problemas DIR, genera y guarda " +-"seguimiento" ++"Analiza el archivo de volcado en el directorio de problemas DIR, genera y " ++"guarda seguimiento" + + #: ../src/plugins/abrt-action-generate-backtrace.c:56 + msgid "Additional debuginfo directories" +@@ -1050,7 +1051,7 @@ msgstr "Noninteractive, asume que se responde 'Sí' a todas las preguntas" + + #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:67 + msgid "- means STDIN, default: build_ids" +-msgstr "- means STDIN, default: build_ids" ++msgstr "- para la entrada estándar; valor predeterminado: build_ids" + + #: ../src/plugins/abrt-action-install-debuginfo-to-abrt-cache.c:68 + msgid "Download only specified files" +@@ -1092,11 +1093,11 @@ msgid "" + "SIZE.\n" + "FILEs are preserved (never deleted)." + msgstr "" +-"& [-v] [-d SIZE:DIR]... [-f SIZE:DIR]... [-p DIR] [FILE]...\n" ++"& [-v] [-d TAMAÑO:DIR]... [-f TAMAÑO:DIR]... [-p DIR] [ARCHIVO]...\n" + "\n" +-"Borra los directorios de problemas (-d) o archivos (-f) en DIR hasta que " +-"sean más pequeños que TAMAÑO.\n" +-"LOS ARCHIVOS se preservan (nunca se borran)." ++"Borra los directorios (-d) o archivos (-f) de problemas en DIR hasta que " ++"sean menores de TAMAÑO.\n" ++"Los ARCHIVOs se mantienen (nunca se borran)." + + #: ../src/plugins/abrt-action-trim-files.c:236 + msgid "Delete whole problem directories" +@@ -2021,14 +2022,14 @@ msgid "" + "Private Reports is enabled, use 'abrt-cli -a COMMAND' to get the detected " + "problems." + msgstr "" +-"Private Reports está activado, use 'abrt-cli -a COMMAND' para obtener los " +-"problemas detectados." ++"Private Reports está activado, use 'abrt-cli -a COMANDO' para obtener los " ++"problemas detectados." + + #: ../src/cli/abrt-cli.c:164 + msgid "See 'abrt-cli COMMAND --help' for more information" +-msgstr "Para obtener más información, consulte 'abrt-cli COMMAND --help' " ++msgstr "Para obtener más información, consulte 'abrt-cli COMANDO --help' " + +-#: ../src/cli/list.c:121 ++#: ../src/cli/list.c:124 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -2037,29 +2038,29 @@ msgstr "" + "Red Hat\n" + + # translation auto-copied from project abrt, version master, document abrt, author Gerardo Rosales +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:176 + msgid "& list [options]" + msgstr "& list [opciones]" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:185 + msgid "List only not-reported problems" + msgstr "Liste únicamente los problemas no reportados" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:184 ../src/cli/list.c:237 ++#: ../src/cli/list.c:187 ../src/cli/list.c:240 + msgid "Show detailed report" + msgstr "Muestre el reporte detallado" + +-#: ../src/cli/list.c:185 ++#: ../src/cli/list.c:188 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Liste solo los problemas más recientes que la marca de tiempo especificada" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:189 + msgid "List only the problems older than specified timestamp" + msgstr "Liste solo los problemas anteriores a la marca de tiempo especificada" + +-#: ../src/cli/list.c:212 ++#: ../src/cli/list.c:215 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2070,35 +2071,35 @@ msgstr "" + "habilitarla al emitir \n" + "'abrt-auto-reporting enabled' como usuario con privilegios de root.\n" + +-#: ../src/cli/list.c:229 ++#: ../src/cli/list.c:232 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:238 ++#: ../src/cli/list.c:241 + msgid "Text larger than this will be shown abridged" + msgstr "Los textos de más extensos que este, aparecen abreviados" + +-#: ../src/cli/list.c:258 ++#: ../src/cli/list.c:261 + #, c-format + msgid "No such problem directory '%s'" + msgstr "No se encontró el directorio '%s' del problema" + + # translation auto-copied from project abrt, version master, document abrt, author Alex Puchades +-#: ../src/cli/status.c:63 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "& estatus" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:74 + msgid "Print only the problem count without any message" + msgstr "Imprimir únicamente el conteo del problema sin ningún mensaje" + +-#: ../src/cli/status.c:72 ++#: ../src/cli/status.c:75 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Imprimir únicamente los problemas más recientes que la marca de tiempo " + "especificada" + +-#: ../src/cli/status.c:88 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" +@@ -2144,12 +2145,11 @@ msgstr "Para el siguiente problema presione la tecla ENTER:" + #: ../src/cli/process.c:138 + msgid "Without --since argument, iterates over all detected problems." + msgstr "" +-"Without -- puesto que el argumento se repite sobre todos los problemas " +-"detectados." ++"Sin el parámetro --since, se repite sobre todos los problemas detectados." + + #: ../src/cli/process.c:144 + msgid "Selects only problems detected after timestamp" +-msgstr "Selecciona unicamente los problemas después del tiempo especificado" ++msgstr "Selecciona únicamente los problemas después del tiempo especificado" + + #: ../src/plugins/analyze_CCpp.xml.in.h:1 + msgid "" +@@ -2226,8 +2226,8 @@ msgid "" + "Checks if there are vimrc and gvimrc files in /etc and saves them as " + "system_vimrc and system_gvimrc, respectively." + msgstr "" +-"Verifica si hay archivos vimrc y gvimrc en /etc y los guard como " +-"system_vimrc and system_gvimrc, respectivamente" ++"Verifica si hay archivos vimrc y gvimrc en /etc y los guarda como " ++"system_vimrc y system_gvimrc, respectivamente" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:1 + msgid "Collect yours vim configuration files" +@@ -2235,7 +2235,7 @@ msgstr "Recolecta sus archivos de configuración vim" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:2 + msgid "Save .vimrc and .gvimrc from your home directory" +-msgstr "Guarda .vimrc y .gvimrc de su directorio principal" ++msgstr "Guarda .vimrc y .gvimrc de su directorio principal" + + #: ../src/plugins/collect_vimrc_user.xml.in.h:3 + msgid "" +@@ -2247,7 +2247,7 @@ msgstr "" + + #: ../src/plugins/post_report.xml.in.h:1 + msgid "Post report" +-msgstr "Informe posterior" ++msgstr "Publicar informe" + + #: ../src/plugins/post_report.xml.in.h:2 + msgid "Executed after the reporting is finished" +diff --git a/po/fr.po b/po/fr.po +index c0084ce..019ecad 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -15,22 +15,23 @@ + # Vincent , 2011 + # Jakub Filak , 2015. #zanata + # Julie Carbone , 2015. #zanata ++# Richard Marko , 2015. #zanata + # Sam Friedmann , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-07-14 15:37+0200\n" ++"POT-Creation-Date: 2016-06-29 15:31+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-07-16 08:54-0400\n" +-"Last-Translator: Sam Friedmann \n" ++"PO-Revision-Date: 2015-07-29 09:45-0400\n" ++"Last-Translator: Richard Marko \n" + "Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/" + "language/fr/)\n" + "Language: fr\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.6.2\n" ++"X-Generator: Zanata 3.9.5\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -370,7 +371,7 @@ msgstr "À propos" + msgid "Quit" + msgstr "Quitter" + +-#: ../src/daemon/abrt-action-save-package-data.c:378 ++#: ../src/daemon/abrt-action-save-package-data.c:400 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -381,9 +382,9 @@ msgstr "" + "Interroge la base de données des paquets et enregistre le paquet et le nom " + "du composant" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:412 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -392,12 +393,12 @@ msgstr "" + msgid "Problem directory" + msgstr "Répertoire des incidents" + +-#: ../src/daemon/abrt-action-save-package-data.c:391 ++#: ../src/daemon/abrt-action-save-package-data.c:413 + msgid "Configuration file" + msgstr "Fichier de configuration" + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 + msgid "& [options]" + msgstr "& [options]" + +@@ -411,72 +412,72 @@ msgstr "Utiliser NUM en tant qu'UID client" + msgid "Log to syslog" + msgstr "Journaliser vers syslog" + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 + msgid "Add program names to log" + msgstr "Ajouter le nom des programmes dans le journal" + +-#: ../src/dbus/abrt-dbus.c:132 ++#: ../src/dbus/abrt-dbus.c:131 + msgid "Unknown error" + msgstr "Erreur inconnue" + +-#: ../src/dbus/abrt-dbus.c:221 ++#: ../src/dbus/abrt-dbus.c:220 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "« %s » n'est pas un répertoire d'incidents valide" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:255 + #, c-format + msgid "'%s' element can't be modified" + msgstr "L'élément « %s » ne peut pas être modifié" + +-#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 +-#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 +-#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:284 ../src/dbus/abrt-dbus.c:497 ++#: ../src/dbus/abrt-dbus.c:559 ../src/dbus/abrt-dbus.c:624 ++#: ../src/dbus/abrt-dbus.c:814 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Interdit" + +-#: ../src/dbus/abrt-dbus.c:298 ++#: ../src/dbus/abrt-dbus.c:297 + msgid "Can't access the problem for modification" + msgstr "Impossible d'accéder à l'incident pour effectuer des modifications" + +-#: ../src/dbus/abrt-dbus.c:514 ++#: ../src/dbus/abrt-dbus.c:513 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Échec du chown sur le répertoire. Vérifier les journaux du système pour plus " + "de détails." + +-#: ../src/dbus/abrt-dbus.c:635 ++#: ../src/dbus/abrt-dbus.c:634 + msgid "Can't access the problem for reading" + msgstr "Impossible d'accéder à l'incident pour la lecture" + +-#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 +-#: ../src/dbus/abrt-dbus.c:911 ++#: ../src/dbus/abrt-dbus.c:689 ../src/dbus/abrt-dbus.c:754 ++#: ../src/dbus/abrt-dbus.c:910 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "« %s » n'est pas un nom d'élément valide" + +-#: ../src/dbus/abrt-dbus.c:711 ++#: ../src/dbus/abrt-dbus.c:710 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Impossible d'obtenir la taille de « %s »" + +-#: ../src/dbus/abrt-dbus.c:726 ++#: ../src/dbus/abrt-dbus.c:725 + msgid "No problem space left" + msgstr "Il ne reste plus d'espace pour les incidents" + +-#: ../src/dbus/abrt-dbus.c:776 ++#: ../src/dbus/abrt-dbus.c:775 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "Impossible de supprimer l'élément « %s » du répertoire des incidents « %s »" + +-#: ../src/dbus/abrt-dbus.c:803 ++#: ../src/dbus/abrt-dbus.c:802 + msgid "Can't access the problem" + msgstr "Impossible d'accéder à l'incident" + +-#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:986 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -485,16 +486,16 @@ msgstr "" + "Le nom « %s » a été perdu, merci de vérifier qu'un autre service utilisant " + "ce même nom ne tourne pas.\n" + +-#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:480 + msgid "Exit after NUM seconds of inactivity" + msgstr "Quitter après NUM secondes d'inactivité" + +-#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1031 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Le programme doit être lancé en tant que root." + +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:432 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -509,11 +510,11 @@ msgstr "" + "vous avez du temps et désirez aider les développeurs dans leur effort de " + "résolution de cet incident, merci de les contacter directement." + +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:478 + msgid "Do not daemonize" + msgstr "Ne pas lancer le démon" + +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:479 + msgid "Log to syslog even with -d" + msgstr "Journaliser vers syslog même avec -d" + +@@ -569,71 +570,71 @@ 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:200 +-#: ../src/daemon/abrt-auto-reporting.c:208 ++#: ../src/daemon/abrt-auto-reporting.c:213 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:235 ++#: ../src/daemon/abrt-auto-reporting.c:240 + msgid "Turns the authentication off" + msgstr "Désactive l'authentification" + +-#: ../src/daemon/abrt-auto-reporting.c:236 ++#: ../src/daemon/abrt-auto-reporting.c:241 + msgid "Red Hat Support user name" + msgstr "Nom d'utilisateur du Support Red Hat" + +-#: ../src/daemon/abrt-auto-reporting.c:237 ++#: ../src/daemon/abrt-auto-reporting.c:242 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Si le mot de passe du Support Red Hat n'est pas fourni, vous serez invité à " + "en créer un." + +-#: ../src/daemon/abrt-auto-reporting.c:238 ++#: ../src/daemon/abrt-auto-reporting.c:243 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Types ou chemins de certificat uReport SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:254 ++#: ../src/daemon/abrt-auto-reporting.c:259 + msgid "You also need to specify --username for --password" + msgstr "Vous devez également indiquer --username pour --password" + +-#: ../src/daemon/abrt-auto-reporting.c:260 ++#: ../src/daemon/abrt-auto-reporting.c:265 + msgid "You can use either --username or --certificate" + msgstr "Vous pouvez utiliser --username ou --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:266 ++#: ../src/daemon/abrt-auto-reporting.c:271 + msgid "You can use either --username or --anonymous" + msgstr "Vous pouvez utiliser --username ou --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:272 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "You can use either --anonymous or --certificate" + msgstr "Vous pouvez utiliser --anonymous ou --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:279 ++#: ../src/daemon/abrt-auto-reporting.c:284 + msgid "Invalid number of arguments" + msgstr "Nombre d'arguments non valide" + +-#: ../src/daemon/abrt-auto-reporting.c:298 ++#: ../src/daemon/abrt-auto-reporting.c:303 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valeur de l'option inconnue : « %s »\n" + +-#: ../src/daemon/abrt-auto-reporting.c:338 ++#: ../src/daemon/abrt-auto-reporting.c:343 + msgid "Password:" + msgstr "Mot de passe :" + +-#: ../src/daemon/abrt-auto-reporting.c:341 ++#: ../src/daemon/abrt-auto-reporting.c:346 + msgid "Cannot continue without password\n" + msgstr "Impossible de continuer sans mot de passe\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:382 ++#: ../src/daemon/abrt-auto-reporting.c:387 + msgid "HTTP Authenticated auto reporting" + msgstr "Autoreporting authentifié avec HTTP" + +-#: ../src/daemon/abrt-auto-reporting.c:384 ++#: ../src/daemon/abrt-auto-reporting.c:389 + msgid "SSL Client Authenticated auto reporting" + msgstr "Autoreporting authentifié avec le Client SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:386 ++#: ../src/daemon/abrt-auto-reporting.c:391 + msgid "anonymous auto reporting" + msgstr "Autoreporting anonyme" + +@@ -808,7 +809,7 @@ msgstr "Erreur lors de l'analyse du backtrace pour %s" + msgid "Crash thread not found" + msgstr "Fil d'exécution planté introuvable" + +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -2054,7 +2055,7 @@ msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + "Voir « abrt-cli COMMAND --help » pour obtenir davantage d'informations" + +-#: ../src/cli/list.c:121 ++#: ../src/cli/list.c:124 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -2062,30 +2063,30 @@ msgstr "" + "%sExécuter « abrt-cli report %s » pour créer un dossier dans le Portail " + "Client Red Hat\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:176 + msgid "& list [options]" + msgstr "& list [options]" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:185 + msgid "List only not-reported problems" + msgstr "Répertorier les problèmes non rapportés uniquement" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:184 ../src/cli/list.c:237 ++#: ../src/cli/list.c:187 ../src/cli/list.c:240 + msgid "Show detailed report" + msgstr "Afficher le rapport détaillé" + +-#: ../src/cli/list.c:185 ++#: ../src/cli/list.c:188 + 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:186 ++#: ../src/cli/list.c:189 + 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:212 ++#: ../src/cli/list.c:215 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2096,32 +2097,32 @@ msgstr "" + "Veuillez envisager de l'activer en effectuant\n" + "la commande « abrt-auto-reporting enabled » en tant qu'utilisateur root.\n" + +-#: ../src/cli/list.c:229 ++#: ../src/cli/list.c:232 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:238 ++#: ../src/cli/list.c:241 + 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:258 ++#: ../src/cli/list.c:261 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Répertoire d'incidents « %s » inconnu" + +-#: ../src/cli/status.c:63 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "& status" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:74 + msgid "Print only the problem count without any message" + msgstr "Affiche uniquement le nombre d'incident sans autre message" + +-#: ../src/cli/status.c:72 ++#: ../src/cli/status.c:75 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Affiche les seuls incidents plus récents que l'horodatage indiqué" + +-#: ../src/cli/status.c:88 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" +diff --git a/po/it.po b/po/it.po +index 2ad531e..1fcb308 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -19,7 +19,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-07-14 15:37+0200\n" ++"POT-Creation-Date: 2016-06-29 15:31+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -29,7 +29,7 @@ msgstr "" + "language/it/)\n" + "Language: it\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.6.2\n" ++"X-Generator: Zanata 3.9.5\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -358,7 +358,7 @@ msgstr "Informazioni" + msgid "Quit" + msgstr "Esci" + +-#: ../src/daemon/abrt-action-save-package-data.c:378 ++#: ../src/daemon/abrt-action-save-package-data.c:400 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -369,9 +369,9 @@ msgstr "" + "Interroga il database del pacchetto e salva il nome del componente e quello " + "del pacchetto" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:412 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -380,12 +380,12 @@ msgstr "" + msgid "Problem directory" + msgstr "Directory del problema" + +-#: ../src/daemon/abrt-action-save-package-data.c:391 ++#: ../src/daemon/abrt-action-save-package-data.c:413 + msgid "Configuration file" + msgstr "File di configurazione" + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 + msgid "& [options]" + msgstr "& [opzioni]" + +@@ -399,72 +399,72 @@ msgstr "Utilizzare NUM per l'uid del client" + msgid "Log to syslog" + msgstr "Log su syslog" + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 + msgid "Add program names to log" + msgstr "Aggiungi i nomi dei programmi sul log" + +-#: ../src/dbus/abrt-dbus.c:132 ++#: ../src/dbus/abrt-dbus.c:131 + msgid "Unknown error" + msgstr "Errore sconosciuto" + +-#: ../src/dbus/abrt-dbus.c:221 ++#: ../src/dbus/abrt-dbus.c:220 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' non è una directory di problema valida" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:255 + #, c-format + msgid "'%s' element can't be modified" + msgstr "Impossibile modificare l'elemento '%s' " + +-#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 +-#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 +-#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:284 ../src/dbus/abrt-dbus.c:497 ++#: ../src/dbus/abrt-dbus.c:559 ../src/dbus/abrt-dbus.c:624 ++#: ../src/dbus/abrt-dbus.c:814 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Non Autorizzato" + +-#: ../src/dbus/abrt-dbus.c:298 ++#: ../src/dbus/abrt-dbus.c:297 + msgid "Can't access the problem for modification" + msgstr "Impossibile accedere al problema per la modifica" + +-#: ../src/dbus/abrt-dbus.c:514 ++#: ../src/dbus/abrt-dbus.c:513 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Modifica proprietario della directory fallita. Controllare i log del sistema " + "per maggiori informazioni." + +-#: ../src/dbus/abrt-dbus.c:635 ++#: ../src/dbus/abrt-dbus.c:634 + msgid "Can't access the problem for reading" + msgstr "Impossibile accedere al problema per la lettura" + +-#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 +-#: ../src/dbus/abrt-dbus.c:911 ++#: ../src/dbus/abrt-dbus.c:689 ../src/dbus/abrt-dbus.c:754 ++#: ../src/dbus/abrt-dbus.c:910 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' non è un nome di elemento valido" + +-#: ../src/dbus/abrt-dbus.c:711 ++#: ../src/dbus/abrt-dbus.c:710 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Impossibile ottenere la dimensione di '%s'" + +-#: ../src/dbus/abrt-dbus.c:726 ++#: ../src/dbus/abrt-dbus.c:725 + msgid "No problem space left" + msgstr "Nessuno spazio del problema rimasto" + +-#: ../src/dbus/abrt-dbus.c:776 ++#: ../src/dbus/abrt-dbus.c:775 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "" + "Impossibile cancellare l'elemento '%s' dalla directory del problema '%s'" + +-#: ../src/dbus/abrt-dbus.c:803 ++#: ../src/dbus/abrt-dbus.c:802 + msgid "Can't access the problem" + msgstr "Impossibile accedere al problema" + +-#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:986 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -473,16 +473,16 @@ msgstr "" + "Il nome '%s' è stato perso, verificare che altri servizi che utilizzano " + "questo nome non siano in esecuzione.\n" + +-#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:480 + msgid "Exit after NUM seconds of inactivity" + msgstr "Esci dopo NUM secondi di inattività" + +-#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1031 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Questo programma deve essere eseguito come root." + +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:432 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -496,11 +496,11 @@ msgstr "" + "permetterà di inviare questo problema. Se hai un po' di tempo e vuoi aiutare " + "gli sviluppatori a correggere il malfunzionameto, contattali direttamente." + +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:478 + msgid "Do not daemonize" + msgstr "Non rendere demone" + +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:479 + msgid "Log to syslog even with -d" + msgstr "Log su syslog anche con -d" + +@@ -557,71 +557,71 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "Dimensione cache massima in MiB. L'impostazione predefinita è" + + #: ../src/daemon/abrt-auto-reporting.c:200 +-#: ../src/daemon/abrt-auto-reporting.c:208 ++#: ../src/daemon/abrt-auto-reporting.c:213 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:235 ++#: ../src/daemon/abrt-auto-reporting.c:240 + msgid "Turns the authentication off" + msgstr " Disabilita l'autenticazione" + +-#: ../src/daemon/abrt-auto-reporting.c:236 ++#: ../src/daemon/abrt-auto-reporting.c:241 + msgid "Red Hat Support user name" + msgstr "Nome utente per il Red Hat Support" + +-#: ../src/daemon/abrt-auto-reporting.c:237 ++#: ../src/daemon/abrt-auto-reporting.c:242 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Password per il Red Hat Support, se non specificata verrà richiesto di " + "inserirne una" + +-#: ../src/daemon/abrt-auto-reporting.c:238 ++#: ../src/daemon/abrt-auto-reporting.c:243 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Tipo di certificato o percorsi per il certificato SSL uReport" + +-#: ../src/daemon/abrt-auto-reporting.c:254 ++#: ../src/daemon/abrt-auto-reporting.c:259 + msgid "You also need to specify --username for --password" + msgstr "Specificare --username per --password" + +-#: ../src/daemon/abrt-auto-reporting.c:260 ++#: ../src/daemon/abrt-auto-reporting.c:265 + msgid "You can use either --username or --certificate" + msgstr "Usare --username o --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:266 ++#: ../src/daemon/abrt-auto-reporting.c:271 + msgid "You can use either --username or --anonymous" + msgstr "Usare --username o --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:272 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "You can use either --anonymous or --certificate" + msgstr "Usare --anonymous o --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:279 ++#: ../src/daemon/abrt-auto-reporting.c:284 + msgid "Invalid number of arguments" + msgstr "Numero non valido di argomenti" + +-#: ../src/daemon/abrt-auto-reporting.c:298 ++#: ../src/daemon/abrt-auto-reporting.c:303 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valore opzione sconosciuto: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:338 ++#: ../src/daemon/abrt-auto-reporting.c:343 + msgid "Password:" + msgstr "Password:" + +-#: ../src/daemon/abrt-auto-reporting.c:341 ++#: ../src/daemon/abrt-auto-reporting.c:346 + msgid "Cannot continue without password\n" + msgstr "Impossibile continuare senza password\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:382 ++#: ../src/daemon/abrt-auto-reporting.c:387 + msgid "HTTP Authenticated auto reporting" + msgstr "Auto reporting autenticato con HTTP" + +-#: ../src/daemon/abrt-auto-reporting.c:384 ++#: ../src/daemon/abrt-auto-reporting.c:389 + msgid "SSL Client Authenticated auto reporting" + msgstr "Auto reporting autenticato con client SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:386 ++#: ../src/daemon/abrt-auto-reporting.c:391 + msgid "anonymous auto reporting" + msgstr "auto reporting anonimo" + +@@ -797,7 +797,7 @@ msgstr "Fallita analisi del backtrace per %s" + msgid "Crash thread not found" + msgstr "Thread di crash non trovato" + +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -2022,7 +2022,7 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Consultare 'abrt-cli COMMAND --help' per maggiori informazioni" + +-#: ../src/cli/list.c:121 ++#: ../src/cli/list.c:124 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -2030,28 +2030,28 @@ msgstr "" + "%sEsegui 'abrt-cli report %s' per creare un caso nel Portale clienti di Red " + "Hat\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:176 + msgid "& list [options]" + msgstr "& list [options]" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:185 + msgid "List only not-reported problems" + msgstr "Elenca solo problemi non riportati" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:184 ../src/cli/list.c:237 ++#: ../src/cli/list.c:187 ../src/cli/list.c:240 + msgid "Show detailed report" + msgstr "Mostra una notifica dettagliata" + +-#: ../src/cli/list.c:185 ++#: ../src/cli/list.c:188 + msgid "List only the problems more recent than specified timestamp" + msgstr "Elenca solo i problemi più recenti della data specificata" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:189 + msgid "List only the problems older than specified timestamp" + msgstr "Elenca solo i problemi più vecchi della data specificata" + +-#: ../src/cli/list.c:212 ++#: ../src/cli/list.c:215 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2061,32 +2061,32 @@ 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:229 ++#: ../src/cli/list.c:232 + msgid "& info [options] DIR..." + msgstr "& info [opzioni] DIR..." + +-#: ../src/cli/list.c:238 ++#: ../src/cli/list.c:241 + msgid "Text larger than this will be shown abridged" + msgstr "I testi con dimensioni maggiori di questo verranno mostrati ridotti" + +-#: ../src/cli/list.c:258 ++#: ../src/cli/list.c:261 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Directory '%s' del problema non trovata" + +-#: ../src/cli/status.c:63 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "& status" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:74 + msgid "Print only the problem count without any message" + msgstr "Stampa solo il contatore del problema senza nessun messaggio" + +-#: ../src/cli/status.c:72 ++#: ../src/cli/status.c:75 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Stampa solo i problemi più recenti di un timestamp specificato" + +-#: ../src/cli/status.c:88 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" +diff --git a/po/ja.po b/po/ja.po +index 25c97de..9673028 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -17,7 +17,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-07-14 15:37+0200\n" ++"POT-Creation-Date: 2016-06-29 15:31+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -27,7 +27,7 @@ msgstr "" + "language/ja/)\n" + "Language: ja\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.6.2\n" ++"X-Generator: Zanata 3.9.5\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -333,7 +333,7 @@ msgstr "ABRT について" + msgid "Quit" + msgstr "終了" + +-#: ../src/daemon/abrt-action-save-package-data.c:378 ++#: ../src/daemon/abrt-action-save-package-data.c:400 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -343,9 +343,9 @@ msgstr "" + "\n" + "パッケージのデータベースに問い合わせを行い、 パッケージとコンポーネント名を保存します" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:412 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -354,12 +354,12 @@ msgstr "" + msgid "Problem directory" + msgstr "問題ディレクトリ" + +-#: ../src/daemon/abrt-action-save-package-data.c:391 ++#: ../src/daemon/abrt-action-save-package-data.c:413 + msgid "Configuration file" + msgstr "設定ファイル" + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 + msgid "& [options]" + msgstr "& [オプション]" + +@@ -373,85 +373,85 @@ msgstr "NUM をクライアントの uid として使用する" + msgid "Log to syslog" + msgstr "syslog にログする" + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 + msgid "Add program names to log" + msgstr "ログにプログラム名を追加する" + +-#: ../src/dbus/abrt-dbus.c:132 ++#: ../src/dbus/abrt-dbus.c:131 + msgid "Unknown error" + msgstr "不明なエラーです" + +-#: ../src/dbus/abrt-dbus.c:221 ++#: ../src/dbus/abrt-dbus.c:220 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "「%s」は有効な問題ディレクトリではありません" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:255 + #, c-format + msgid "'%s' element can't be modified" + msgstr "'%s' エレメントを修正できません" + +-#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 +-#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 +-#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:284 ../src/dbus/abrt-dbus.c:497 ++#: ../src/dbus/abrt-dbus.c:559 ../src/dbus/abrt-dbus.c:624 ++#: ../src/dbus/abrt-dbus.c:814 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "権限がありません" + +-#: ../src/dbus/abrt-dbus.c:298 ++#: ../src/dbus/abrt-dbus.c:297 + msgid "Can't access the problem for modification" + msgstr "問題にアクセスして修正できません" + +-#: ../src/dbus/abrt-dbus.c:514 ++#: ../src/dbus/abrt-dbus.c:513 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "ディレクトリの所有者変更に失敗しました。詳細はシステムログを確認してください。" + +-#: ../src/dbus/abrt-dbus.c:635 ++#: ../src/dbus/abrt-dbus.c:634 + msgid "Can't access the problem for reading" + msgstr "問題にアクセスして読み込むことができません" + +-#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 +-#: ../src/dbus/abrt-dbus.c:911 ++#: ../src/dbus/abrt-dbus.c:689 ../src/dbus/abrt-dbus.c:754 ++#: ../src/dbus/abrt-dbus.c:910 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' は有効なエレメント名ではありません" + +-#: ../src/dbus/abrt-dbus.c:711 ++#: ../src/dbus/abrt-dbus.c:710 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' の容量を取得できません" + +-#: ../src/dbus/abrt-dbus.c:726 ++#: ../src/dbus/abrt-dbus.c:725 + msgid "No problem space left" + msgstr "残っている問題領域はありません" + +-#: ../src/dbus/abrt-dbus.c:776 ++#: ../src/dbus/abrt-dbus.c:775 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "「%s」エレメントを問題ディレクトリの「%s」から削除できません" + +-#: ../src/dbus/abrt-dbus.c:803 ++#: ../src/dbus/abrt-dbus.c:802 + msgid "Can't access the problem" + msgstr "問題にアクセスできません" + +-#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:986 ../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 "'%s' の名前を紛失しました。その名前を持つ他のサービスが実行していないかチェックして下さい。\n" + +-#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:480 + msgid "Exit after NUM seconds of inactivity" + msgstr "休止状態が NUM 秒以上続いた場合は終了します" + +-#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1031 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "このプログラムは root で実行しなければなりません" + +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:432 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -462,11 +462,11 @@ msgstr "" + "問題データは不完全なデータです。コンピューターのシャットダウン中やユーザーのログアウト中に問題が検出されると、こうしたことが発生します。役に立たない問題レポートは提出されないよう、ABRT " + "によりこの問題の送信は許可されません。この問題を解決するため時間をとって開発者にご協力頂ける場合は、開発者に直接ご連絡ください。" + +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:478 + msgid "Do not daemonize" + msgstr "デーモン化しない" + +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:479 + msgid "Log to syslog even with -d" + msgstr "-d オプションを使用するとログを syslog へ書き込みます" + +@@ -520,69 +520,69 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "MiB 単位の最大キャッシュ容量。規定値は次のとおりです。" + + #: ../src/daemon/abrt-auto-reporting.c:200 +-#: ../src/daemon/abrt-auto-reporting.c:208 ++#: ../src/daemon/abrt-auto-reporting.c:213 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:235 ++#: ../src/daemon/abrt-auto-reporting.c:240 + msgid "Turns the authentication off" + msgstr "認証をオフにする" + +-#: ../src/daemon/abrt-auto-reporting.c:236 ++#: ../src/daemon/abrt-auto-reporting.c:241 + msgid "Red Hat Support user name" + msgstr "Red Hat サポートユーザー名" + +-#: ../src/daemon/abrt-auto-reporting.c:237 ++#: ../src/daemon/abrt-auto-reporting.c:242 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support パスワード、入力しないとあとで入力が求められます" + +-#: ../src/daemon/abrt-auto-reporting.c:238 ++#: ../src/daemon/abrt-auto-reporting.c:243 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL 証明書パスまたは証明書タイプ" + +-#: ../src/daemon/abrt-auto-reporting.c:254 ++#: ../src/daemon/abrt-auto-reporting.c:259 + msgid "You also need to specify --username for --password" + msgstr "--password には --username も指定してください" + +-#: ../src/daemon/abrt-auto-reporting.c:260 ++#: ../src/daemon/abrt-auto-reporting.c:265 + msgid "You can use either --username or --certificate" + msgstr "--username または --certificate のいずれかを使用します" + +-#: ../src/daemon/abrt-auto-reporting.c:266 ++#: ../src/daemon/abrt-auto-reporting.c:271 + msgid "You can use either --username or --anonymous" + msgstr "--username または --anonymous のいずれかを使用します" + +-#: ../src/daemon/abrt-auto-reporting.c:272 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "You can use either --anonymous or --certificate" + msgstr "--anonymous または --certificate のいずれかを使用します" + +-#: ../src/daemon/abrt-auto-reporting.c:279 ++#: ../src/daemon/abrt-auto-reporting.c:284 + msgid "Invalid number of arguments" + msgstr "引数の数が無効な数です" + +-#: ../src/daemon/abrt-auto-reporting.c:298 ++#: ../src/daemon/abrt-auto-reporting.c:303 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "不明なオプション値です: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:338 ++#: ../src/daemon/abrt-auto-reporting.c:343 + msgid "Password:" + msgstr "パスワード:" + +-#: ../src/daemon/abrt-auto-reporting.c:341 ++#: ../src/daemon/abrt-auto-reporting.c:346 + msgid "Cannot continue without password\n" + msgstr "パスワードを入力しないと先に進めません\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:382 ++#: ../src/daemon/abrt-auto-reporting.c:387 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP 認証の自動報告" + +-#: ../src/daemon/abrt-auto-reporting.c:384 ++#: ../src/daemon/abrt-auto-reporting.c:389 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL クライアント認証の自動報告" + +-#: ../src/daemon/abrt-auto-reporting.c:386 ++#: ../src/daemon/abrt-auto-reporting.c:391 + msgid "anonymous auto reporting" + msgstr "anonymous 自動報告" + +@@ -751,7 +751,7 @@ msgstr "%s のバックトレース構文解析に失敗しました" + msgid "Crash thread not found" + msgstr "クラッシュスレッドは見つかりませんでした" + +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -1916,34 +1916,34 @@ msgstr "プライベートレポートが有効になっています、'abrt-cli + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "詳細については abrt-cli COMMAND --help を参照してください" + +-#: ../src/cli/list.c:121 ++#: ../src/cli/list.c:124 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "Red Hat カスタマーポータルにケースを作成するため %s'abrt-cli report を実行する%s'\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:176 + msgid "& list [options]" + msgstr "& list [options]" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:185 + msgid "List only not-reported problems" + msgstr "報告されていない問題のみを表示する" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:184 ../src/cli/list.c:237 ++#: ../src/cli/list.c:187 ../src/cli/list.c:240 + msgid "Show detailed report" + msgstr "詳細報告を表示する" + +-#: ../src/cli/list.c:185 ++#: ../src/cli/list.c:188 + msgid "List only the problems more recent than specified timestamp" + msgstr "指定したタイムスタンプより新しい問題のみを表示します" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:189 + msgid "List only the problems older than specified timestamp" + msgstr "指定したタイムスタンプよりも古い問題のみを表示します" + +-#: ../src/cli/list.c:212 ++#: ../src/cli/list.c:215 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1953,32 +1953,32 @@ msgstr "" + "自動報告機能は無効になっています。root の特権を持つユーザーで\n" + "'abrt-auto-reporting enabled' を発行し、この機能を有効にすることを検討してみてください\n" + +-#: ../src/cli/list.c:229 ++#: ../src/cli/list.c:232 + msgid "& info [options] DIR..." + msgstr "& info [オプション] DIR..." + +-#: ../src/cli/list.c:238 ++#: ../src/cli/list.c:241 + msgid "Text larger than this will be shown abridged" + msgstr "これより大きなテキストは要約して表示されます" + +-#: ../src/cli/list.c:258 ++#: ../src/cli/list.c:261 + #, c-format + msgid "No such problem directory '%s'" + msgstr "そのような問題ディレクトリ '%s' はありません" + +-#: ../src/cli/status.c:63 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "& status" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:74 + msgid "Print only the problem count without any message" + msgstr "問題の件数のみを表示し、メッセージは表示しません" + +-#: ../src/cli/status.c:72 ++#: ../src/cli/status.c:75 + msgid "Print only the problems more recent than specified timestamp" + msgstr "指定されたタイムスタンプよりも新しい問題のみを表示する" + +-#: ../src/cli/status.c:88 ++#: ../src/cli/status.c:91 + #, 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" +diff --git a/po/ko.po b/po/ko.po +index 22dd209..6684de2 100644 +--- a/po/ko.po ++++ b/po/ko.po +@@ -13,7 +13,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-07-14 15:37+0200\n" ++"POT-Creation-Date: 2016-06-29 15:31+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -23,7 +23,7 @@ msgstr "" + "language/ko/)\n" + "Language: ko\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.6.2\n" ++"X-Generator: Zanata 3.9.5\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -326,7 +326,7 @@ msgstr "ABRT에 대해 " + msgid "Quit" + msgstr "종료 " + +-#: ../src/daemon/abrt-action-save-package-data.c:378 ++#: ../src/daemon/abrt-action-save-package-data.c:400 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -335,9 +335,9 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n" + "\n" + "패키지 데이터베이스를 쿼리하고 패키지 및 구성 요소 이름을 저장합니다 " + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:412 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -346,12 +346,12 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n" + msgid "Problem directory" + msgstr "문제가 있는 디렉토리 " + +-#: ../src/daemon/abrt-action-save-package-data.c:391 ++#: ../src/daemon/abrt-action-save-package-data.c:413 + msgid "Configuration file" + msgstr "설정 파일 " + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 + msgid "& [options]" + msgstr "& [options]" + +@@ -365,85 +365,85 @@ msgstr "NUM을 클라이언트 uid로 사용 " + msgid "Log to syslog" + msgstr "syslog에 로그 " + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 + msgid "Add program names to log" + msgstr "로그에 프로그램 이름 추가 " + +-#: ../src/dbus/abrt-dbus.c:132 ++#: ../src/dbus/abrt-dbus.c:131 + msgid "Unknown error" + msgstr "알 수 없는 오류" + +-#: ../src/dbus/abrt-dbus.c:221 ++#: ../src/dbus/abrt-dbus.c:220 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s'는 유효한 문제 디렉토리가 아닙니다" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:255 + #, c-format + msgid "'%s' element can't be modified" + msgstr "'%s' 요소를 수정할 수 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 +-#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 +-#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:284 ../src/dbus/abrt-dbus.c:497 ++#: ../src/dbus/abrt-dbus.c:559 ../src/dbus/abrt-dbus.c:624 ++#: ../src/dbus/abrt-dbus.c:814 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "권한이 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:298 ++#: ../src/dbus/abrt-dbus.c:297 + msgid "Can't access the problem for modification" + msgstr "수정하기 위해 문제에 액세스할 수 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:514 ++#: ../src/dbus/abrt-dbus.c:513 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "디렉토리의 소유자 변경에 실패했습니다. 보다 자세한 내용은 시스템 로그를 확인하십시오. " + +-#: ../src/dbus/abrt-dbus.c:635 ++#: ../src/dbus/abrt-dbus.c:634 + msgid "Can't access the problem for reading" + msgstr "문제에 액세스하여 불러올 수 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 +-#: ../src/dbus/abrt-dbus.c:911 ++#: ../src/dbus/abrt-dbus.c:689 ../src/dbus/abrt-dbus.c:754 ++#: ../src/dbus/abrt-dbus.c:910 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s'은 유효한 요소 이름이 아닙니다 " + +-#: ../src/dbus/abrt-dbus.c:711 ++#: ../src/dbus/abrt-dbus.c:710 + #, c-format + msgid "Can't get size of '%s'" + msgstr "'%s' 용량을 얻을 수 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:726 ++#: ../src/dbus/abrt-dbus.c:725 + msgid "No problem space left" + msgstr "남은 문제 공간이 없음 " + +-#: ../src/dbus/abrt-dbus.c:776 ++#: ../src/dbus/abrt-dbus.c:775 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "문제 디렉토리 '%s'에서 요소 '%s'를 삭제할 수 없습니다 " + +-#: ../src/dbus/abrt-dbus.c:803 ++#: ../src/dbus/abrt-dbus.c:802 + msgid "Can't access the problem" + msgstr "문제에 액세스할 수 없습니다" + +-#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:986 ../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 "'%s'의 이름이 분실되었습니다. 이 이름을 갖는 다른 서비스가 실행되고 있지 않은지 확인하십시오.\n" + +-#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:480 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM 초 동안 동작하지 않을 경우 종료합니다 " + +-#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1031 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "이 프로그램은 root로 실행해야 합니다." + +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:432 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -455,11 +455,11 @@ msgstr "" + "정확하게 문제를 보고하기 위해 ABRT는 이 문제를 전송하는 것을 허용하지 않습니다. 시간이 허락하여 이 문제를 해결하기 위해 개발자에게 " + "도움을 주려면 개발자에게 직접 연락을 취하십시오." + +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:478 + msgid "Do not daemonize" + msgstr "데몬화하지 않습니다 " + +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:479 + msgid "Log to syslog even with -d" + msgstr "-d를 사용하여 syslog에 로그 " + +@@ -513,69 +513,69 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "MiB 단위의 최대 캐시 용량입니다. 기본값은 다음과 같습니다 " + + #: ../src/daemon/abrt-auto-reporting.c:200 +-#: ../src/daemon/abrt-auto-reporting.c:208 ++#: ../src/daemon/abrt-auto-reporting.c:213 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:235 ++#: ../src/daemon/abrt-auto-reporting.c:240 + msgid "Turns the authentication off" + msgstr "인증을 해제" + +-#: ../src/daemon/abrt-auto-reporting.c:236 ++#: ../src/daemon/abrt-auto-reporting.c:241 + msgid "Red Hat Support user name" + msgstr "Red Hat Support 사용자 이름" + +-#: ../src/daemon/abrt-auto-reporting.c:237 ++#: ../src/daemon/abrt-auto-reporting.c:242 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support 암호를 지정하지 않은 경우 이를 요청하는 메세지가 나타납니다" + +-#: ../src/daemon/abrt-auto-reporting.c:238 ++#: ../src/daemon/abrt-auto-reporting.c:243 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL 인증서 경로 또는 인증서 유형" + +-#: ../src/daemon/abrt-auto-reporting.c:254 ++#: ../src/daemon/abrt-auto-reporting.c:259 + msgid "You also need to specify --username for --password" + msgstr "--password의 --username을 지정하십시오" + +-#: ../src/daemon/abrt-auto-reporting.c:260 ++#: ../src/daemon/abrt-auto-reporting.c:265 + msgid "You can use either --username or --certificate" + msgstr "--username 또는 --certificate 중 하나를 사용할 수 있습니다" + +-#: ../src/daemon/abrt-auto-reporting.c:266 ++#: ../src/daemon/abrt-auto-reporting.c:271 + msgid "You can use either --username or --anonymous" + msgstr "--username 또는 --anonymous 중 하나를 사용할 수 있습니다" + +-#: ../src/daemon/abrt-auto-reporting.c:272 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "You can use either --anonymous or --certificate" + msgstr "--anonymous 또는 --certificate 중 하나를 사용할 수 있습니다" + +-#: ../src/daemon/abrt-auto-reporting.c:279 ++#: ../src/daemon/abrt-auto-reporting.c:284 + msgid "Invalid number of arguments" + msgstr "잘못된 인수 개수 " + +-#: ../src/daemon/abrt-auto-reporting.c:298 ++#: ../src/daemon/abrt-auto-reporting.c:303 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "알 수 없는 옵션 값: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:338 ++#: ../src/daemon/abrt-auto-reporting.c:343 + msgid "Password:" + msgstr "암호: " + +-#: ../src/daemon/abrt-auto-reporting.c:341 ++#: ../src/daemon/abrt-auto-reporting.c:346 + msgid "Cannot continue without password\n" + msgstr "암호없이 계속 진행할 수 없습니다\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:382 ++#: ../src/daemon/abrt-auto-reporting.c:387 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP 인증 자동 보고" + +-#: ../src/daemon/abrt-auto-reporting.c:384 ++#: ../src/daemon/abrt-auto-reporting.c:389 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL 클라이언트 인증 자동 보고" + +-#: ../src/daemon/abrt-auto-reporting.c:386 ++#: ../src/daemon/abrt-auto-reporting.c:391 + msgid "anonymous auto reporting" + msgstr "익명으로 자동 보고" + +@@ -743,7 +743,7 @@ msgstr "%s 용 백트레이스 구문 분석 실패 " + msgid "Crash thread not found" + msgstr "충돌 스레드를 찾을 수 없습니다 " + +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -1900,34 +1900,34 @@ msgstr "비공개 보고서가 활성화되어 있습니다. 'abrt-cli -a COMMAN + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "보다 자세한 내용은 'abrt-cli COMMAND --help'에서 참조하십시오 " + +-#: ../src/cli/list.c:121 ++#: ../src/cli/list.c:124 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "%s 'abrt-cli report %s'를 실행하여 Red Hat 고객 포털에 기술 문의를 작성합니다 \n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:176 + msgid "& list [options]" + msgstr "& list [options]" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:185 + msgid "List only not-reported problems" + msgstr "보고되지 않는 문제만 나열합니다 " + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:184 ../src/cli/list.c:237 ++#: ../src/cli/list.c:187 ../src/cli/list.c:240 + msgid "Show detailed report" + msgstr "상세 보고를 표시합니다 " + +-#: ../src/cli/list.c:185 ++#: ../src/cli/list.c:188 + msgid "List only the problems more recent than specified timestamp" + msgstr "지정된 타임 스탬프 보다 최신의 문제만 나열 " + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:189 + msgid "List only the problems older than specified timestamp" + msgstr "지정된 타임 스탬프보다 오래된 문제만 나열합니다 " + +-#: ../src/cli/list.c:212 ++#: ../src/cli/list.c:215 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -1937,32 +1937,32 @@ msgstr "" + "자동보고 기능은 비활성화되어 있습니다. root 권한을 가진 사용자로\n" + "'abrt-auto-reporting enabled'를 실행하여 이를 활성화합니다\n" + +-#: ../src/cli/list.c:229 ++#: ../src/cli/list.c:232 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:238 ++#: ../src/cli/list.c:241 + msgid "Text larger than this will be shown abridged" + msgstr "이보다 더 큰 텍스트는 요약하여 표시됩니다" + +-#: ../src/cli/list.c:258 ++#: ../src/cli/list.c:261 + #, c-format + msgid "No such problem directory '%s'" + msgstr "이러한 문제 디렉토리 '%s'가 없음 " + +-#: ../src/cli/status.c:63 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "& status" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:74 + msgid "Print only the problem count without any message" + msgstr "아무 메세지를 표시하지 않고 문제의 건수만 출력 " + +-#: ../src/cli/status.c:72 ++#: ../src/cli/status.c:75 + msgid "Print only the problems more recent than specified timestamp" + msgstr "지정된 타임 스탬프 보다 최신의 문제만 출력" + +-#: ../src/cli/status.c:88 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" +diff --git a/po/pt_BR.po b/po/pt_BR.po +index 8309f5e..7a1098b 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -22,24 +22,22 @@ + # Taylon Silmer , 2011 + # Teseu , 2011 + # Vitor Lobo Ramos , 2014 +-# Gcintra , 2015. #zanata +-# Jakub Filak , 2015. #zanata +-# Jonatas Z. de Vasconcellos , 2015. #zanata ++# Daniel Lara , 2016. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-07-14 15:37+0200\n" ++"POT-Creation-Date: 2016-06-29 15:31+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-07-18 11:44-0400\n" +-"Last-Translator: Gcintra \n" ++"PO-Revision-Date: 2016-03-02 01:16-0500\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" + "fedora-abrt/language/pt_BR/)\n" + "Language: pt-BR\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.6.2\n" ++"X-Generator: Zanata 3.9.5\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -410,7 +408,7 @@ msgid "Quit" + msgstr "Sair" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:378 ++#: ../src/daemon/abrt-action-save-package-data.c:400 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -421,9 +419,9 @@ msgstr "" + "Analise o banco de dados do pacote e salve o pacote e nome do componente" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:412 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -433,13 +431,13 @@ msgid "Problem directory" + msgstr "Diretório do problema" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:391 ++#: ../src/daemon/abrt-action-save-package-data.c:413 + msgid "Configuration file" + msgstr "Arquivo de Configuração" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 + msgid "& [options]" + msgstr "& [options]" + +@@ -456,83 +454,83 @@ msgid "Log to syslog" + msgstr "Log para o syslog" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 + msgid "Add program names to log" + msgstr "Adicionar os nomes dos programas ao log" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:132 ++#: ../src/dbus/abrt-dbus.c:131 + msgid "Unknown error" + msgstr "Erro desconhecido" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:221 ++#: ../src/dbus/abrt-dbus.c:220 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' não é um diretório de problema válido" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:255 + #, c-format + msgid "'%s' element can't be modified" + msgstr "O '%s' não pode ser modificado" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 +-#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 +-#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:284 ../src/dbus/abrt-dbus.c:497 ++#: ../src/dbus/abrt-dbus.c:559 ../src/dbus/abrt-dbus.c:624 ++#: ../src/dbus/abrt-dbus.c:814 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Não Autorizado" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:298 ++#: ../src/dbus/abrt-dbus.c:297 + msgid "Can't access the problem for modification" + msgstr "Não é possível acessar o problema para modificação" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:514 ++#: ../src/dbus/abrt-dbus.c:513 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "" + "Erro ao mudar o dono do diretório. Verifique os logs do sistema para mais " + "detalhes." + + # translation auto-copied from project abrt, version master, document abrt, author Jonatas Z. de Vasconcellos +-#: ../src/dbus/abrt-dbus.c:635 ++#: ../src/dbus/abrt-dbus.c:634 + msgid "Can't access the problem for reading" + msgstr "Não é possível acessar o problema para leitura" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 +-#: ../src/dbus/abrt-dbus.c:911 ++#: ../src/dbus/abrt-dbus.c:689 ../src/dbus/abrt-dbus.c:754 ++#: ../src/dbus/abrt-dbus.c:910 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' não é um nome válido de elemento" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:711 ++#: ../src/dbus/abrt-dbus.c:710 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Não foi possível obter o tamanho de '%s'" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:726 ++#: ../src/dbus/abrt-dbus.c:725 + msgid "No problem space left" + msgstr "Nenhum problema de espaço." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:776 ++#: ../src/dbus/abrt-dbus.c:775 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Não é possível remover o elemento '%s' do diretório de problema '%s'" + +-#: ../src/dbus/abrt-dbus.c:803 ++#: ../src/dbus/abrt-dbus.c:802 + msgid "Can't access the problem" + msgstr "Não é possível acessar o problema " + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:986 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -542,18 +540,18 @@ msgstr "" + "nome não está em execução.\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:480 + msgid "Exit after NUM seconds of inactivity" + msgstr "Sai após os segundos NUM de inatividade" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1031 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "Este programa deve estar sendo executado como root." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:432 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -569,12 +567,12 @@ msgstr "" + "favor contacte-os diretamente." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:478 + msgid "Do not daemonize" + msgstr "Não criar um daemon" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:479 + msgid "Log to syslog even with -d" + msgstr "Registrar no syslog mesmo com o -d" + +@@ -634,71 +632,71 @@ msgstr "Tamanho máximo de cache em MiB. O padrão é" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-auto-reporting.c:200 +-#: ../src/daemon/abrt-auto-reporting.c:208 ++#: ../src/daemon/abrt-auto-reporting.c:213 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:235 ++#: ../src/daemon/abrt-auto-reporting.c:240 + msgid "Turns the authentication off" + msgstr "Desliga a Autenticação" + +-#: ../src/daemon/abrt-auto-reporting.c:236 ++#: ../src/daemon/abrt-auto-reporting.c:241 + msgid "Red Hat Support user name" + msgstr "Nome do usuário do Red Hat Support" + +-#: ../src/daemon/abrt-auto-reporting.c:237 ++#: ../src/daemon/abrt-auto-reporting.c:242 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Senha do Red Hat Support, caso não seja fornecida, será enviada uma " + "solicitação " + +-#: ../src/daemon/abrt-auto-reporting.c:238 ++#: ../src/daemon/abrt-auto-reporting.c:243 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Caminhos de certiifcado ou tipo de certificado do uReport SSL" + +-#: ../src/daemon/abrt-auto-reporting.c:254 ++#: ../src/daemon/abrt-auto-reporting.c:259 + msgid "You also need to specify --username for --password" + msgstr "Você também precisa especificar --username para --password" + +-#: ../src/daemon/abrt-auto-reporting.c:260 ++#: ../src/daemon/abrt-auto-reporting.c:265 + msgid "You can use either --username or --certificate" + msgstr "Você pode utilizar --username ou --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:266 ++#: ../src/daemon/abrt-auto-reporting.c:271 + msgid "You can use either --username or --anonymous" + msgstr "Você pode usar --username ou --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:272 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "You can use either --anonymous or --certificate" + msgstr "Você pode usar --anonymous ou --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:279 ++#: ../src/daemon/abrt-auto-reporting.c:284 + msgid "Invalid number of arguments" + msgstr "Número de argumentos é inválido" + +-#: ../src/daemon/abrt-auto-reporting.c:298 ++#: ../src/daemon/abrt-auto-reporting.c:303 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Valor de opção desconhecida: '%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:338 ++#: ../src/daemon/abrt-auto-reporting.c:343 + msgid "Password:" + msgstr "Senha:" + +-#: ../src/daemon/abrt-auto-reporting.c:341 ++#: ../src/daemon/abrt-auto-reporting.c:346 + msgid "Cannot continue without password\n" + msgstr "Não foi possível continuar sem uma senha\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:382 ++#: ../src/daemon/abrt-auto-reporting.c:387 + msgid "HTTP Authenticated auto reporting" + msgstr "Reportagem automática de HTTP autenticado" + +-#: ../src/daemon/abrt-auto-reporting.c:384 ++#: ../src/daemon/abrt-auto-reporting.c:389 + msgid "SSL Client Authenticated auto reporting" + msgstr "Reportagem automática de SSL Client autenticado" + +-#: ../src/daemon/abrt-auto-reporting.c:386 ++#: ../src/daemon/abrt-auto-reporting.c:391 + msgid "anonymous auto reporting" + msgstr "Reportagem automática anônima" + +@@ -882,7 +880,7 @@ msgid "Crash thread not found" + msgstr "Opção de travamento não foi encontrada" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -1320,7 +1318,7 @@ msgstr "Exceção aritmética" + + #: ../src/plugins/abrt-gdb-exploitable:637 + msgid "Division by zero" +-msgstr "Sivisão por zero" ++msgstr "Divisão por zero" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/plugins/abrt-gdb-exploitable:641 +@@ -2258,7 +2256,7 @@ msgstr "" + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "Ver 'abrt-cli COMMAND --help' para mais informações." + +-#: ../src/cli/list.c:121 ++#: ../src/cli/list.c:124 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -2266,33 +2264,33 @@ msgstr "" + "%sExecutar 'abrt-cli report %s' para criar um caso no Red Hat Customer " + "Portal\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:176 + msgid "& list [options]" + msgstr "& list [opções]" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:185 + msgid "List only not-reported problems" + msgstr "Listar somente os problemas não reportados" + + # translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:184 ../src/cli/list.c:237 ++#: ../src/cli/list.c:187 ../src/cli/list.c:240 + msgid "Show detailed report" + msgstr "Exibir relatório detalhado" + +-#: ../src/cli/list.c:185 ++#: ../src/cli/list.c:188 + msgid "List only the problems more recent than specified timestamp" + msgstr "" + "Listar apenas problemas mais recentes que o carimbo de data e hora " + "especificado" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:189 + msgid "List only the problems older than specified timestamp" + msgstr "" + "Listar apenas problemas mais recentes que o carimbo de data e hora " + "especificado" + +-#: ../src/cli/list.c:212 ++#: ../src/cli/list.c:215 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2304,36 +2302,36 @@ msgstr "" + "previlégios root.\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:229 ++#: ../src/cli/list.c:232 + msgid "& info [options] DIR..." + msgstr "& info [options] DIR..." + +-#: ../src/cli/list.c:238 ++#: ../src/cli/list.c:241 + msgid "Text larger than this will be shown abridged" + msgstr "Texto maior do que este será exibido abreviado" + +-#: ../src/cli/list.c:258 ++#: ../src/cli/list.c:261 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Não há tal diretório de problemas '%s'" + +-#: ../src/cli/status.c:63 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "& status" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:74 + msgid "Print only the problem count without any message" + msgstr "Mostrar apenas a contagem de problema sem mensagem" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:72 ++#: ../src/cli/status.c:75 + msgid "Print only the problems more recent than specified timestamp" + msgstr "" + "Mostrar apenas problemas mais recentes que a marca de tempo especificada" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:88 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" +diff --git a/po/ru.po b/po/ru.po +index cd56d9a..a9390da 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -18,7 +18,7 @@ msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-07-14 15:37+0200\n" ++"POT-Creation-Date: 2016-06-29 15:31+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -29,7 +29,7 @@ msgstr "" + "Language: ru\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.6.2\n" ++"X-Generator: Zanata 3.9.5\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -350,7 +350,7 @@ msgstr "О программе" + msgid "Quit" + msgstr "Выход" + +-#: ../src/daemon/abrt-action-save-package-data.c:378 ++#: ../src/daemon/abrt-action-save-package-data.c:400 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -360,9 +360,9 @@ msgstr "" + "\n" + "Сделать запрос к базе данных и сохранить название пакета и компонента" + +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:412 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -371,12 +371,12 @@ msgstr "" + msgid "Problem directory" + msgstr "Каталог с данными сбоя" + +-#: ../src/daemon/abrt-action-save-package-data.c:391 ++#: ../src/daemon/abrt-action-save-package-data.c:413 + msgid "Configuration file" + msgstr "Файл конфигурации" + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 + msgid "& [options]" + msgstr "& [параметры]" + +@@ -390,71 +390,71 @@ msgstr "Использовать NUM как uid клиента" + msgid "Log to syslog" + msgstr "Запись в журнал" + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 + msgid "Add program names to log" + msgstr "Добавить названия программ в журнал" + +-#: ../src/dbus/abrt-dbus.c:132 ++#: ../src/dbus/abrt-dbus.c:131 + msgid "Unknown error" + msgstr "Неизвестная ошибка" + +-#: ../src/dbus/abrt-dbus.c:221 ++#: ../src/dbus/abrt-dbus.c:220 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "Недопустимый каталог с данными сбоя: «%s»" + +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:255 + #, c-format + msgid "'%s' element can't be modified" + msgstr "Элемент «%s» не может быть изменен" + +-#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 +-#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 +-#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:284 ../src/dbus/abrt-dbus.c:497 ++#: ../src/dbus/abrt-dbus.c:559 ../src/dbus/abrt-dbus.c:624 ++#: ../src/dbus/abrt-dbus.c:814 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "Не разрешено" + +-#: ../src/dbus/abrt-dbus.c:298 ++#: ../src/dbus/abrt-dbus.c:297 + msgid "Can't access the problem for modification" + msgstr "Ошибка доступа к проблеме с целью ее изменения" + +-#: ../src/dbus/abrt-dbus.c:514 ++#: ../src/dbus/abrt-dbus.c:513 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "Не удалось изменить владельца каталога. Проверьте журналы." + + # translation auto-copied from project abrt, version master, document abrt, author Igor Gorbounov +-#: ../src/dbus/abrt-dbus.c:635 ++#: ../src/dbus/abrt-dbus.c:634 + msgid "Can't access the problem for reading" + msgstr "Не удается получить доступ к данным сбоя для чтения" + +-#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 +-#: ../src/dbus/abrt-dbus.c:911 ++#: ../src/dbus/abrt-dbus.c:689 ../src/dbus/abrt-dbus.c:754 ++#: ../src/dbus/abrt-dbus.c:910 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "Недопустимое имя элемента: «%s»" + +-#: ../src/dbus/abrt-dbus.c:711 ++#: ../src/dbus/abrt-dbus.c:710 + #, c-format + msgid "Can't get size of '%s'" + msgstr "Не удалось определить размер «%s»." + +-#: ../src/dbus/abrt-dbus.c:726 ++#: ../src/dbus/abrt-dbus.c:725 + msgid "No problem space left" + msgstr "Недостаточно места" + +-#: ../src/dbus/abrt-dbus.c:776 ++#: ../src/dbus/abrt-dbus.c:775 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "Ошибка удаления элемента «%s» из каталога «%s»" + + # translation auto-copied from project abrt, version master, document abrt, author Igor Gorbounov +-#: ../src/dbus/abrt-dbus.c:803 ++#: ../src/dbus/abrt-dbus.c:802 + msgid "Can't access the problem" + msgstr "Не удается получить доступ к данным сбоя" + +-#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:986 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -463,17 +463,17 @@ msgstr "" + "Имя «%s» было потеряно, проверьте, не работает ли другая служба, " + "использующая это имя.\n" + +-#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:480 + msgid "Exit after NUM seconds of inactivity" + msgstr "Выйти после NUM секунд бездействия" + +-#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1031 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "" + "Эта программа должна запускаться от имени привелигированного пользователя." + +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:432 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -487,11 +487,11 @@ msgstr "" + "об этой ошибке. Если у вас есть время, и вы хотите помочь разработчикам в их " + "усилиях разобраться с этим сбоем, связывайтесь с ними напрямую." + +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:478 + msgid "Do not daemonize" + msgstr "Не выполнять как службу" + +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:479 + msgid "Log to syslog even with -d" + msgstr "Запись в журнал даже с -d" + +@@ -546,71 +546,71 @@ msgid "Maximal cache size in MiB. Default is " + msgstr "Максимальный размер кэша в МиБ. По умолчанию:" + + #: ../src/daemon/abrt-auto-reporting.c:200 +-#: ../src/daemon/abrt-auto-reporting.c:208 ++#: ../src/daemon/abrt-auto-reporting.c:213 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:235 ++#: ../src/daemon/abrt-auto-reporting.c:240 + msgid "Turns the authentication off" + msgstr "Отключает аутентификацию" + +-#: ../src/daemon/abrt-auto-reporting.c:236 ++#: ../src/daemon/abrt-auto-reporting.c:241 + msgid "Red Hat Support user name" + msgstr "Имя пользователя в системе поддержки Red Hat" + +-#: ../src/daemon/abrt-auto-reporting.c:237 ++#: ../src/daemon/abrt-auto-reporting.c:242 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "" + "Пароль доступа к системе поддержки Red Hat. Если не указан, будет предложено " + "его ввести вручную" + +-#: ../src/daemon/abrt-auto-reporting.c:238 ++#: ../src/daemon/abrt-auto-reporting.c:243 + msgid "uReport SSL certificate paths or certificate type" + msgstr "Путь к SSL-сертификату uReport или тип сертификата" + +-#: ../src/daemon/abrt-auto-reporting.c:254 ++#: ../src/daemon/abrt-auto-reporting.c:259 + msgid "You also need to specify --username for --password" + msgstr "Если пароль задан, необходимо определить --username" + +-#: ../src/daemon/abrt-auto-reporting.c:260 ++#: ../src/daemon/abrt-auto-reporting.c:265 + msgid "You can use either --username or --certificate" + msgstr "Укажите --username или --certificate " + +-#: ../src/daemon/abrt-auto-reporting.c:266 ++#: ../src/daemon/abrt-auto-reporting.c:271 + msgid "You can use either --username or --anonymous" + msgstr "Укажите --username или --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:272 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "You can use either --anonymous or --certificate" + msgstr "Укажите --anonymous или --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:279 ++#: ../src/daemon/abrt-auto-reporting.c:284 + msgid "Invalid number of arguments" + msgstr "Недопустимое число аргументов" + +-#: ../src/daemon/abrt-auto-reporting.c:298 ++#: ../src/daemon/abrt-auto-reporting.c:303 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "Неизвестное значение: «%s»\n" + +-#: ../src/daemon/abrt-auto-reporting.c:338 ++#: ../src/daemon/abrt-auto-reporting.c:343 + msgid "Password:" + msgstr "Пароль:" + +-#: ../src/daemon/abrt-auto-reporting.c:341 ++#: ../src/daemon/abrt-auto-reporting.c:346 + msgid "Cannot continue without password\n" + msgstr "Для продолжения необходимо ввести пароль.\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:382 ++#: ../src/daemon/abrt-auto-reporting.c:387 + msgid "HTTP Authenticated auto reporting" + msgstr "Автоматический отчет для HTTP-подключений" + +-#: ../src/daemon/abrt-auto-reporting.c:384 ++#: ../src/daemon/abrt-auto-reporting.c:389 + msgid "SSL Client Authenticated auto reporting" + msgstr "Автоматический отчет для SSL-подключений" + +-#: ../src/daemon/abrt-auto-reporting.c:386 ++#: ../src/daemon/abrt-auto-reporting.c:391 + msgid "anonymous auto reporting" + msgstr "Автоматический отчет для анонимных подключений" + +@@ -783,7 +783,7 @@ msgstr "Ошибка разбора протокола сбоя %s" + msgid "Crash thread not found" + msgstr "Поток сбоя не найден" + +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -1995,7 +1995,7 @@ msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "" + "Для получения дополнительной информации выполните «abrt-cli КОМАНДА --help»" + +-#: ../src/cli/list.c:121 ++#: ../src/cli/list.c:124 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +@@ -2004,28 +2004,28 @@ msgstr "" + "пользователей Red Hat\n" + + # translation auto-copied from project abrt, version master, document abrt, author Igor Gorbounov +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:176 + msgid "& list [options]" + msgstr "& list [параметры]" + +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:185 + msgid "List only not-reported problems" + msgstr "Показать ошибки, о которых еще не сообщалось" + + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:184 ../src/cli/list.c:237 ++#: ../src/cli/list.c:187 ../src/cli/list.c:240 + msgid "Show detailed report" + msgstr "Показать подробный отчёт" + +-#: ../src/cli/list.c:185 ++#: ../src/cli/list.c:188 + msgid "List only the problems more recent than specified timestamp" + msgstr "Дать список сбоев, обнаруженных после указанного момента времени" + +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:189 + msgid "List only the problems older than specified timestamp" + msgstr "Дать список сбоев, обнаруженных до указанного момента времени" + +-#: ../src/cli/list.c:212 ++#: ../src/cli/list.c:215 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2035,33 +2035,33 @@ msgstr "" + "Функции автоматического создания отчетов отключены. \n" + "Чтобы их включить, в режиме root выполните: abrt-auto-reporting enabled\n" + +-#: ../src/cli/list.c:229 ++#: ../src/cli/list.c:232 + msgid "& info [options] DIR..." + msgstr "& info [параметры] DIR..." + +-#: ../src/cli/list.c:238 ++#: ../src/cli/list.c:241 + msgid "Text larger than this will be shown abridged" + msgstr "Текст, длина которого превышает указанную, будет усечен" + +-#: ../src/cli/list.c:258 ++#: ../src/cli/list.c:261 + #, c-format + msgid "No such problem directory '%s'" + msgstr "Нет такого каталога: «%s»." + + # translation auto-copied from project abrt, version master, document abrt, author Igor Gorbounov +-#: ../src/cli/status.c:63 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "& status" + +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:74 + msgid "Print only the problem count without any message" + msgstr "Вывод только числа сбоев" + +-#: ../src/cli/status.c:72 ++#: ../src/cli/status.c:75 + msgid "Print only the problems more recent than specified timestamp" + msgstr "Вывод сбоев, обнаруженных после указанного момента времени" + +-#: ../src/cli/status.c:88 ++#: ../src/cli/status.c:91 + #, c-format + msgid "ABRT has detected %u problem(s). For more info run: abrt-cli list%s\n" + msgstr "" +diff --git a/po/zh_CN.po b/po/zh_CN.po +index f848292..d66dbb8 100644 +--- a/po/zh_CN.po ++++ b/po/zh_CN.po +@@ -15,26 +15,27 @@ + # yusuf , 2011 + # Zamir SUN , 2013 + # Leah Liu , 2015. #zanata ++# Alex Eng , 2016. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-07-14 15:37+0200\n" ++"POT-Creation-Date: 2016-06-29 15:31+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-07-17 08:20-0400\n" +-"Last-Translator: Leah Liu \n" ++"PO-Revision-Date: 2016-05-24 01:05-0400\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora-" + "abrt/language/zh_CN/)\n" + "Language: zh-CN\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.6.2\n" ++"X-Generator: Zanata 3.9.5\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +-msgstr "错误自动报告工具" ++msgstr "错误自动报告工具 alex" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:2 +@@ -370,7 +371,7 @@ msgid "Quit" + msgstr "退出" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:378 ++#: ../src/daemon/abrt-action-save-package-data.c:400 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -380,9 +381,9 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n" + "查询软件包数据库并保存软件包和组件名称" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:412 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -392,13 +393,13 @@ msgid "Problem directory" + msgstr "问题目录" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:391 ++#: ../src/daemon/abrt-action-save-package-data.c:413 + msgid "Configuration file" + msgstr "配置文件" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 + msgid "& [options]" + msgstr "& [options]" + +@@ -415,80 +416,80 @@ msgid "Log to syslog" + msgstr "记录至 syslog" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 + msgid "Add program names to log" + msgstr "在日志中添加程序名" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:132 ++#: ../src/dbus/abrt-dbus.c:131 + msgid "Unknown error" + msgstr "未知错误" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:221 ++#: ../src/dbus/abrt-dbus.c:220 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "'%s' 不是有效的问题目录" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:255 + #, c-format + msgid "'%s' element can't be modified" + msgstr "无法修改 '%s' 元素" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 +-#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 +-#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:284 ../src/dbus/abrt-dbus.c:497 ++#: ../src/dbus/abrt-dbus.c:559 ../src/dbus/abrt-dbus.c:624 ++#: ../src/dbus/abrt-dbus.c:814 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "未授权" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:298 ++#: ../src/dbus/abrt-dbus.c:297 + msgid "Can't access the problem for modification" + msgstr "无法访问该问题进行修改" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:514 ++#: ../src/dbus/abrt-dbus.c:513 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "变更目录属主失败。请检查系统日志以了解更多。" + +-#: ../src/dbus/abrt-dbus.c:635 ++#: ../src/dbus/abrt-dbus.c:634 + msgid "Can't access the problem for reading" + msgstr "无法访问该问题进行读取" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 +-#: ../src/dbus/abrt-dbus.c:911 ++#: ../src/dbus/abrt-dbus.c:689 ../src/dbus/abrt-dbus.c:754 ++#: ../src/dbus/abrt-dbus.c:910 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "'%s' 不是一个有效的元素名" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:711 ++#: ../src/dbus/abrt-dbus.c:710 + #, c-format + msgid "Can't get size of '%s'" + msgstr "无法获取 '%s' 的大小" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:726 ++#: ../src/dbus/abrt-dbus.c:725 + msgid "No problem space left" + msgstr "没有留出问题空间" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:776 ++#: ../src/dbus/abrt-dbus.c:775 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "无法从问题目录 '%s' 中删除元素 '%s'" + +-#: ../src/dbus/abrt-dbus.c:803 ++#: ../src/dbus/abrt-dbus.c:802 + msgid "Can't access the problem" + msgstr "无法访问该问题" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:986 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -496,18 +497,18 @@ msgid "" + msgstr "名称 '%s' 已丢失,请检查其它拥有该名称的服务是否未运行。\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:480 + msgid "Exit after NUM seconds of inactivity" + msgstr "闲置 NUM 秒后退出" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1031 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "此程序必须以 root 权限运行。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:432 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -519,12 +520,12 @@ msgstr "" + "将不允许您提交该问题。如果您有时间想帮助开发者找出问题的根源,请直接与他们联系。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:478 + msgid "Do not daemonize" + msgstr "不要在后台运行" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:479 + msgid "Log to syslog even with -d" + msgstr "即使加入 -d 选项也记录至 syslog" + +@@ -587,70 +588,70 @@ msgstr "以 MiB 计最大缓存尺寸。默认为" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-auto-reporting.c:200 +-#: ../src/daemon/abrt-auto-reporting.c:208 ++#: ../src/daemon/abrt-auto-reporting.c:213 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:235 ++#: ../src/daemon/abrt-auto-reporting.c:240 + msgid "Turns the authentication off" + msgstr "关闭认证" + +-#: ../src/daemon/abrt-auto-reporting.c:236 ++#: ../src/daemon/abrt-auto-reporting.c:241 + msgid "Red Hat Support user name" + msgstr "Red Hat 支持用户名" + +-#: ../src/daemon/abrt-auto-reporting.c:237 ++#: ../src/daemon/abrt-auto-reporting.c:242 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat 支持密码,如果不输入密码则会有提示。" + +-#: ../src/daemon/abrt-auto-reporting.c:238 ++#: ../src/daemon/abrt-auto-reporting.c:243 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL 证书路径或者证书类型" + +-#: ../src/daemon/abrt-auto-reporting.c:254 ++#: ../src/daemon/abrt-auto-reporting.c:259 + msgid "You also need to specify --username for --password" + msgstr "您还需要为 --password 指定 --username" + +-#: ../src/daemon/abrt-auto-reporting.c:260 ++#: ../src/daemon/abrt-auto-reporting.c:265 + msgid "You can use either --username or --certificate" + msgstr "您可以使用 --username 或者 --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:266 ++#: ../src/daemon/abrt-auto-reporting.c:271 + msgid "You can use either --username or --anonymous" + msgstr "您可以使用 --username 或者 --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:272 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "You can use either --anonymous or --certificate" + msgstr "您可以使用 --anonymous 或者 --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:279 ++#: ../src/daemon/abrt-auto-reporting.c:284 + msgid "Invalid number of arguments" + msgstr "无效参数值" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-auto-reporting.c:298 ++#: ../src/daemon/abrt-auto-reporting.c:303 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "未知选项值:'%s'\n" + +-#: ../src/daemon/abrt-auto-reporting.c:338 ++#: ../src/daemon/abrt-auto-reporting.c:343 + msgid "Password:" + msgstr "密码:" + +-#: ../src/daemon/abrt-auto-reporting.c:341 ++#: ../src/daemon/abrt-auto-reporting.c:346 + msgid "Cannot continue without password\n" + msgstr "需要密码才可继续\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:382 ++#: ../src/daemon/abrt-auto-reporting.c:387 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP 认证的自动报告" + +-#: ../src/daemon/abrt-auto-reporting.c:384 ++#: ../src/daemon/abrt-auto-reporting.c:389 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL 客户端认证的自动报告" + +-#: ../src/daemon/abrt-auto-reporting.c:386 ++#: ../src/daemon/abrt-auto-reporting.c:391 + msgid "anonymous auto reporting" + msgstr "匿名自动报告" + +@@ -831,7 +832,7 @@ msgid "Crash thread not found" + msgstr "崩溃线程" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -2164,38 +2165,38 @@ msgstr "启用专用报告,使用 'abrt-cli -a COMMAND' 获取探测到的问 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "详情请查看 'abrt-cli COMMAND --help'" + +-#: ../src/cli/list.c:121 ++#: ../src/cli/list.c:124 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "%s 运行 'abrt-cli report %s' 在 Red Hat 客户门户网站中创建问题单\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:176 + msgid "& list [options]" + msgstr "& list [选项]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:185 + msgid "List only not-reported problems" + msgstr "只列出未报告的问题" + + # translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:184 ../src/cli/list.c:237 ++#: ../src/cli/list.c:187 ../src/cli/list.c:240 + msgid "Show detailed report" + msgstr "显示详细报告" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:185 ++#: ../src/cli/list.c:188 + msgid "List only the problems more recent than specified timestamp" + msgstr "仅列出比指定时间更晚的问题" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:189 + msgid "List only the problems older than specified timestamp" + msgstr "仅列出比指定时间戳更早的问题" + +-#: ../src/cli/list.c:212 ++#: ../src/cli/list.c:215 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2206,37 +2207,37 @@ msgstr "" + "作为有 root 特权的用户使用命令 'abrt-auto-reporting enabled'\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:229 ++#: ../src/cli/list.c:232 + msgid "& info [options] DIR..." + msgstr "& info [选项] DIR..." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:238 ++#: ../src/cli/list.c:241 + msgid "Text larger than this will be shown abridged" + msgstr "超出此大小的文字会在显示时被删节" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:258 ++#: ../src/cli/list.c:261 + #, c-format + msgid "No such problem directory '%s'" + msgstr "没有问题目录 '%s'" + +-#: ../src/cli/status.c:63 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "& status" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:74 + msgid "Print only the problem count without any message" + msgstr "仅显示问题计数。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:72 ++#: ../src/cli/status.c:75 + msgid "Print only the problems more recent than specified timestamp" + msgstr "仅显示比指定时间更晚的问题。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:88 ++#: ../src/cli/status.c:91 + #, 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" +diff --git a/po/zh_TW.po b/po/zh_TW.po +index 75e83e6..e93a848 100644 +--- a/po/zh_TW.po ++++ b/po/zh_TW.po +@@ -6,13 +6,13 @@ + # Chester Cheng , 2012,2014 + # Jiří Moskovčák , 2011 + # Terry Chuang , 2014 +-# Chester Cheng , 2015. #zanata ++# Chester Cheng , 2015. #zanata + # Terry Chuang , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2015-07-14 15:37+0200\n" ++"POT-Creation-Date: 2016-06-29 15:31+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +@@ -22,7 +22,7 @@ msgstr "" + "abrt/language/zh_TW/)\n" + "Language: zh-TW\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.6.2\n" ++"X-Generator: Zanata 3.9.5\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -371,7 +371,7 @@ msgid "Quit" + msgstr "退出" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:378 ++#: ../src/daemon/abrt-action-save-package-data.c:400 + msgid "" + "& [-v] [-c CONFFILE] -d DIR\n" + "\n" +@@ -381,9 +381,9 @@ msgstr "& [-v] [-c CONFFILE] -d DIR\n" + "查詢軟體包資料庫,並儲存軟體包與元件名稱" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:390 ++#: ../src/daemon/abrt-action-save-package-data.c:412 + #: ../src/plugins/abrt-action-analyze-backtrace.c:53 +-#: ../src/plugins/abrt-action-analyze-c.c:78 ++#: ../src/plugins/abrt-action-analyze-c.c:141 + #: ../src/plugins/abrt-action-analyze-oops.c:48 + #: ../src/plugins/abrt-action-analyze-xorg.c:84 + #: ../src/plugins/abrt-action-analyze-python.c:47 +@@ -393,13 +393,13 @@ msgid "Problem directory" + msgstr "問題目錄" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-action-save-package-data.c:391 ++#: ../src/daemon/abrt-action-save-package-data.c:413 + msgid "Configuration file" + msgstr "組態檔" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1001 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:484 ++#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 + msgid "& [options]" + msgstr "& [選項]" + +@@ -416,81 +416,81 @@ msgid "Log to syslog" + msgstr "紀錄至 syslog" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:500 ++#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 + msgid "Add program names to log" + msgstr "加入程式名稱至紀錄檔" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:132 ++#: ../src/dbus/abrt-dbus.c:131 + msgid "Unknown error" + msgstr "未知錯誤" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:221 ++#: ../src/dbus/abrt-dbus.c:220 + #, c-format + msgid "'%s' is not a valid problem directory" + msgstr "「%s」不是有效的問題目錄" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:256 ++#: ../src/dbus/abrt-dbus.c:255 + #, c-format + msgid "'%s' element can't be modified" + msgstr "無法修改「%s」元素" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:285 ../src/dbus/abrt-dbus.c:498 +-#: ../src/dbus/abrt-dbus.c:560 ../src/dbus/abrt-dbus.c:625 +-#: ../src/dbus/abrt-dbus.c:815 ../src/dbus/abrt-configuration.c:618 ++#: ../src/dbus/abrt-dbus.c:284 ../src/dbus/abrt-dbus.c:497 ++#: ../src/dbus/abrt-dbus.c:559 ../src/dbus/abrt-dbus.c:624 ++#: ../src/dbus/abrt-dbus.c:814 ../src/dbus/abrt-configuration.c:618 + #: ../src/dbus/abrt-configuration.c:683 + #, c-format + msgid "Not Authorized" + msgstr "未授權" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:298 ++#: ../src/dbus/abrt-dbus.c:297 + msgid "Can't access the problem for modification" + msgstr "無法存取問題以修改" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:514 ++#: ../src/dbus/abrt-dbus.c:513 + msgid "Chowning directory failed. Check system logs for more details." + msgstr "目錄擁有者變更失敗。請檢查紀錄檔瞭解更多細節。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:635 ++#: ../src/dbus/abrt-dbus.c:634 + msgid "Can't access the problem for reading" + msgstr "無法存取問題以閱讀" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:690 ../src/dbus/abrt-dbus.c:755 +-#: ../src/dbus/abrt-dbus.c:911 ++#: ../src/dbus/abrt-dbus.c:689 ../src/dbus/abrt-dbus.c:754 ++#: ../src/dbus/abrt-dbus.c:910 + #, c-format + msgid "'%s' is not a valid element name" + msgstr "「%s」不是有效的元素名稱" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:711 ++#: ../src/dbus/abrt-dbus.c:710 + #, c-format + msgid "Can't get size of '%s'" + msgstr "無法取得「%s」的大小" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:726 ++#: ../src/dbus/abrt-dbus.c:725 + msgid "No problem space left" + msgstr "無剩餘問題空間" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:776 ++#: ../src/dbus/abrt-dbus.c:775 + #, c-format + msgid "Can't delete the element '%s' from the problem directory '%s'" + msgstr "無法從問題目錄「%2$s」刪除「%1$s」元素" + +-#: ../src/dbus/abrt-dbus.c:803 ++#: ../src/dbus/abrt-dbus.c:802 + msgid "Can't access the problem" + msgstr "無法存取問題" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:983 ../src/dbus/abrt-configuration.c:983 ++#: ../src/dbus/abrt-dbus.c:986 ../src/dbus/abrt-configuration.c:983 + #, c-format + msgid "" + "The name '%s' has been lost, please check if other service owning the name " +@@ -498,18 +498,18 @@ msgid "" + msgstr "「%s」名稱已遺失,請確認其他擁有該名稱的服務並未執行中。\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:1010 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:499 ++#: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 ++#: ../src/daemon/abrtd.c:480 + msgid "Exit after NUM seconds of inactivity" + msgstr "在停止使用 NUM 秒後離開" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/dbus/abrt-dbus.c:1028 ../src/dbus/abrt-configuration.c:1021 ++#: ../src/dbus/abrt-dbus.c:1031 ../src/dbus/abrt-configuration.c:1021 + msgid "This program must be run as root." + msgstr "此程式必須以 root 身份執行。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:451 ++#: ../src/daemon/abrtd.c:432 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -521,12 +521,12 @@ msgstr "" + "不會允許您提交此種問題報告。若您有時間,且也想幫助開發者來處理此問題,請直接聯繫開發者。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:497 ++#: ../src/daemon/abrtd.c:478 + msgid "Do not daemonize" + msgstr "不要在幕後運行" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:498 ++#: ../src/daemon/abrtd.c:479 + msgid "Log to syslog even with -d" + msgstr "即使加上 -d 參數也紀錄至 syslog" + +@@ -589,69 +589,69 @@ msgstr "最大快取大小,單位為 MiB。預設為 " + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/daemon/abrt-auto-reporting.c:200 +-#: ../src/daemon/abrt-auto-reporting.c:208 ++#: ../src/daemon/abrt-auto-reporting.c:213 + msgid "& [ " + msgstr "& [ " + +-#: ../src/daemon/abrt-auto-reporting.c:235 ++#: ../src/daemon/abrt-auto-reporting.c:240 + msgid "Turns the authentication off" + msgstr "關閉身份認證" + +-#: ../src/daemon/abrt-auto-reporting.c:236 ++#: ../src/daemon/abrt-auto-reporting.c:241 + msgid "Red Hat Support user name" + msgstr "Red Hat Support 使用者名稱" + +-#: ../src/daemon/abrt-auto-reporting.c:237 ++#: ../src/daemon/abrt-auto-reporting.c:242 + msgid "Red Hat Support password, if not given, a prompt for it will be issued" + msgstr "Red Hat Support 密碼;如果未提供密碼,將會發出提示" + +-#: ../src/daemon/abrt-auto-reporting.c:238 ++#: ../src/daemon/abrt-auto-reporting.c:243 + msgid "uReport SSL certificate paths or certificate type" + msgstr "uReport SSL 憑證路徑或憑證類型" + +-#: ../src/daemon/abrt-auto-reporting.c:254 ++#: ../src/daemon/abrt-auto-reporting.c:259 + msgid "You also need to specify --username for --password" + msgstr "使用 --password 時必須指定 --username" + +-#: ../src/daemon/abrt-auto-reporting.c:260 ++#: ../src/daemon/abrt-auto-reporting.c:265 + msgid "You can use either --username or --certificate" + msgstr "您可以使用 --username 或 --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:266 ++#: ../src/daemon/abrt-auto-reporting.c:271 + msgid "You can use either --username or --anonymous" + msgstr "您可以使用 --username 或 --anonymous" + +-#: ../src/daemon/abrt-auto-reporting.c:272 ++#: ../src/daemon/abrt-auto-reporting.c:277 + msgid "You can use either --anonymous or --certificate" + msgstr "您可以使用 --anonymous 或 --certificate" + +-#: ../src/daemon/abrt-auto-reporting.c:279 ++#: ../src/daemon/abrt-auto-reporting.c:284 + msgid "Invalid number of arguments" + msgstr "引數數量無效" + +-#: ../src/daemon/abrt-auto-reporting.c:298 ++#: ../src/daemon/abrt-auto-reporting.c:303 + #, c-format + msgid "Unknown option value: '%s'\n" + msgstr "選項值不明:「%s」\n" + +-#: ../src/daemon/abrt-auto-reporting.c:338 ++#: ../src/daemon/abrt-auto-reporting.c:343 + msgid "Password:" + msgstr "密碼:" + +-#: ../src/daemon/abrt-auto-reporting.c:341 ++#: ../src/daemon/abrt-auto-reporting.c:346 + msgid "Cannot continue without password\n" + msgstr "沒有密碼無法繼續\n" + + #. Print only the part before ':' of a string like "username:password" +-#: ../src/daemon/abrt-auto-reporting.c:382 ++#: ../src/daemon/abrt-auto-reporting.c:387 + msgid "HTTP Authenticated auto reporting" + msgstr "HTTP 身份認證自動回報" + +-#: ../src/daemon/abrt-auto-reporting.c:384 ++#: ../src/daemon/abrt-auto-reporting.c:389 + msgid "SSL Client Authenticated auto reporting" + msgstr "SSL 用戶端身份憑證自動回報" + +-#: ../src/daemon/abrt-auto-reporting.c:386 ++#: ../src/daemon/abrt-auto-reporting.c:391 + msgid "anonymous auto reporting" + msgstr "匿名自動回報" + +@@ -831,7 +831,7 @@ msgid "Crash thread not found" + msgstr "沒有找到崩潰執行序" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-action-analyze-c.c:67 ++#: ../src/plugins/abrt-action-analyze-c.c:130 + msgid "" + "& [-v] -d DIR\n" + "\n" +@@ -2165,38 +2165,38 @@ msgstr "已啟用私密報告,請使用 'abrt-cli -a COMMAND' 以取得偵測 + msgid "See 'abrt-cli COMMAND --help' for more information" + msgstr "請見 'abrt-cli COMMAND --help' 以瞭解更多資訊" + +-#: ../src/cli/list.c:121 ++#: ../src/cli/list.c:124 + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "%s執行 'abrt-cli report %s' 以在 Red Hat 客戶入口網站中建立案例\n" + +-#: ../src/cli/list.c:173 ++#: ../src/cli/list.c:176 + msgid "& list [options]" + msgstr "& list [options]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:182 ++#: ../src/cli/list.c:185 + msgid "List only not-reported problems" + msgstr "僅列出尚未回報的問題" + + # translation auto-copied from project abrt, version master, document abrt + #. deprecate -d option with --pretty=full +-#: ../src/cli/list.c:184 ../src/cli/list.c:237 ++#: ../src/cli/list.c:187 ../src/cli/list.c:240 + msgid "Show detailed report" + msgstr "顯示詳細的回報" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:185 ++#: ../src/cli/list.c:188 + msgid "List only the problems more recent than specified timestamp" + msgstr "僅列出比指定的時間戳記更近期的問題" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:186 ++#: ../src/cli/list.c:189 + msgid "List only the problems older than specified timestamp" + msgstr "僅列出比指定的時間戳記更之前的問題" + +-#: ../src/cli/list.c:212 ++#: ../src/cli/list.c:215 + #, c-format + msgid "" + "The Autoreporting feature is disabled. Please consider enabling it by " +@@ -2207,37 +2207,37 @@ msgstr "" + "身份,透過「abrt-auto-reporting enabled」 來啟用它\n" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:229 ++#: ../src/cli/list.c:232 + msgid "& info [options] DIR..." + msgstr "& info [選項] DIR..." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:238 ++#: ../src/cli/list.c:241 + msgid "Text larger than this will be shown abridged" + msgstr "大於此的文字會刪減顯示" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/list.c:258 ++#: ../src/cli/list.c:261 + #, c-format + msgid "No such problem directory '%s'" + msgstr "沒有這個問題目錄「%s」" + +-#: ../src/cli/status.c:63 ++#: ../src/cli/status.c:66 + msgid "& status" + msgstr "& status" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:71 ++#: ../src/cli/status.c:74 + msgid "Print only the problem count without any message" + msgstr "僅列印問題數目而不帶任何訊息" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:72 ++#: ../src/cli/status.c:75 + msgid "Print only the problems more recent than specified timestamp" + msgstr "僅列印比指定的時間戳記更近期的問題" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/cli/status.c:88 ++#: ../src/cli/status.c:91 + #, 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" +-- +1.8.3.1 + diff --git a/SOURCES/0258-lib-don-t-expect-kernel-s-version-2.6.-or-3.patch b/SOURCES/0258-lib-don-t-expect-kernel-s-version-2.6.-or-3.patch new file mode 100644 index 0000000..3330f04 --- /dev/null +++ b/SOURCES/0258-lib-don-t-expect-kernel-s-version-2.6.-or-3.patch @@ -0,0 +1,91 @@ +From 333f0a462446edf67253a38ee1c194a4a44b411a Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 30 Mar 2015 15:30:32 +0200 +Subject: [PATCH] lib: don't expect kernel's version '2.6.*' or '3.*.*' + +The function parsing kernel's version was expecting one of the strings +mentioned in Summary. Unfortunately, none of them appears in oopses for +kernel-4.*.* + +I am not sure why the previous version didn't search for 'kernel-' +string, but I hope the previous authors know the reason. I can only +guess that 'kernel-' string is not always present, so I must not use it +in this commit. Hence, this commit switches to search by a regular +expression where I want to match a version string "\d.\d.\d" with +expectation of a release string in form of "-[^ )]+". + +Resolves #1378469 + +Signed-off-by: Jakub Filak +--- + src/lib/kernel.c | 44 ++++++++++++++++++++++++++++++++++---------- + 1 file changed, 34 insertions(+), 10 deletions(-) + +diff --git a/src/lib/kernel.c b/src/lib/kernel.c +index 799463d..4e27d05 100644 +--- a/src/lib/kernel.c ++++ b/src/lib/kernel.c +@@ -19,6 +19,8 @@ + #include + #include + ++#include ++ + #define _GNU_SOURCE 1 /* for strcasestr */ + #include "libabrt.h" + +@@ -532,19 +534,41 @@ char *koops_extract_version(const char *linepointer) + || strstr(linepointer, "REGS") + || strstr(linepointer, "EFLAGS") + ) { +- char* start; +- char* end; ++ const char *regexp = "([0-9]+\\.[0-9]+\\.[0-9]+-[^ \\)]+)[ \\)]"; ++ regex_t re; ++ int r = regcomp(&re, regexp, REG_EXTENDED); ++ if (r != 0) ++ { ++ char buf[LINE_MAX]; ++ regerror(r, &re, buf, sizeof(buf)); ++ error_msg("BUG: invalid kernel version regexp: %s", buf); ++ return NULL; ++ } + +- start = strstr(linepointer, "2.6."); +- if (!start) +- start = strstr(linepointer, "3."); +- if (start) ++ regmatch_t matchptr[2]; ++ r = regexec(&re, linepointer, 2, matchptr, 0); ++ if (r != 0) + { +- end = strchr(start, ')'); +- if (!end) +- end = strchrnul(start, ' '); +- return xstrndup(start, end-start); ++ if (r != REG_NOMATCH) ++ { ++ char buf[LINE_MAX]; ++ regerror(r, &re, buf, sizeof(buf)); ++ error_msg("BUG: kernel version regexp failed: %s", buf); ++ } ++ else ++ { ++ log_debug("A kernel version candidate line didn't match kernel oops regexp:"); ++ log_debug("\t'%s'", linepointer); ++ } ++ ++ regfree(&re); ++ return NULL; + } ++ ++ char *ret = xstrndup(linepointer + matchptr[1].rm_so, matchptr[1].rm_eo - matchptr[1].rm_so); ++ ++ regfree(&re); ++ return ret; + } + + return NULL; +-- +1.8.3.1 + diff --git a/SOURCES/0259-koops-do-not-assume-version-has-3-levels.patch b/SOURCES/0259-koops-do-not-assume-version-has-3-levels.patch new file mode 100644 index 0000000..c651176 --- /dev/null +++ b/SOURCES/0259-koops-do-not-assume-version-has-3-levels.patch @@ -0,0 +1,67 @@ +From adb5eabda368cdd05e9ed02cf91ce5e02bc26e0b Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 25 May 2016 13:35:28 +0200 +Subject: [PATCH] koops: do not assume version has 3 levels + +Correct commit 9023d77ad5539433146b59e5ac80e3cefcb20cf7 + +Some ancient kernel versions have 4 levels. This commit allows version +string to have any level equal or greater than 3. The first 3 levels +must be numbers and the rest can be almost anything - it just must +follow the logical structure of levels (i.e. dot something dot +something) - this should allow a git hash in the version string. + +In order to eliminate possible false positives introduced by the +flexibility of version levels the commit adds checks for +the prefixes ' ', '(' or 'kernel-' and the suffix ' #' or ') #'. + +Resolves #1378469 + +Signed-off-by: Jakub Filak +--- + src/lib/kernel.c | 15 +++++++++++---- + 1 file changed, 11 insertions(+), 4 deletions(-) + +diff --git a/src/lib/kernel.c b/src/lib/kernel.c +index 4e27d05..1a9d327 100644 +--- a/src/lib/kernel.c ++++ b/src/lib/kernel.c +@@ -534,7 +534,10 @@ char *koops_extract_version(const char *linepointer) + || strstr(linepointer, "REGS") + || strstr(linepointer, "EFLAGS") + ) { +- const char *regexp = "([0-9]+\\.[0-9]+\\.[0-9]+-[^ \\)]+)[ \\)]"; ++ /* "(4.7.0-2.x86_64.fc25) #" */ ++ /* " 4.7.0-2.x86_64.fc25 #" */ ++ /* " 2.6.3.4.5-2.x86_64.fc22 #" */ ++ const char *regexp = "([ \\(]|kernel-)([0-9]+\\.[0-9]+\\.[0-9]+(\\.[^.-]+)*-[^ \\)]+)\\)? #"; + regex_t re; + int r = regcomp(&re, regexp, REG_EXTENDED); + if (r != 0) +@@ -545,8 +548,8 @@ char *koops_extract_version(const char *linepointer) + return NULL; + } + +- regmatch_t matchptr[2]; +- r = regexec(&re, linepointer, 2, matchptr, 0); ++ regmatch_t matchptr[3]; ++ r = regexec(&re, linepointer, sizeof(matchptr)/sizeof(matchptr[0]), matchptr, 0); + if (r != 0) + { + if (r != REG_NOMATCH) +@@ -565,7 +568,11 @@ char *koops_extract_version(const char *linepointer) + return NULL; + } + +- char *ret = xstrndup(linepointer + matchptr[1].rm_so, matchptr[1].rm_eo - matchptr[1].rm_so); ++ /* 0: entire string */ ++ /* 1: version prefix */ ++ /* 2: version string */ ++ const regmatch_t *const ver = matchptr + 2; ++ char *ret = xstrndup(linepointer + ver->rm_so, ver->rm_eo - ver->rm_so); + + regfree(&re); + return ret; +-- +1.8.3.1 + diff --git a/SOURCES/0260-xorg-rewrite-skip_pfx-function-to-work-with-journal-.patch b/SOURCES/0260-xorg-rewrite-skip_pfx-function-to-work-with-journal-.patch new file mode 100644 index 0000000..c62f995 --- /dev/null +++ b/SOURCES/0260-xorg-rewrite-skip_pfx-function-to-work-with-journal-.patch @@ -0,0 +1,57 @@ +From e001949d7ef821d7934e9d1756856ea8630968e5 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 23 Jan 2017 11:36:16 +0100 +Subject: [PATCH] xorg: rewrite skip_pfx() function to work with journal msgs + +skip_pfx() removes substrings which starts with '[' and end with ']'. +Xorg journal messages which we can remove can also start with "(EE)" and end +with ']'. + +Related to #1328264 + +Signed-off-by: Matej Habrnal +--- + src/plugins/abrt-dump-xorg.c | 26 +++++++++++++++++--------- + 1 file changed, 17 insertions(+), 9 deletions(-) + +diff --git a/src/plugins/abrt-dump-xorg.c b/src/plugins/abrt-dump-xorg.c +index 434dc76..14fd561 100644 +--- a/src/plugins/abrt-dump-xorg.c ++++ b/src/plugins/abrt-dump-xorg.c +@@ -44,16 +44,24 @@ static unsigned g_bt_count = 0; + static unsigned g_opts; + static const char *debug_dumps_dir = "."; + +-static char *skip_pfx(char *p) ++static char *skip_pfx(char *str) + { +- if (p[0] != '[') +- return p; +- char *q = strchr(p, ']'); +- if (!q) +- return p; +- if (q[1] == ' ') +- return q + 2; +- return p; ++ if (str[0] == '[') ++ { ++ char *q = strchr(str, ']'); ++ if (q) ++ str = q + 1; ++ } ++ ++ if (str[0] == ' ') ++ ++str; ++ ++ /* if there is (EE), ignore it */ ++ if (strncmp(str, "(EE)", 4) == 0) ++ /* if ' ' follows (EE), ignore it too */ ++ return str + (4 + (str[4] == ' ')); ++ ++ return str; + } + + static char *list2lines(GList *list) +-- +1.8.3.1 + diff --git a/SOURCES/0262-lib-stop-printing-out-a-debug-message-adding.patch b/SOURCES/0262-lib-stop-printing-out-a-debug-message-adding.patch new file mode 100644 index 0000000..57690a0 --- /dev/null +++ b/SOURCES/0262-lib-stop-printing-out-a-debug-message-adding.patch @@ -0,0 +1,31 @@ +From d6b5cbc2b8f444f283df9c12eac6ce70d6101a2c Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 24 Nov 2016 09:10:46 +0100 +Subject: [PATCH] lib: stop printing out a debug message 'adding: ' + +The muted message is a debug message for sure and is printed out when the +user runs: + + abrt-cli report -v + +Signed-off-by: Jakub Filak +--- + src/lib/abrt_glib.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/lib/abrt_glib.c b/src/lib/abrt_glib.c +index 60e104f..2b841de 100644 +--- a/src/lib/abrt_glib.c ++++ b/src/lib/abrt_glib.c +@@ -27,7 +27,7 @@ GList *string_list_from_variant(GVariant *variant) + gchar *str; + while (g_variant_iter_loop(&iter, "s", &str)) + { +- log_notice("adding: %s", str); ++ log_debug("adding: %s", str); + list = g_list_prepend(list, xstrdup(str)); + } + +-- +1.8.3.1 + diff --git a/SOURCES/0263-cli-don-t-start-reporting-of-not-reportable-problems.patch b/SOURCES/0263-cli-don-t-start-reporting-of-not-reportable-problems.patch new file mode 100644 index 0000000..98eb9fc --- /dev/null +++ b/SOURCES/0263-cli-don-t-start-reporting-of-not-reportable-problems.patch @@ -0,0 +1,46 @@ +From 726eaedf70802680a3634b572603b39422016c80 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 20 Aug 2015 11:15:59 +0200 +Subject: [PATCH] cli: don't start reporting of not-reportable problems + +If the reported problem data contains 'not-reportable' element, the +reporting process fails unexpectedly and after the reporter already spent some +time on it. + +This commit ensures that the reporting process won't start, so +abrt-cli's behaviour will be consistent with ABRT GUI. + +However, this is not an ideal solution because we might want to allow +the reporter to report the problem directly to developers via e-mail. + +Closes #986 +Related to #1257159 + +Signed-off-by: Jakub Filak +--- + src/cli/report.c | 9 +++++++++ + 1 file changed, 9 insertions(+) + +diff --git a/src/cli/report.c b/src/cli/report.c +index 19b4c51..cc4035e 100644 +--- a/src/cli/report.c ++++ b/src/cli/report.c +@@ -36,6 +36,15 @@ int _cmd_report(const char **dirs_strv, int remove) + continue; + } + ++ const int not_reportable = test_exist_over_dbus(real_problem_id, FILENAME_NOT_REPORTABLE); ++ if (not_reportable != 0) ++ { ++ error_msg(_("Problem '%s' cannot be reported"), real_problem_id); ++ free(real_problem_id); ++ ++ret; ++ continue; ++ } ++ + const int res = chown_dir_over_dbus(real_problem_id); + if (res != 0) + { +-- +1.8.3.1 + diff --git a/SOURCES/0264-cli-introduce-unsafe-reporting-for-not-reporable-pro.patch b/SOURCES/0264-cli-introduce-unsafe-reporting-for-not-reporable-pro.patch new file mode 100644 index 0000000..178712f --- /dev/null +++ b/SOURCES/0264-cli-introduce-unsafe-reporting-for-not-reporable-pro.patch @@ -0,0 +1,256 @@ +From b14396f9f86b6694471a9418024ffb39cf7abd47 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 3 Aug 2016 12:43:51 +0200 +Subject: [PATCH] cli: introduce unsafe reporting for not-reporable problems + +Parameter unsafe ignores security checks and allows to report +not-reportable problems. + +What makes the problem not reportable: + +- A kernel problem occurred, but your kernel has been tainted +(flags:%s). + +- A kernel problem occurred because of broken BIOS. Unfortunately, such + problems are not fixable by kernel maintainers." + +- The problem data are incomplete. + +- Crashed application has locked memory regions + +We have decided to call the new command line argument "unsafe" because +- either the reporter can leak some private data +- or the reporter could be facing anger from maintainers when they get +to the report + +Related to #1257159 +Related to abrt/abrt#1166 + +Signed-off-by: Matej Habrnal +--- + doc/abrt-cli.txt | 7 +++++-- + src/cli/builtin-cmd.h | 8 +++++++- + src/cli/process.c | 34 ++++++++++++++++++++++++---------- + src/cli/report.c | 27 ++++++++++++++++++++------- + 4 files changed, 56 insertions(+), 20 deletions(-) + +diff --git a/doc/abrt-cli.txt b/doc/abrt-cli.txt +index 0f18784..87a74ad 100644 +--- a/doc/abrt-cli.txt ++++ b/doc/abrt-cli.txt +@@ -13,13 +13,13 @@ SYNOPSIS + + 'abrt-cli' remove [-v] DIR... + +-'abrt-cli' report [-v] [--delete] DIR... ++'abrt-cli' report [-v] [--delete] [--unsafe] DIR... + + 'abrt-cli' info [-v] [--detailed] [-s SIZE] DIR... + + 'abrt-cli' status [-vb] [--since NUM] + +-'abrt-cli' process [-v] [--since NUM] DIR... ++'abrt-cli' process [-v] [--since NUM] [--unsafe] DIR... + + GLOBAL OPTIONS + -------------- +@@ -49,6 +49,9 @@ COMMAND OPTIONS + --since NUM:: + Selects only problems detected after timestamp + ++-u, --unsafe:: ++ Ignore security checks to be able to report all problems ++ + --until NUM:: + Selects only the problems older than specified timestamp + +diff --git a/src/cli/builtin-cmd.h b/src/cli/builtin-cmd.h +index c6cd691..9773f13 100644 +--- a/src/cli/builtin-cmd.h ++++ b/src/cli/builtin-cmd.h +@@ -24,7 +24,13 @@ extern int cmd_list(int argc, const char **argv); + extern int cmd_remove(int argc, const char **argv); + extern int _cmd_remove(const char **dirs_strv); + extern int cmd_report(int argc, const char **argv); +-extern int _cmd_report(const char **dirs_strv, int remove); ++enum { ++ /* Remove successfully reported */ ++ CMD_REPORT_REMOVE = 1 << 0, ++ /* Ignore security checks - i.e not-repotable */ ++ CMD_REPORT_UNSAFE = 1 << 1, ++}; ++extern int _cmd_report(const char **dirs_strv, int flags); + extern int cmd_info(int argc, const char **argv); + extern int _cmd_info(problem_data_t *problem_data, int detailed, int text_size); + extern int cmd_status(int argc, const char **argv); +diff --git a/src/cli/process.c b/src/cli/process.c +index 401ef60..9ccc271 100644 +--- a/src/cli/process.c ++++ b/src/cli/process.c +@@ -32,7 +32,7 @@ enum { + ACT_SKIP + }; + +-static int process_one_crash(problem_data_t *problem_data) ++static int process_one_crash(problem_data_t *problem_data, int report_flags) + { + if (problem_data == NULL) + return ACT_ERR; +@@ -60,10 +60,10 @@ static int process_one_crash(problem_data_t *problem_data) + const char *not_reportable = problem_data_get_content_or_NULL(problem_data, FILENAME_NOT_REPORTABLE); + + /* if the problem is not-reportable then ask does not contain option report(e) */ +- if (not_reportable != NULL) +- action = ask(_("Actions: remove(rm), info(i), skip(s):")); +- else ++ if ((report_flags & CMD_REPORT_UNSAFE) || not_reportable == NULL) + action = ask(_("Actions: remove(rm), report(e), info(i), skip(s):")); ++ else ++ action = ask(_("Actions: remove(rm), info(i), skip(s):")); + + if(strcmp(action, "rm") == 0 || strcmp(action, "remove") == 0 ) + { +@@ -73,11 +73,12 @@ static int process_one_crash(problem_data_t *problem_data) + + ret_val = ACT_REMOVE; + } +- else if (not_reportable == NULL && (strcmp(action, "e") == 0 || strcmp(action, "report") == 0)) ++ else if (((report_flags & CMD_REPORT_UNSAFE) || not_reportable == NULL) ++ && (strcmp(action, "e") == 0 || strcmp(action, "report") == 0)) + { + log(_("Reporting '%s'"), dir_name); + const char *dirs_strv[] = {dir_name, NULL}; +- _cmd_report(dirs_strv, /*do not delete*/0); ++ _cmd_report(dirs_strv, report_flags); + + ret_val = ACT_REPORT; + } +@@ -98,7 +99,7 @@ static int process_one_crash(problem_data_t *problem_data) + return ret_val; + } + +-static void process_crashes(vector_of_problem_data_t *crash_list, long since) ++static void process_crashes(vector_of_problem_data_t *crash_list, long since, int report_flags) + { + + for (unsigned i = 0; i < crash_list->len; ++i) +@@ -117,7 +118,7 @@ static void process_crashes(vector_of_problem_data_t *crash_list, long since) + if(i != 0) + printf("\n"); + +- int action = process_one_crash(crash); ++ int action = process_one_crash(crash, report_flags); + + if (i != crash_list->len - 1) + { +@@ -135,23 +136,36 @@ static void process_crashes(vector_of_problem_data_t *crash_list, long since) + int cmd_process(int argc, const char **argv) + { + const char *program_usage_string = _( ++ "& process [options]\n" ++ "\n" + "Without --since argument, iterates over all detected problems." + ); + ++ enum { ++ OPT_v = 1 << 0, ++ OPT_s = 1 << 1, ++ OPT_u = 1 << 2, ++ }; ++ + int opt_since = 0; + struct options program_options[] = { + OPT__VERBOSE(&g_verbose), + OPT_INTEGER('s', "since" , &opt_since, _("Selects only problems detected after timestamp")), ++ OPT_BOOL( 'u', "unsafe", NULL, _("Ignore security checks to be able to " ++ "report all problems")), + OPT_END() + }; + +- parse_opts(argc, (char **)argv, program_options, program_usage_string); ++ unsigned opts = parse_opts(argc, (char **)argv, program_options, program_usage_string); + + vector_of_problem_data_t *ci = fetch_crash_infos(); + + g_ptr_array_sort_with_data(ci, &cmp_problem_data, (char *) FILENAME_LAST_OCCURRENCE); + +- process_crashes(ci, opt_since); ++ int report_flags = 0; ++ if (opts & OPT_u) ++ report_flags |= CMD_REPORT_UNSAFE; ++ process_crashes(ci, opt_since, report_flags); + + free_vector_of_problem_data(ci); + +diff --git a/src/cli/report.c b/src/cli/report.c +index cc4035e..1e9067b 100644 +--- a/src/cli/report.c ++++ b/src/cli/report.c +@@ -22,7 +22,7 @@ + #include "abrt-cli-core.h" + #include "builtin-cmd.h" + +-int _cmd_report(const char **dirs_strv, int remove) ++int _cmd_report(const char **dirs_strv, int flags) + { + int ret = 0; + while (*dirs_strv) +@@ -39,10 +39,14 @@ int _cmd_report(const char **dirs_strv, int remove) + const int not_reportable = test_exist_over_dbus(real_problem_id, FILENAME_NOT_REPORTABLE); + if (not_reportable != 0) + { +- error_msg(_("Problem '%s' cannot be reported"), real_problem_id); +- free(real_problem_id); +- ++ret; +- continue; ++ if (!(flags & CMD_REPORT_UNSAFE)) ++ { ++ error_msg(_("Problem '%s' cannot be reported"), real_problem_id); ++ free(real_problem_id); ++ ++ret; ++ continue; ++ } ++ log_info(_("Problem '%s' is labeled as 'not-reportable'?"), real_problem_id); + } + + const int res = chown_dir_over_dbus(real_problem_id); +@@ -58,7 +62,7 @@ int _cmd_report(const char **dirs_strv, int remove) + | LIBREPORT_RUN_CLI); + + /* the problem was successfully reported and option is -d */ +- if(remove && (status == 0 || status == EXIT_STOP_EVENT_RUN)) ++ if((flags & CMD_REPORT_REMOVE) && (status == 0 || status == EXIT_STOP_EVENT_RUN)) + { + log(_("Deleting '%s'"), real_problem_id); + delete_dump_dir_possibly_using_abrtd(real_problem_id); +@@ -82,11 +86,14 @@ int cmd_report(int argc, const char **argv) + enum { + OPT_v = 1 << 0, + OPT_d = 1 << 1, ++ OPT_u = 1 << 2, + }; + + struct options program_options[] = { + OPT__VERBOSE(&g_verbose), + OPT_BOOL('d', "delete", NULL, _("Remove PROBLEM_DIR after reporting")), ++ OPT_BOOL('u', "unsafe", NULL, _("Ignore security checks to be able to " ++ "report all problems")), + OPT_END() + }; + +@@ -101,5 +108,11 @@ int cmd_report(int argc, const char **argv) + load_abrt_conf(); + free_abrt_conf_data(); + +- return _cmd_report(argv, opts & OPT_d); ++ int report_flags = 0; ++ if (opts & OPT_d) ++ report_flags |= CMD_REPORT_REMOVE; ++ if (opts & OPT_u) ++ report_flags |= CMD_REPORT_UNSAFE; ++ ++ return _cmd_report(argv, report_flags); + } +-- +1.8.3.1 + diff --git a/SOURCES/0265-cli-configure-libreport-to-ignore-not-reportable.patch b/SOURCES/0265-cli-configure-libreport-to-ignore-not-reportable.patch new file mode 100644 index 0000000..0dc4a2a --- /dev/null +++ b/SOURCES/0265-cli-configure-libreport-to-ignore-not-reportable.patch @@ -0,0 +1,46 @@ +From 3173508eef0b8b14020c9bef5bacb36feae83f4b Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Wed, 23 Nov 2016 16:03:51 +0100 +Subject: [PATCH] cli: configure libreport to ignore not-reportable + +The check for not-reportable is performed by libreport too. + +Related to #1257159 +Related to abrt/abrt#1166 + +Signed-off-by: Jakub Filak +--- + src/cli/report.c | 10 +++++++--- + 1 file changed, 7 insertions(+), 3 deletions(-) + +diff --git a/src/cli/report.c b/src/cli/report.c +index 1e9067b..efdca2d 100644 +--- a/src/cli/report.c ++++ b/src/cli/report.c +@@ -36,6 +36,7 @@ int _cmd_report(const char **dirs_strv, int flags) + continue; + } + ++ + const int not_reportable = test_exist_over_dbus(real_problem_id, FILENAME_NOT_REPORTABLE); + if (not_reportable != 0) + { +@@ -57,9 +58,12 @@ int _cmd_report(const char **dirs_strv, int flags) + ++ret; + continue; + } +- int status = report_problem_in_dir(real_problem_id, +- LIBREPORT_WAIT +- | LIBREPORT_RUN_CLI); ++ ++ int lr_flags = LIBREPORT_WAIT | LIBREPORT_RUN_CLI; ++ if (flags & CMD_REPORT_UNSAFE) ++ lr_flags |= LIBREPORT_IGNORE_NOT_REPORTABLE; ++ ++ int status = report_problem_in_dir(real_problem_id, lr_flags); + + /* the problem was successfully reported and option is -d */ + if((flags & CMD_REPORT_REMOVE) && (status == 0 || status == EXIT_STOP_EVENT_RUN)) +-- +1.8.3.1 + diff --git a/SOURCES/0266-cli-print-out-the-not-reportable-reason.patch b/SOURCES/0266-cli-print-out-the-not-reportable-reason.patch new file mode 100644 index 0000000..ae8d2b4 --- /dev/null +++ b/SOURCES/0266-cli-print-out-the-not-reportable-reason.patch @@ -0,0 +1,44 @@ +From 9ec8e5c529b06ccbd1e1c4888118fd278ef4393b Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 24 Nov 2016 09:06:09 +0100 +Subject: [PATCH] cli: print out the not-reportable reason + +But only in verbose mode. Users might be wondering why the problem is +not reportable. Users will intuitively try to run the command in verbose +mode to find out why the problem is not reportable. + +Related to #1257159 + +Signed-off-by: Jakub Filak +--- + src/cli/report.c | 9 ++++++++- + 1 file changed, 8 insertions(+), 1 deletion(-) + +diff --git a/src/cli/report.c b/src/cli/report.c +index efdca2d..a76923f 100644 +--- a/src/cli/report.c ++++ b/src/cli/report.c +@@ -36,12 +36,19 @@ int _cmd_report(const char **dirs_strv, int flags) + continue; + } + +- + const int not_reportable = test_exist_over_dbus(real_problem_id, FILENAME_NOT_REPORTABLE); + if (not_reportable != 0) + { + if (!(flags & CMD_REPORT_UNSAFE)) + { ++ if (g_verbose > 0) ++ { ++ char *reason = load_text_over_dbus(real_problem_id, FILENAME_NOT_REPORTABLE); ++ if (reason != NULL) ++ log("%s\n", reason); ++ free(reason); ++ } ++ + error_msg(_("Problem '%s' cannot be reported"), real_problem_id); + free(real_problem_id); + ++ret; +-- +1.8.3.1 + diff --git a/SOURCES/0268-vmcore-remove-not-implemented-option-AttemptHardlink.patch b/SOURCES/0268-vmcore-remove-not-implemented-option-AttemptHardlink.patch new file mode 100644 index 0000000..184d8cb --- /dev/null +++ b/SOURCES/0268-vmcore-remove-not-implemented-option-AttemptHardlink.patch @@ -0,0 +1,31 @@ +From 2276aa793be4a54c9a1e31ec4837d7cf02eb8ba3 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Wed, 8 Feb 2017 11:24:57 +0100 +Subject: [PATCH] vmcore: remove not implemented option AttemptHardlink + +The commit removes not implemented option 'AttemptHardlink' from vmconre.conf +file. + +Related to #1416586 + +Signed-off-by: Matej Habrnal +--- + src/hooks/vmcore.conf | 5 ----- + 1 file changed, 5 deletions(-) + +diff --git a/src/hooks/vmcore.conf b/src/hooks/vmcore.conf +index ed7556f..cff35d8 100644 +--- a/src/hooks/vmcore.conf ++++ b/src/hooks/vmcore.conf +@@ -1,8 +1,3 @@ + # Do you want vmcore to be copied, or moved from /var/crash to /var/tmp/abrt? + # (default is to copy, but it may duplicate way too much data) + CopyVMcore = yes +- +-#Not implemented yet. TODO? +-# If you selected copying above, consider setting this to 'yes' +-# to save on disk space (default: no) +-#AttemptHardlink = yes +-- +1.8.3.1 + diff --git a/SOURCES/0269-ccpp-add-h-parameter-into-abrt-hook-ccpp.patch b/SOURCES/0269-ccpp-add-h-parameter-into-abrt-hook-ccpp.patch new file mode 100644 index 0000000..671ffd0 --- /dev/null +++ b/SOURCES/0269-ccpp-add-h-parameter-into-abrt-hook-ccpp.patch @@ -0,0 +1,60 @@ +From e0361b1688c82f9fbfa07d2683effedac870ae17 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 13 Feb 2017 13:12:39 +0100 +Subject: [PATCH] ccpp: add %h parameter into abrt-hook-ccpp + +Without this commit core_pattern's parameter %h was not translated to hostname. + +Example: +If 'core_pattern = core.%h.%e.%p.%t' the result was +core.%h.sleep.26284.1469805542 not core.myshostmane.sleep.26284.1469805542. + +Related to #1364899 + +Signed-off-by: Matej Habrnal +--- + src/hooks/abrt-hook-ccpp.c | 6 +++--- + src/hooks/abrt-install-ccpp-hook.in | 4 ++-- + 2 files changed, 5 insertions(+), 5 deletions(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index 581a540..cb4d1e0 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -161,14 +161,14 @@ static struct dump_dir *dd; + * %g - gid + * %t - UNIX time of dump + * %e - executable filename +- * %I - global crash thread tid + * %P - global pid ++ * %I - global crash thread tid ++ * %h - hostname + * %% - output one "%" + */ + /* Hook must be installed with exactly the same sequence of %c specifiers. +- * Last one, %h, may be omitted (we can find it out). + */ +-static const char percent_specifiers[] = "%scpugtePI"; ++static const char percent_specifiers[] = "%scpugtePIh"; + static char *core_basename = (char*) "core"; + + static char* get_executable(pid_t pid, int *fd_p) +diff --git a/src/hooks/abrt-install-ccpp-hook.in b/src/hooks/abrt-install-ccpp-hook.in +index 707c57d..171bd4a 100755 +--- a/src/hooks/abrt-install-ccpp-hook.in ++++ b/src/hooks/abrt-install-ccpp-hook.in +@@ -11,9 +11,9 @@ SAVED_PATTERN_DIR="@VAR_RUN@/abrt" + SAVED_PATTERN_FILE="@VAR_RUN@/abrt/saved_core_pattern" + HOOK_BIN="@libexecdir@/abrt-hook-ccpp" + # Must match percent_specifiers[] order in abrt-hook-ccpp.c: +-PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %P %I" ++PATTERN="|$HOOK_BIN %s %c %p %u %g %t %e %P %I %h" + # Same, but with bogus "executable name" parameter +-PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %P %I" ++PATTERN1="|$HOOK_BIN %s %c %p %u %g %t e %P %I %h" + + # core_pipe_limit specifies how many dump_helpers can run at the same time + # 0 - means unlimited, but it's not guaranteed that /proc/ of crashing +-- +1.8.3.1 + diff --git a/SOURCES/0271-Translation-updates.patch b/SOURCES/0271-Translation-updates.patch new file mode 100644 index 0000000..8a32d13 --- /dev/null +++ b/SOURCES/0271-Translation-updates.patch @@ -0,0 +1,2566 @@ +From b99597ac793c9613644c7169c516619519619487 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 29 May 2017 16:45:19 +0200 +Subject: [PATCH] Translation updates + +Related to #1449488 + +Signed-off-by: Matej Habrnal +--- + po/de.po | 97 ++++++++++++++++++++++++++++++++++------------------------ + po/es.po | 99 +++++++++++++++++++++++++++++++++-------------------------- + po/fr.po | 99 ++++++++++++++++++++++++++++++++++------------------------- + po/it.po | 96 +++++++++++++++++++++++++++++++++------------------------ + po/ja.po | 100 ++++++++++++++++++++++++++++++++++++------------------------ + po/ko.po | 96 +++++++++++++++++++++++++++++++++------------------------ + po/pt_BR.po | 94 +++++++++++++++++++++++++++++++++----------------------- + po/ru.po | 97 +++++++++++++++++++++++++++++++++------------------------- + po/zh_CN.po | 97 ++++++++++++++++++++++++++++++++++------------------------ + po/zh_TW.po | 99 ++++++++++++++++++++++++++++++++++------------------------- + 10 files changed, 572 insertions(+), 402 deletions(-) + +diff --git a/po/de.po b/po/de.po +index ea61f95..a53667a 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -13,23 +13,22 @@ + # noxin , 2013 + # Rainer Gromansperg , 2013 + # Roman Spirgi , 2011-2012 +-# Hedda Peters , 2015. #zanata +-# Roman Spirgi , 2015. #zanata ++# mhabrnal , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2016-06-29 15:31+0200\n" ++"POT-Creation-Date: 2017-05-15 16:10+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-07-16 08:12-0400\n" +-"Last-Translator: Hedda Peters \n" ++"PO-Revision-Date: 2017-05-16 07:08+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: German (http://www.transifex.com/projects/p/fedora-abrt/" + "language/de/)\n" + "Language: de\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.9.5\n" ++"X-Generator: Zanata 4.1.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -71,7 +70,7 @@ msgstr "Keine Verbindung mit NetworkManager über DBus: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "Netzwerkstatus kann über NetworkManager nicht bestimmt werden: %s" + +-#: ../src/applet/applet.c:342 ../src/cli/report.c:42 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:63 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Eigentumsrechte von »%s« können nicht geändert werden." +@@ -197,7 +196,8 @@ msgid "Can't show notification: %s" + msgstr "Benachrichtigung kann nicht angezeigt werden: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-server.c:114 ++#: ../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«" +@@ -388,22 +388,22 @@ msgstr "Fehler-Verzeichnis" + msgid "Configuration file" + msgstr "Konfigurationsdatei" + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 ++#: ../src/daemon/abrt-server.c:924 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:744 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:803 ++#: ../src/daemon/abrt-server.c:935 + msgid "Use NUM as client uid" + msgstr "NUM als Client-UID benutzen" + +-#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:936 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 +-#: ../src/plugins/abrt-dump-xorg.c:252 ++#: ../src/plugins/abrt-dump-xorg.c:260 + msgid "Log to syslog" + msgstr "In Systemprotokoll speichern" + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 ++#: ../src/daemon/abrt-server.c:937 ../src/daemon/abrtd.c:760 + msgid "Add program names to log" + msgstr "Anwendungsnamen protokollieren" + +@@ -478,7 +478,7 @@ msgstr "" + "anderer Dienst unter dem gleichen Namen läuft.\n" + + #: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:480 ++#: ../src/daemon/abrtd.c:759 + msgid "Exit after NUM seconds of inactivity" + msgstr "Nach NUM Sekunden Inaktivität beenden" + +@@ -486,7 +486,7 @@ msgstr "Nach NUM Sekunden Inaktivität beenden" + msgid "This program must be run as root." + msgstr "Die Anwendung muss mit Root-Rechten ausgeführt werden." + +-#: ../src/daemon/abrtd.c:432 ++#: ../src/daemon/abrtd.c:711 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -501,23 +501,23 @@ msgstr "" + "Entwicklern helfen wollen, dieses Problem zu lösen, kontaktieren Sie die " + "Entwickler bitte direkt." + +-#: ../src/daemon/abrtd.c:478 ++#: ../src/daemon/abrtd.c:757 + msgid "Do not daemonize" + msgstr "Nicht als Hintergrunddienst ausführen" + +-#: ../src/daemon/abrtd.c:479 ++#: ../src/daemon/abrtd.c:758 + msgid "Log to syslog even with -d" + msgstr "Auch mit -d im Systemprotokoll speichern" + +-#: ../src/daemon/abrt-handle-event.c:388 ++#: ../src/daemon/abrt-handle-event.c:343 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR..." + +-#: ../src/daemon/abrt-handle-event.c:396 ++#: ../src/daemon/abrt-handle-event.c:351 + msgid "Run EVENT on DIR" + msgstr "EVENT auf DIR ausführen" + +-#: ../src/daemon/abrt-handle-event.c:397 ++#: ../src/daemon/abrt-handle-event.c:352 + msgid "Communicate directly to the user" + msgstr "Direkt mit dem Benutzer kommunizieren" + +@@ -1333,7 +1333,7 @@ msgstr "" + "Neues Fehlerverzeichnis in DIR erstellen für jede gefundene Kernelabsturz-" + "Meldung" + +-#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:263 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Entspricht -d DumpLocation, DumpLocation ist in abrt.conf spezifiziert" +@@ -1342,7 +1342,7 @@ msgstr "" + msgid "Save the extracted information in PROBLEM" + msgstr "Speichern Sie die extrahierten Informationen in PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:264 + msgid "Make the problem directory world readable" + msgstr "Fehler-Verzeichnis allgemein lesbar machen" + +@@ -1350,7 +1350,7 @@ msgstr "Fehler-Verzeichnis allgemein lesbar machen" + 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:291 ../src/plugins/abrt-dump-xorg.c:257 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:265 + msgid "Print search string(s) to stdout and exit" + msgstr "Suchbegriff(e) in Stdout schreiben und beenden" + +@@ -1367,7 +1367,7 @@ msgstr "Fehler kann nicht aktualisiert werden: mehrere Oops gefunden" + msgid "Sleeping for %d seconds" + msgstr "%d Sekunden warten" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1377,11 +1377,11 @@ msgstr "" + "\n" + "Xorg-Absturz aus FILE extrahieren (oder Standard-Eingabe)" + +-#: ../src/plugins/abrt-dump-xorg.c:253 ++#: ../src/plugins/abrt-dump-xorg.c:261 + msgid "Print found crash data on standard output" + msgstr "Gefundene Daten zum Absturz auf Standard-Eingabe ausgeben" + +-#: ../src/plugins/abrt-dump-xorg.c:254 ++#: ../src/plugins/abrt-dump-xorg.c:262 + msgid "Create problem directory in DIR for every crash found" + msgstr "Neues Fehlerverzeichnis in DIR erstellen für jeden gefundenen Absturz" + +@@ -2107,42 +2107,59 @@ msgstr "" + msgid "Can't find problem '%s'" + msgstr "Fehlerbericht »%s« kann nicht gefunden werden" + +-#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#: ../src/cli/report.c:52 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++#: ../src/cli/report.c:57 ++#, c-format ++msgid "Problem '%s' is labeled as 'not-reportable'?" ++msgstr "" ++ ++#: ../src/cli/report.c:78 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "»%s« wird gelöscht" + +-#: ../src/cli/report.c:70 ++#: ../src/cli/report.c:94 + msgid "& report [options] DIR..." + msgstr "& berichten [Optionen] DIR..." + +-#: ../src/cli/report.c:80 ++#: ../src/cli/report.c:105 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "PROBLEM_DIR nach Berichterstattung löschen" + +-#: ../src/cli/process.c:64 +-msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "Aktionen: entfernen(rm), info(i), überspringen(s):" ++#: ../src/cli/report.c:106 ../src/cli/process.c:154 ++msgid "Ignore security checks to be able to report all problems" ++msgstr "" + +-#: ../src/cli/process.c:66 ++#: ../src/cli/process.c:64 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Aktionen: entfernen(rm), berichten(e), info(i), überspringen(s):" + +-#: ../src/cli/process.c:78 ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "Aktionen: entfernen(rm), info(i), überspringen(s):" ++ ++#: ../src/cli/process.c:79 + #, c-format + msgid "Reporting '%s'" + msgstr "»%s« wird gemeldet" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:127 ++#: ../src/cli/process.c:128 + msgid "For next problem press ENTER:" + msgstr "Drücken Sie die EINGABETASTE für den nächsten Fehler" + +-#: ../src/cli/process.c:138 +-msgid "Without --since argument, iterates over all detected problems." +-msgstr "Ohne --since Parameter werden alle erkannten Fehler durchgegangen." ++#: ../src/cli/process.c:139 ++msgid "" ++"& process [options]\n" ++"\n" ++"Without --since argument, iterates over all detected problems." ++msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" + msgstr "Nur Fehler auswählen, die nach diesem Zeitpunkt auftraten" + +diff --git a/po/es.po b/po/es.po +index cb1c136..a661355 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -19,26 +19,22 @@ + # Luis Bazán , 2011 + # Israel Torres , 2013 + # vareli , 2013 +-# Alex Puchades , 2015. #zanata +-# Gerardo Rosales , 2015. #zanata +-# Gladys Guerrero Lozano , 2015. #zanata +-# Jakub Filak , 2015. #zanata +-# Máximo Castañeda Riloba , 2016. #zanata ++# mhabrnal , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2016-06-29 15:31+0200\n" ++"POT-Creation-Date: 2017-05-15 16:10+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2016-08-31 07:26-0400\n" +-"Last-Translator: Máximo Castañeda Riloba \n" ++"PO-Revision-Date: 2017-05-16 07:08+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/" + "language/es/)\n" + "Language: es\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.9.5\n" ++"X-Generator: Zanata 4.1.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -78,7 +74,7 @@ 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:342 ../src/cli/report.c:42 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:63 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "No puedo hacerme dueño de '%s'" +@@ -205,7 +201,8 @@ msgid "Can't show notification: %s" + msgstr "No puedo mostrar notificación: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-server.c:114 ++#: ../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'" +@@ -394,22 +391,22 @@ msgstr "Directorio de problemas" + msgid "Configuration file" + msgstr "Archivo de configuración" + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 ++#: ../src/daemon/abrt-server.c:924 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:744 + msgid "& [options]" + msgstr "& [opciones]" + +-#: ../src/daemon/abrt-server.c:803 ++#: ../src/daemon/abrt-server.c:935 + msgid "Use NUM as client uid" + msgstr "Utilice NUM como uid del cliente" + +-#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:936 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 +-#: ../src/plugins/abrt-dump-xorg.c:252 ++#: ../src/plugins/abrt-dump-xorg.c:260 + msgid "Log to syslog" + msgstr "Registrarse en syslog" + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 ++#: ../src/daemon/abrt-server.c:937 ../src/daemon/abrtd.c:760 + msgid "Add program names to log" + msgstr "Agrega el nombre del programa al log" + +@@ -485,7 +482,7 @@ msgstr "" + "ese nombre no se esté ejecutando.\n" + + #: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:480 ++#: ../src/daemon/abrtd.c:759 + msgid "Exit after NUM seconds of inactivity" + msgstr "Sale después de NUM de segundos de inactividad" + +@@ -493,7 +490,7 @@ msgstr "Sale después de NUM de segundos de inactividad" + msgid "This program must be run as root." + msgstr "Este programa debe ser ejecutado como root." + +-#: ../src/daemon/abrtd.c:432 ++#: ../src/daemon/abrtd.c:711 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -508,23 +505,23 @@ msgstr "" + "tiempo y desea ayudar a los desarrolladores en su esfuerzo por solucionarlo, " + "por favor contáctelos directamente." + +-#: ../src/daemon/abrtd.c:478 ++#: ../src/daemon/abrtd.c:757 + msgid "Do not daemonize" + msgstr "No convertir en un demonio" + +-#: ../src/daemon/abrtd.c:479 ++#: ../src/daemon/abrtd.c:758 + msgid "Log to syslog even with -d" + msgstr "Registrar en syslog aún con -d" + +-#: ../src/daemon/abrt-handle-event.c:388 ++#: ../src/daemon/abrt-handle-event.c:343 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR..." + +-#: ../src/daemon/abrt-handle-event.c:396 ++#: ../src/daemon/abrt-handle-event.c:351 + msgid "Run EVENT on DIR" + msgstr "Ejecuta EVENTO en DIR" + +-#: ../src/daemon/abrt-handle-event.c:397 ++#: ../src/daemon/abrt-handle-event.c:352 + msgid "Communicate directly to the user" + msgstr "Comunicar directamente al usuario" + +@@ -1334,7 +1331,7 @@ 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:287 ../src/plugins/abrt-dump-xorg.c:255 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:263 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Igual que -d DumpLocation, lugar de volcado se especifica en abrt.conf" +@@ -1343,7 +1340,7 @@ msgstr "" + msgid "Save the extracted information in PROBLEM" + msgstr "Guardar la información extraída en PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:264 + msgid "Make the problem directory world readable" + msgstr "Hacer que el directorio de problemas sea legible para todos" + +@@ -1351,7 +1348,7 @@ msgstr "Hacer que el directorio de problemas sea legible para todos" + msgid "Throttle problem directory creation to 1 per second" + msgstr "Aceleración de creación de directorio de problemas a 1 por segundo" + +-#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:265 + msgid "Print search string(s) to stdout and exit" + msgstr "Imprime la(s) cadena(s) de búsqueda a stdout y sale" + +@@ -1368,7 +1365,7 @@ msgstr "No se pudo actualizar el problema: se encontraron más de un oops" + msgid "Sleeping for %d seconds" + msgstr "Durmiendo por %d segundos" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1378,11 +1375,11 @@ msgstr "" + "\n" + "Extrae la caída de Xorg desde el ARCHIVO (o la entrada estándar)" + +-#: ../src/plugins/abrt-dump-xorg.c:253 ++#: ../src/plugins/abrt-dump-xorg.c:261 + msgid "Print found crash data on standard output" + msgstr "Imprime los datos de la caída encontrados en la salida estándar" + +-#: ../src/plugins/abrt-dump-xorg.c:254 ++#: ../src/plugins/abrt-dump-xorg.c:262 + msgid "Create problem directory in DIR for every crash found" + msgstr "Crea un directorio de problemas en DIR para cada fallo encontrado" + +@@ -2111,43 +2108,59 @@ msgstr "" + msgid "Can't find problem '%s'" + msgstr "No se puede encontrar el problema '%s'" + +-#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#: ../src/cli/report.c:52 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++#: ../src/cli/report.c:57 ++#, c-format ++msgid "Problem '%s' is labeled as 'not-reportable'?" ++msgstr "" ++ ++#: ../src/cli/report.c:78 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "Borrando '%s'..." + +-#: ../src/cli/report.c:70 ++#: ../src/cli/report.c:94 + msgid "& report [options] DIR..." + msgstr "& reporte[opciones] DIR..." + +-#: ../src/cli/report.c:80 ++#: ../src/cli/report.c:105 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Elimina PROBLEM_DIR después de reportarlos" + +-#: ../src/cli/process.c:64 +-msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "Acciones: eliminar(rm), información(i), omitir(s):" ++#: ../src/cli/report.c:106 ../src/cli/process.c:154 ++msgid "Ignore security checks to be able to report all problems" ++msgstr "" + +-#: ../src/cli/process.c:66 ++#: ../src/cli/process.c:64 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Acciones: eliminar(rm), reporte(e), información(i), omitir(s):" + +-#: ../src/cli/process.c:78 ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "Acciones: eliminar(rm), información(i), omitir(s):" ++ ++#: ../src/cli/process.c:79 + #, c-format + msgid "Reporting '%s'" + msgstr "Reportando '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:127 ++#: ../src/cli/process.c:128 + msgid "For next problem press ENTER:" + msgstr "Para el siguiente problema presione la tecla ENTER:" + +-#: ../src/cli/process.c:138 +-msgid "Without --since argument, iterates over all detected problems." ++#: ../src/cli/process.c:139 ++msgid "" ++"& process [options]\n" ++"\n" ++"Without --since argument, iterates over all detected problems." + msgstr "" +-"Sin el parámetro --since, se repite sobre todos los problemas detectados." + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" + msgstr "Selecciona únicamente los problemas después del tiempo especificado" + +diff --git a/po/fr.po b/po/fr.po +index 019ecad..d177a91 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -13,25 +13,22 @@ + # Sam Friedmann , 2014 + # Vincent HERBER , 2011 + # Vincent , 2011 +-# Jakub Filak , 2015. #zanata +-# Julie Carbone , 2015. #zanata +-# Richard Marko , 2015. #zanata +-# Sam Friedmann , 2015. #zanata ++# mhabrnal , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2016-06-29 15:31+0200\n" ++"POT-Creation-Date: 2017-05-15 16:10+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-07-29 09:45-0400\n" +-"Last-Translator: Richard Marko \n" ++"PO-Revision-Date: 2017-05-16 07:08+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/" + "language/fr/)\n" + "Language: fr\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.9.5\n" ++"X-Generator: Zanata 4.1.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -73,7 +70,7 @@ msgstr "Impossible de se connecter à NetworkManager via DBus : %s" + 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:342 ../src/cli/report.c:42 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:63 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Impossible de s'approprier « %s »" +@@ -203,7 +200,8 @@ msgid "Can't show notification: %s" + msgstr "Impossible d'afficher la notification : %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-server.c:114 ++#: ../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 »" +@@ -397,22 +395,22 @@ msgstr "Répertoire des incidents" + msgid "Configuration file" + msgstr "Fichier de configuration" + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 ++#: ../src/daemon/abrt-server.c:924 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:744 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:803 ++#: ../src/daemon/abrt-server.c:935 + msgid "Use NUM as client uid" + msgstr "Utiliser NUM en tant qu'UID client" + +-#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:936 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 +-#: ../src/plugins/abrt-dump-xorg.c:252 ++#: ../src/plugins/abrt-dump-xorg.c:260 + msgid "Log to syslog" + msgstr "Journaliser vers syslog" + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 ++#: ../src/daemon/abrt-server.c:937 ../src/daemon/abrtd.c:760 + msgid "Add program names to log" + msgstr "Ajouter le nom des programmes dans le journal" + +@@ -487,7 +485,7 @@ msgstr "" + "ce même nom ne tourne pas.\n" + + #: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:480 ++#: ../src/daemon/abrtd.c:759 + msgid "Exit after NUM seconds of inactivity" + msgstr "Quitter après NUM secondes d'inactivité" + +@@ -495,7 +493,7 @@ msgstr "Quitter après NUM secondes d'inactivité" + msgid "This program must be run as root." + msgstr "Le programme doit être lancé en tant que root." + +-#: ../src/daemon/abrtd.c:432 ++#: ../src/daemon/abrtd.c:711 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -510,23 +508,23 @@ msgstr "" + "vous avez du temps et désirez aider les développeurs dans leur effort de " + "résolution de cet incident, merci de les contacter directement." + +-#: ../src/daemon/abrtd.c:478 ++#: ../src/daemon/abrtd.c:757 + msgid "Do not daemonize" + msgstr "Ne pas lancer le démon" + +-#: ../src/daemon/abrtd.c:479 ++#: ../src/daemon/abrtd.c:758 + msgid "Log to syslog even with -d" + msgstr "Journaliser vers syslog même avec -d" + +-#: ../src/daemon/abrt-handle-event.c:388 ++#: ../src/daemon/abrt-handle-event.c:343 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR..." + +-#: ../src/daemon/abrt-handle-event.c:396 ++#: ../src/daemon/abrt-handle-event.c:351 + msgid "Run EVENT on DIR" + msgstr "Exécuter EVENT sur DIR" + +-#: ../src/daemon/abrt-handle-event.c:397 ++#: ../src/daemon/abrt-handle-event.c:352 + msgid "Communicate directly to the user" + msgstr "Communiquer directement à l'utilisateur" + +@@ -1348,7 +1346,7 @@ 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:287 ../src/plugins/abrt-dump-xorg.c:255 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:263 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Identique à l'option -d emplacement_de_vidage, l'emplacement du vidage est " +@@ -1358,7 +1356,7 @@ msgstr "" + msgid "Save the extracted information in PROBLEM" + msgstr "Sauvegarder les informations extraites dans PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:264 + msgid "Make the problem directory world readable" + msgstr "Rendre le répertoire des incidents lisible par tout le monde" + +@@ -1366,7 +1364,7 @@ msgstr "Rendre le répertoire des incidents lisible par tout le monde" + 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:291 ../src/plugins/abrt-dump-xorg.c:257 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:265 + msgid "Print search string(s) to stdout and exit" + msgstr "Afficher les chaînes recherchées sur la sortie standard et quitter" + +@@ -1383,7 +1381,7 @@ msgstr "Impossible de mettre à jour l'incident : plus d'un oops trouvé" + msgid "Sleeping for %d seconds" + msgstr "Mise en sommeil pour %d secondes" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1393,11 +1391,11 @@ msgstr "" + "\n" + "Extraire les données de plantage de Xorg de FILE (ou de l'entrée standard)" + +-#: ../src/plugins/abrt-dump-xorg.c:253 ++#: ../src/plugins/abrt-dump-xorg.c:261 + msgid "Print found crash data on standard output" + msgstr "Afficher les données de plantage sur la sortie standard" + +-#: ../src/plugins/abrt-dump-xorg.c:254 ++#: ../src/plugins/abrt-dump-xorg.c:262 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Créer un répertoire d'incidents dans DIR pour chaque incident découvert" +@@ -2134,43 +2132,60 @@ msgstr "" + msgid "Can't find problem '%s'" + msgstr "Impossible de trouver le problème « %s »" + +-#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#: ../src/cli/report.c:52 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++#: ../src/cli/report.c:57 ++#, c-format ++msgid "Problem '%s' is labeled as 'not-reportable'?" ++msgstr "" ++ ++#: ../src/cli/report.c:78 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "Suppression de « %s »" + +-#: ../src/cli/report.c:70 ++#: ../src/cli/report.c:94 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:80 ++#: ../src/cli/report.c:105 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Supprimer PROBLEM_DIR après le rapport" + +-#: ../src/cli/process.c:64 +-msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "Actions : supprimer (rm), informations (i), ignorer (s) :" ++#: ../src/cli/report.c:106 ../src/cli/process.c:154 ++msgid "Ignore security checks to be able to report all problems" ++msgstr "" + +-#: ../src/cli/process.c:66 ++#: ../src/cli/process.c:64 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "" + "Actions : supprimer (rm), signaler (e), informations (i), ignorer (s) :" + +-#: ../src/cli/process.c:78 ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "Actions : supprimer (rm), informations (i), ignorer (s) :" ++ ++#: ../src/cli/process.c:79 + #, c-format + msgid "Reporting '%s'" + msgstr "Rapporter « %s »" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:127 ++#: ../src/cli/process.c:128 + msgid "For next problem press ENTER:" + msgstr "Pour le problème suivant, veuillez appuyer sur ENTRÉE :" + +-#: ../src/cli/process.c:138 +-msgid "Without --since argument, iterates over all detected problems." +-msgstr "Sans l'argument --since, réitère tous les problèmes détectés." ++#: ../src/cli/process.c:139 ++msgid "" ++"& process [options]\n" ++"\n" ++"Without --since argument, iterates over all detected problems." ++msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" + msgstr "Sélectionne uniquement les problèmes détectés après l'horodatage" + +diff --git a/po/it.po b/po/it.po +index 1fcb308..0849ab4 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -14,22 +14,22 @@ + # Luigi Votta , 2011 + # Mauro Gaggiotti , 2012 + # Silvio Pierro , 2012 +-# Francesco Valente , 2015. #zanata ++# mhabrnal , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2016-06-29 15:31+0200\n" ++"POT-Creation-Date: 2017-05-15 16:10+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-07-16 10:44-0400\n" +-"Last-Translator: Francesco Valente \n" ++"PO-Revision-Date: 2017-05-16 07:08+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Italian (http://www.transifex.com/projects/p/fedora-abrt/" + "language/it/)\n" + "Language: it\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 3.9.5\n" ++"X-Generator: Zanata 4.1.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -70,7 +70,7 @@ msgid "Can't determine network status via NetworkManager: %s" + msgstr "" + "Impossibile determinare lo stato della rete tramite NetworkManager: %s" + +-#: ../src/applet/applet.c:342 ../src/cli/report.c:42 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:63 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Impossibile ottenere la proprietà di '%s'" +@@ -194,7 +194,8 @@ msgid "Can't show notification: %s" + msgstr "Impossibile mostrare la notifica: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-server.c:114 ++#: ../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'" +@@ -384,22 +385,22 @@ msgstr "Directory del problema" + msgid "Configuration file" + msgstr "File di configurazione" + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 ++#: ../src/daemon/abrt-server.c:924 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:744 + msgid "& [options]" + msgstr "& [opzioni]" + +-#: ../src/daemon/abrt-server.c:803 ++#: ../src/daemon/abrt-server.c:935 + msgid "Use NUM as client uid" + msgstr "Utilizzare NUM per l'uid del client" + +-#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:936 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 +-#: ../src/plugins/abrt-dump-xorg.c:252 ++#: ../src/plugins/abrt-dump-xorg.c:260 + msgid "Log to syslog" + msgstr "Log su syslog" + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 ++#: ../src/daemon/abrt-server.c:937 ../src/daemon/abrtd.c:760 + msgid "Add program names to log" + msgstr "Aggiungi i nomi dei programmi sul log" + +@@ -474,7 +475,7 @@ msgstr "" + "questo nome non siano in esecuzione.\n" + + #: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:480 ++#: ../src/daemon/abrtd.c:759 + msgid "Exit after NUM seconds of inactivity" + msgstr "Esci dopo NUM secondi di inattività" + +@@ -482,7 +483,7 @@ msgstr "Esci dopo NUM secondi di inattività" + msgid "This program must be run as root." + msgstr "Questo programma deve essere eseguito come root." + +-#: ../src/daemon/abrtd.c:432 ++#: ../src/daemon/abrtd.c:711 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -496,23 +497,23 @@ msgstr "" + "permetterà di inviare questo problema. Se hai un po' di tempo e vuoi aiutare " + "gli sviluppatori a correggere il malfunzionameto, contattali direttamente." + +-#: ../src/daemon/abrtd.c:478 ++#: ../src/daemon/abrtd.c:757 + msgid "Do not daemonize" + msgstr "Non rendere demone" + +-#: ../src/daemon/abrtd.c:479 ++#: ../src/daemon/abrtd.c:758 + msgid "Log to syslog even with -d" + msgstr "Log su syslog anche con -d" + +-#: ../src/daemon/abrt-handle-event.c:388 ++#: ../src/daemon/abrt-handle-event.c:343 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR..." + +-#: ../src/daemon/abrt-handle-event.c:396 ++#: ../src/daemon/abrt-handle-event.c:351 + msgid "Run EVENT on DIR" + msgstr "Esegui EVENT su DIR" + +-#: ../src/daemon/abrt-handle-event.c:397 ++#: ../src/daemon/abrt-handle-event.c:352 + msgid "Communicate directly to the user" + msgstr "Comunica direttamente all'utente" + +@@ -1327,7 +1328,7 @@ msgstr "Stampa gli oops trovati sull'uscita standard" + 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:287 ../src/plugins/abrt-dump-xorg.c:255 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:263 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "Uguale a -d DumpLocation, DumpLocation viene specificato in abrt.conf" + +@@ -1335,7 +1336,7 @@ msgstr "Uguale a -d DumpLocation, DumpLocation viene specificato in abrt.conf" + msgid "Save the extracted information in PROBLEM" + msgstr "Salva l'informazione estratta in PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:264 + msgid "Make the problem directory world readable" + msgstr "Rendi la directory del problema leggibile a tutti" + +@@ -1343,7 +1344,7 @@ msgstr "Rendi la directory del problema leggibile a tutti" + msgid "Throttle problem directory creation to 1 per second" + msgstr "Aumenta la creazione della directory del problema a 1 per secondo" + +-#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:265 + msgid "Print search string(s) to stdout and exit" + msgstr "Stampa la/le stringa/stringhe ricercate in stdout ed esce" + +@@ -1360,7 +1361,7 @@ msgstr "Impossibile aggiornare il problema: travati più di un oops" + msgid "Sleeping for %d seconds" + msgstr "In sospensione per %d secondi" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1370,11 +1371,11 @@ msgstr "" + "\n" + "Estrae il crash di Xorg da FILE (o da standard input)" + +-#: ../src/plugins/abrt-dump-xorg.c:253 ++#: ../src/plugins/abrt-dump-xorg.c:261 + msgid "Print found crash data on standard output" + msgstr "Stampa i dati trovati relativi al crash sullo standard output" + +-#: ../src/plugins/abrt-dump-xorg.c:254 ++#: ../src/plugins/abrt-dump-xorg.c:262 + msgid "Create problem directory in DIR for every crash found" + msgstr "Crea una nuova directory del problema in DIR per ogni crash rilevato" + +@@ -2098,42 +2099,59 @@ msgstr "" + msgid "Can't find problem '%s'" + msgstr "Impossibile trovare il problema '%s'" + +-#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#: ../src/cli/report.c:52 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++#: ../src/cli/report.c:57 ++#, c-format ++msgid "Problem '%s' is labeled as 'not-reportable'?" ++msgstr "" ++ ++#: ../src/cli/report.c:78 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "Rimozione '%s'" + +-#: ../src/cli/report.c:70 ++#: ../src/cli/report.c:94 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:80 ++#: ../src/cli/report.c:105 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Rimuovi PROBLEM_DIR dopo la notifica" + +-#: ../src/cli/process.c:64 +-msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "Azioni: remove(rm), info(i), skip(s):" ++#: ../src/cli/report.c:106 ../src/cli/process.c:154 ++msgid "Ignore security checks to be able to report all problems" ++msgstr "" + +-#: ../src/cli/process.c:66 ++#: ../src/cli/process.c:64 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Azioni: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:78 ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "Azioni: remove(rm), info(i), skip(s):" ++ ++#: ../src/cli/process.c:79 + #, c-format + msgid "Reporting '%s'" + msgstr "Notifica '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:127 ++#: ../src/cli/process.c:128 + msgid "For next problem press ENTER:" + msgstr "Per il problema successivo premere ENTER:" + +-#: ../src/cli/process.c:138 +-msgid "Without --since argument, iterates over all detected problems." +-msgstr "Senza l'argomento --since, ripetere su tutti i problemi rilevati." ++#: ../src/cli/process.c:139 ++msgid "" ++"& process [options]\n" ++"\n" ++"Without --since argument, iterates over all detected problems." ++msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" + msgstr "Seleziona solo i problemi rilevati dopo il timestamp" + +diff --git a/po/ja.po b/po/ja.po +index 9673028..08028bd 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -12,22 +12,23 @@ + # noriko , 2014 + # noriko , 2010,2012-2013 + # carrotsoft , 2011-2012 +-# Noriko Mizumoto , 2015. #zanata ++# kmoriguc , 2017. #zanata ++# mhabrnal , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2016-06-29 15:31+0200\n" ++"POT-Creation-Date: 2017-05-15 16:10+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-07-16 10:25-0400\n" +-"Last-Translator: Noriko Mizumoto \n" ++"PO-Revision-Date: 2017-05-21 11:21+0000\n" ++"Last-Translator: kmoriguc \n" + "Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ja/)\n" + "Language: ja\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.9.5\n" ++"X-Generator: Zanata 4.1.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -63,7 +64,7 @@ msgstr "DBus で NetworkManager に接続できません: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager でネットワークの状態を判断できません: %s" + +-#: ../src/applet/applet.c:342 ../src/cli/report.c:42 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:63 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s' の所有権を取得できません" +@@ -186,7 +187,8 @@ msgid "Can't show notification: %s" + msgstr "通知を表示できません: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-server.c:114 ++#: ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio チャネルからの読み込みができません: '%s'" +@@ -358,22 +360,22 @@ msgstr "問題ディレクトリ" + msgid "Configuration file" + msgstr "設定ファイル" + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 ++#: ../src/daemon/abrt-server.c:924 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:744 + msgid "& [options]" + msgstr "& [オプション]" + +-#: ../src/daemon/abrt-server.c:803 ++#: ../src/daemon/abrt-server.c:935 + msgid "Use NUM as client uid" + msgstr "NUM をクライアントの uid として使用する" + +-#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:936 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 +-#: ../src/plugins/abrt-dump-xorg.c:252 ++#: ../src/plugins/abrt-dump-xorg.c:260 + msgid "Log to syslog" + msgstr "syslog にログする" + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 ++#: ../src/daemon/abrt-server.c:937 ../src/daemon/abrtd.c:760 + msgid "Add program names to log" + msgstr "ログにプログラム名を追加する" + +@@ -443,7 +445,7 @@ msgid "" + msgstr "'%s' の名前を紛失しました。その名前を持つ他のサービスが実行していないかチェックして下さい。\n" + + #: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:480 ++#: ../src/daemon/abrtd.c:759 + msgid "Exit after NUM seconds of inactivity" + msgstr "休止状態が NUM 秒以上続いた場合は終了します" + +@@ -451,7 +453,7 @@ msgstr "休止状態が NUM 秒以上続いた場合は終了します" + msgid "This program must be run as root." + msgstr "このプログラムは root で実行しなければなりません" + +-#: ../src/daemon/abrtd.c:432 ++#: ../src/daemon/abrtd.c:711 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -462,23 +464,23 @@ msgstr "" + "問題データは不完全なデータです。コンピューターのシャットダウン中やユーザーのログアウト中に問題が検出されると、こうしたことが発生します。役に立たない問題レポートは提出されないよう、ABRT " + "によりこの問題の送信は許可されません。この問題を解決するため時間をとって開発者にご協力頂ける場合は、開発者に直接ご連絡ください。" + +-#: ../src/daemon/abrtd.c:478 ++#: ../src/daemon/abrtd.c:757 + msgid "Do not daemonize" + msgstr "デーモン化しない" + +-#: ../src/daemon/abrtd.c:479 ++#: ../src/daemon/abrtd.c:758 + msgid "Log to syslog even with -d" + msgstr "-d オプションを使用するとログを syslog へ書き込みます" + +-#: ../src/daemon/abrt-handle-event.c:388 ++#: ../src/daemon/abrt-handle-event.c:343 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR..." + +-#: ../src/daemon/abrt-handle-event.c:396 ++#: ../src/daemon/abrt-handle-event.c:351 + msgid "Run EVENT on DIR" + msgstr "EVENT を DIR で実行する" + +-#: ../src/daemon/abrt-handle-event.c:397 ++#: ../src/daemon/abrt-handle-event.c:352 + msgid "Communicate directly to the user" + msgstr "ユーザーと直接通信する" + +@@ -1255,7 +1257,7 @@ msgstr "見つけた oops を標準出力に表示します" + msgid "Create new problem directory in DIR for every oops found" + msgstr "検出される oops ごと DIR 内に新規の問題ディレクトリを作成します" + +-#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:263 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation と同じです、 DumpLocation は abrt.conf で指定します" + +@@ -1263,7 +1265,7 @@ msgstr "-d DumpLocation と同じです、 DumpLocation は abrt.conf で指定 + msgid "Save the extracted information in PROBLEM" + msgstr "抽出した情報を PROBLEM に保存します" + +-#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:264 + msgid "Make the problem directory world readable" + msgstr "問題ディレクトリを誰でも見れるようにします" + +@@ -1271,7 +1273,7 @@ msgstr "問題ディレクトリを誰でも見れるようにします" + msgid "Throttle problem directory creation to 1 per second" + msgstr "問題のディレクトリの作成を毎秒 1 個に制限" + +-#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:265 + msgid "Print search string(s) to stdout and exit" + msgstr "検索文字列を標準出力に表示して終了" + +@@ -1288,7 +1290,7 @@ msgstr "問題を更新できません: 複数のウップスが見つかりま + msgid "Sleeping for %d seconds" + msgstr "%d 秒スリープします" + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1297,11 +1299,11 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "FILE (または標準入力) から Xorg クラッシュを抽出します" + +-#: ../src/plugins/abrt-dump-xorg.c:253 ++#: ../src/plugins/abrt-dump-xorg.c:261 + msgid "Print found crash data on standard output" + msgstr "発見したクラッシュデータを標準出力に表示する" + +-#: ../src/plugins/abrt-dump-xorg.c:254 ++#: ../src/plugins/abrt-dump-xorg.c:262 + msgid "Create problem directory in DIR for every crash found" + msgstr "検出されるクラッシュごと DIR 内に問題ディレクトリを作成します" + +@@ -1988,42 +1990,62 @@ msgstr "ABRT により %u 件の問題が検出されました。次を実行し + msgid "Can't find problem '%s'" + msgstr "問題 '%s' が見つかりません" + +-#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#: ../src/cli/report.c:52 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "問題 '%s' は報告できません" ++ ++#: ../src/cli/report.c:57 ++#, c-format ++msgid "Problem '%s' is labeled as 'not-reportable'?" ++msgstr "問題 '%s' に 'not-reportable' のラベル付けをしますか?" ++ ++#: ../src/cli/report.c:78 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "'%s' を削除中" + +-#: ../src/cli/report.c:70 ++#: ../src/cli/report.c:94 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:80 ++#: ../src/cli/report.c:105 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "レポート後に PROBLEM_DIR を削除します" + +-#: ../src/cli/process.c:64 +-msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "アクション: 削除(rm), 情報(i), スキップ(s):" ++#: ../src/cli/report.c:106 ../src/cli/process.c:154 ++msgid "Ignore security checks to be able to report all problems" ++msgstr "すべての問題を報告できるようにするためセキュリティーチェックを無視する" + +-#: ../src/cli/process.c:66 ++#: ../src/cli/process.c:64 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "アクション: 削除(rm), レポート(e), 情報(i), スキップ(s):" + +-#: ../src/cli/process.c:78 ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "アクション: 削除(rm), 情報(i), スキップ(s):" ++ ++#: ../src/cli/process.c:79 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' をレポート中" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:127 ++#: ../src/cli/process.c:128 + msgid "For next problem press ENTER:" + msgstr "次の問題に移るには、ENTER を押します:" + +-#: ../src/cli/process.c:138 +-msgid "Without --since argument, iterates over all detected problems." +-msgstr "--since 引数がないと、すべての検出済み問題を繰り返します。" ++#: ../src/cli/process.c:139 ++msgid "" ++"& process [options]\n" ++"\n" ++"Without --since argument, iterates over all detected problems." ++msgstr "" ++"& process [options]\n" ++"\n" ++"Without --since argument, iterates over all detected problems." + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" + msgstr "タイムスタンプ後に検出された問題のみを選択します" + +diff --git a/po/ko.po b/po/ko.po +index 6684de2..83a5f41 100644 +--- a/po/ko.po ++++ b/po/ko.po +@@ -8,22 +8,22 @@ + # eukim , 2014 + # Jiří Moskovčák , 2011 + # , 2011-2012, 2013 +-# Eun-Ju Kim , 2015. #zanata ++# mhabrnal , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2016-06-29 15:31+0200\n" ++"POT-Creation-Date: 2017-05-15 16:10+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-07-19 09:20-0400\n" +-"Last-Translator: Eun-Ju Kim \n" ++"PO-Revision-Date: 2017-05-16 07:08+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Korean (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ko/)\n" + "Language: ko\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.9.5\n" ++"X-Generator: Zanata 4.1.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -60,7 +60,7 @@ msgstr "DBus를 통해 NetworkManager에 연결할 수 없음: %s" + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager를 통해 네트워크 상태를 지정할 수 없음: %s" + +-#: ../src/applet/applet.c:342 ../src/cli/report.c:42 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:63 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "'%s'의 소유 권한을 갖을 수 없음 " +@@ -181,7 +181,8 @@ msgid "Can't show notification: %s" + msgstr "통지를 표시할 수 없음: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-server.c:114 ++#: ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "gio 채널에서 읽을 수 없음: '%s'" +@@ -350,22 +351,22 @@ msgstr "문제가 있는 디렉토리 " + msgid "Configuration file" + msgstr "설정 파일 " + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 ++#: ../src/daemon/abrt-server.c:924 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:744 + msgid "& [options]" + msgstr "& [options]" + +-#: ../src/daemon/abrt-server.c:803 ++#: ../src/daemon/abrt-server.c:935 + msgid "Use NUM as client uid" + msgstr "NUM을 클라이언트 uid로 사용 " + +-#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:936 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 +-#: ../src/plugins/abrt-dump-xorg.c:252 ++#: ../src/plugins/abrt-dump-xorg.c:260 + msgid "Log to syslog" + msgstr "syslog에 로그 " + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 ++#: ../src/daemon/abrt-server.c:937 ../src/daemon/abrtd.c:760 + msgid "Add program names to log" + msgstr "로그에 프로그램 이름 추가 " + +@@ -435,7 +436,7 @@ msgid "" + msgstr "'%s'의 이름이 분실되었습니다. 이 이름을 갖는 다른 서비스가 실행되고 있지 않은지 확인하십시오.\n" + + #: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:480 ++#: ../src/daemon/abrtd.c:759 + msgid "Exit after NUM seconds of inactivity" + msgstr "NUM 초 동안 동작하지 않을 경우 종료합니다 " + +@@ -443,7 +444,7 @@ msgstr "NUM 초 동안 동작하지 않을 경우 종료합니다 " + msgid "This program must be run as root." + msgstr "이 프로그램은 root로 실행해야 합니다." + +-#: ../src/daemon/abrtd.c:432 ++#: ../src/daemon/abrtd.c:711 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -455,23 +456,23 @@ msgstr "" + "정확하게 문제를 보고하기 위해 ABRT는 이 문제를 전송하는 것을 허용하지 않습니다. 시간이 허락하여 이 문제를 해결하기 위해 개발자에게 " + "도움을 주려면 개발자에게 직접 연락을 취하십시오." + +-#: ../src/daemon/abrtd.c:478 ++#: ../src/daemon/abrtd.c:757 + msgid "Do not daemonize" + msgstr "데몬화하지 않습니다 " + +-#: ../src/daemon/abrtd.c:479 ++#: ../src/daemon/abrtd.c:758 + msgid "Log to syslog even with -d" + msgstr "-d를 사용하여 syslog에 로그 " + +-#: ../src/daemon/abrt-handle-event.c:388 ++#: ../src/daemon/abrt-handle-event.c:343 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR..." + +-#: ../src/daemon/abrt-handle-event.c:396 ++#: ../src/daemon/abrt-handle-event.c:351 + msgid "Run EVENT on DIR" + msgstr "DIR에서 EVENT 실행 " + +-#: ../src/daemon/abrt-handle-event.c:397 ++#: ../src/daemon/abrt-handle-event.c:352 + msgid "Communicate directly to the user" + msgstr "사용자에게 직접 통신 " + +@@ -1240,7 +1241,7 @@ msgstr "찾아낸 oops를 표준 출력으로 인쇄합니다 " + msgid "Create new problem directory in DIR for every oops found" + msgstr "발견된 모든 oops에 대해 DIR에 새로운 문제 디렉토리를 생성 " + +-#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:263 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "-d DumpLocation과 동일, DumpLocation은 abrt.conf에 지정됩니다 " + +@@ -1248,7 +1249,7 @@ msgstr "-d DumpLocation과 동일, DumpLocation은 abrt.conf에 지정됩니다 + msgid "Save the extracted information in PROBLEM" + msgstr "추출한 정보를 PROBLEM에 저장합니다 " + +-#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:264 + msgid "Make the problem directory world readable" + msgstr "문제 디렉토리를 전역에서 읽기 가능하게 합니다 " + +@@ -1256,7 +1257,7 @@ msgstr "문제 디렉토리를 전역에서 읽기 가능하게 합니다 " + msgid "Throttle problem directory creation to 1 per second" + msgstr "1 초당 한 개로 문제 디렉토리 생성 제한 " + +-#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:265 + msgid "Print search string(s) to stdout and exit" + msgstr "검색 문자열을 표준 출력에 인쇄하고 종료 " + +@@ -1273,7 +1274,7 @@ msgstr "문제를 업데이트할 수 없습니다: 하나 이상의 oops 발견 + msgid "Sleeping for %d seconds" + msgstr "%d 초 동안 절전 " + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1282,11 +1283,11 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" + "FILE (또는 표준 입력)에서 Xorg 크래시를 추출합니다" + +-#: ../src/plugins/abrt-dump-xorg.c:253 ++#: ../src/plugins/abrt-dump-xorg.c:261 + msgid "Print found crash data on standard output" + msgstr "검색된 크래시 데이터를 표준 출력에 인쇄 " + +-#: ../src/plugins/abrt-dump-xorg.c:254 ++#: ../src/plugins/abrt-dump-xorg.c:262 + msgid "Create problem directory in DIR for every crash found" + msgstr "발견된 모든 크래시에 대해 DIR에 문제 디렉토리를 생성" + +@@ -1973,42 +1974,59 @@ msgstr "" + msgid "Can't find problem '%s'" + msgstr "문제 '%s'을/를 찾을 수 없음" + +-#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#: ../src/cli/report.c:52 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++#: ../src/cli/report.c:57 ++#, c-format ++msgid "Problem '%s' is labeled as 'not-reportable'?" ++msgstr "" ++ ++#: ../src/cli/report.c:78 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "'%s' 삭제 중 " + +-#: ../src/cli/report.c:70 ++#: ../src/cli/report.c:94 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:80 ++#: ../src/cli/report.c:105 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "보고 후 PROBLEM_DIR 삭제 " + +-#: ../src/cli/process.c:64 +-msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "동작: 삭제(rm), 정보(i), 생략(s):" ++#: ../src/cli/report.c:106 ../src/cli/process.c:154 ++msgid "Ignore security checks to be able to report all problems" ++msgstr "" + +-#: ../src/cli/process.c:66 ++#: ../src/cli/process.c:64 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "동작: 삭제(rm), 보고 (e), 정보(i), 생략(s):" + +-#: ../src/cli/process.c:78 ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "동작: 삭제(rm), 정보(i), 생략(s):" ++ ++#: ../src/cli/process.c:79 + #, c-format + msgid "Reporting '%s'" + msgstr "'%s' 보고 중 " + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:127 ++#: ../src/cli/process.c:128 + msgid "For next problem press ENTER:" + msgstr "다음 문제로 이동하려면 ENTER를 누릅니다: " + +-#: ../src/cli/process.c:138 +-msgid "Without --since argument, iterates over all detected problems." +-msgstr "--since 인수가 없으면 감지된 모든 문제를 반복합니다 " ++#: ../src/cli/process.c:139 ++msgid "" ++"& process [options]\n" ++"\n" ++"Without --since argument, iterates over all detected problems." ++msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" + msgstr "타임 스탬프 후 감지된 문제만 선택합니다 " + +diff --git a/po/pt_BR.po b/po/pt_BR.po +index 7a1098b..04c8aee 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -22,22 +22,22 @@ + # Taylon Silmer , 2011 + # Teseu , 2011 + # Vitor Lobo Ramos , 2014 +-# Daniel Lara , 2016. #zanata ++# mhabrnal , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2016-06-29 15:31+0200\n" ++"POT-Creation-Date: 2017-05-15 16:10+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2016-03-02 01:16-0500\n" ++"PO-Revision-Date: 2017-05-16 07:09+0000\n" + "Last-Translator: Copied by Zanata \n" + "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" + "fedora-abrt/language/pt_BR/)\n" + "Language: pt-BR\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 3.9.5\n" ++"X-Generator: Zanata 4.1.1\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -84,7 +84,7 @@ msgid "Can't determine network status via NetworkManager: %s" + msgstr "Não foi possível determinar o status usando o NetworkManager: %s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/applet/applet.c:342 ../src/cli/report.c:42 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:63 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Não foi possível obter propriedade de '%s'" +@@ -234,7 +234,8 @@ msgstr "Não é possível mostrar a notificação: %s" + + # translation auto-copied from project abrt, version master, document abrt + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-server.c:114 ++#: ../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'" +@@ -436,25 +437,25 @@ msgid "Configuration file" + msgstr "Arquivo de Configuração" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 ++#: ../src/daemon/abrt-server.c:924 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:744 + msgid "& [options]" + msgstr "& [options]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:803 ++#: ../src/daemon/abrt-server.c:935 + msgid "Use NUM as client uid" + msgstr "Utilize o NUM como uid de cliente" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:936 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 +-#: ../src/plugins/abrt-dump-xorg.c:252 ++#: ../src/plugins/abrt-dump-xorg.c:260 + msgid "Log to syslog" + msgstr "Log para o syslog" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 ++#: ../src/daemon/abrt-server.c:937 ../src/daemon/abrtd.c:760 + msgid "Add program names to log" + msgstr "Adicionar os nomes dos programas ao log" + +@@ -541,7 +542,7 @@ msgstr "" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:480 ++#: ../src/daemon/abrtd.c:759 + msgid "Exit after NUM seconds of inactivity" + msgstr "Sai após os segundos NUM de inatividade" + +@@ -551,7 +552,7 @@ msgid "This program must be run as root." + msgstr "Este programa deve estar sendo executado como root." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:432 ++#: ../src/daemon/abrtd.c:711 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -567,27 +568,27 @@ msgstr "" + "favor contacte-os diretamente." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:478 ++#: ../src/daemon/abrtd.c:757 + msgid "Do not daemonize" + msgstr "Não criar um daemon" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:479 ++#: ../src/daemon/abrtd.c:758 + msgid "Log to syslog even with -d" + msgstr "Registrar no syslog mesmo com o -d" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-event.c:388 ++#: ../src/daemon/abrt-handle-event.c:343 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR..." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-event.c:396 ++#: ../src/daemon/abrt-handle-event.c:351 + msgid "Run EVENT on DIR" + msgstr "Executar o EVENT no DIR" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-event.c:397 ++#: ../src/daemon/abrt-handle-event.c:352 + msgid "Communicate directly to the user" + msgstr "Comunicar diretamente com o usuário" + +@@ -1454,7 +1455,7 @@ 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" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:263 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "" + "Mesmo que -d DumpLocation, DumpLocation está especificado no abrt.conf" +@@ -1464,7 +1465,7 @@ msgid "Save the extracted information in PROBLEM" + msgstr "Salva a informação extraída em PROBLEM" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:264 + msgid "Make the problem directory world readable" + msgstr "Tornar o diretório de problema mundial legível" + +@@ -1473,7 +1474,7 @@ msgid "Throttle problem directory creation to 1 per second" + msgstr "Alterna a criação de diretório do problema para 1 por segundo" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:265 + msgid "Print search string(s) to stdout and exit" + msgstr "Imprima a(s) faixa(s) de busca no stdout e saia" + +@@ -1492,7 +1493,7 @@ msgid "Sleeping for %d seconds" + msgstr "Dormindo por %d segundos" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1503,12 +1504,12 @@ msgstr "" + "Extraia o travamento do Xorg doFILE (ou entrada padrão)" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:253 ++#: ../src/plugins/abrt-dump-xorg.c:261 + msgid "Print found crash data on standard output" + msgstr "Imprima dados de travamento encontrados na saída do padrão" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:254 ++#: ../src/plugins/abrt-dump-xorg.c:262 + msgid "Create problem directory in DIR for every crash found" + msgstr "" + "Criar diretório de problema no DIR para todos os travamentos encontrados" +@@ -2343,42 +2344,59 @@ msgstr "" + msgid "Can't find problem '%s'" + msgstr "Não foi possível encontrar problema '%s'" + +-#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#: ../src/cli/report.c:52 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++#: ../src/cli/report.c:57 ++#, c-format ++msgid "Problem '%s' is labeled as 'not-reportable'?" ++msgstr "" ++ ++#: ../src/cli/report.c:78 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "Removendo '%s'" + +-#: ../src/cli/report.c:70 ++#: ../src/cli/report.c:94 + msgid "& report [options] DIR..." + msgstr "& relatório [opções] DIR..." + +-#: ../src/cli/report.c:80 ++#: ../src/cli/report.c:105 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Remover PROBLEM_DIR após relatar" + +-#: ../src/cli/process.c:64 +-msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "Ações: remover (rm), info(i), skip(s):" ++#: ../src/cli/report.c:106 ../src/cli/process.c:154 ++msgid "Ignore security checks to be able to report all problems" ++msgstr "" + +-#: ../src/cli/process.c:66 ++#: ../src/cli/process.c:64 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Acões: remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:78 ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "Ações: remover (rm), info(i), skip(s):" ++ ++#: ../src/cli/process.c:79 + #, c-format + msgid "Reporting '%s'" + msgstr "Reportando '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:127 ++#: ../src/cli/process.c:128 + msgid "For next problem press ENTER:" + msgstr "Para o próximo problema, pressione ENTER:" + +-#: ../src/cli/process.c:138 +-msgid "Without --since argument, iterates over all detected problems." +-msgstr "Sem o argumento --since, itera em todos os problemas detectados." ++#: ../src/cli/process.c:139 ++msgid "" ++"& process [options]\n" ++"\n" ++"Without --since argument, iterates over all detected problems." ++msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" + msgstr "Seleciona somente problemas detectados após o timestamp" + +diff --git a/po/ru.po b/po/ru.po +index a9390da..e235dee 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -12,24 +12,23 @@ + # Stanislav Hanzhin , 2011 + # Yulia , 2012,2014 + # Yuri Khabarov , 2011 +-# Igor Gorbounov , 2015. #zanata +-# yuliya , 2015. #zanata ++# mhabrnal , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2016-06-29 15:31+0200\n" ++"POT-Creation-Date: 2017-05-15 16:10+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-07-20 08:46-0400\n" +-"Last-Translator: yuliya \n" ++"PO-Revision-Date: 2017-05-16 07:08+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Russian (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ru/)\n" + "Language: ru\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 3.9.5\n" ++"X-Generator: Zanata 4.1.1\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -67,7 +66,7 @@ msgstr "Не удалось подключиться к NetworkManager чере + msgid "Can't determine network status via NetworkManager: %s" + msgstr "NetworkManager не смог определить статус сети: %s" + +-#: ../src/applet/applet.c:342 ../src/cli/report.c:42 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:63 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "Не удается стать владельцем «%s»" +@@ -191,7 +190,8 @@ msgid "Can't show notification: %s" + msgstr "Не удалось показать уведомление: %s" + + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-server.c:114 ++#: ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "Не удалось выполнить чтение из канала gio: «%s»" +@@ -375,22 +375,22 @@ msgstr "Каталог с данными сбоя" + msgid "Configuration file" + msgstr "Файл конфигурации" + +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 ++#: ../src/daemon/abrt-server.c:924 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:744 + msgid "& [options]" + msgstr "& [параметры]" + +-#: ../src/daemon/abrt-server.c:803 ++#: ../src/daemon/abrt-server.c:935 + msgid "Use NUM as client uid" + msgstr "Использовать NUM как uid клиента" + +-#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:936 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 +-#: ../src/plugins/abrt-dump-xorg.c:252 ++#: ../src/plugins/abrt-dump-xorg.c:260 + msgid "Log to syslog" + msgstr "Запись в журнал" + +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 ++#: ../src/daemon/abrt-server.c:937 ../src/daemon/abrtd.c:760 + msgid "Add program names to log" + msgstr "Добавить названия программ в журнал" + +@@ -464,7 +464,7 @@ msgstr "" + "использующая это имя.\n" + + #: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:480 ++#: ../src/daemon/abrtd.c:759 + msgid "Exit after NUM seconds of inactivity" + msgstr "Выйти после NUM секунд бездействия" + +@@ -473,7 +473,7 @@ msgid "This program must be run as root." + msgstr "" + "Эта программа должна запускаться от имени привелигированного пользователя." + +-#: ../src/daemon/abrtd.c:432 ++#: ../src/daemon/abrtd.c:711 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -487,23 +487,23 @@ msgstr "" + "об этой ошибке. Если у вас есть время, и вы хотите помочь разработчикам в их " + "усилиях разобраться с этим сбоем, связывайтесь с ними напрямую." + +-#: ../src/daemon/abrtd.c:478 ++#: ../src/daemon/abrtd.c:757 + msgid "Do not daemonize" + msgstr "Не выполнять как службу" + +-#: ../src/daemon/abrtd.c:479 ++#: ../src/daemon/abrtd.c:758 + msgid "Log to syslog even with -d" + msgstr "Запись в журнал даже с -d" + +-#: ../src/daemon/abrt-handle-event.c:388 ++#: ../src/daemon/abrt-handle-event.c:343 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR..." + +-#: ../src/daemon/abrt-handle-event.c:396 ++#: ../src/daemon/abrt-handle-event.c:351 + msgid "Run EVENT on DIR" + msgstr "Запуск EVENT в DIR" + +-#: ../src/daemon/abrt-handle-event.c:397 ++#: ../src/daemon/abrt-handle-event.c:352 + msgid "Communicate directly to the user" + msgstr "Взаимодействие с пользователем напрямую" + +@@ -1308,7 +1308,7 @@ msgstr "Вывести найденные ошибки в stdout" + msgid "Create new problem directory in DIR for every oops found" + msgstr "Создавать каталог в DIR для каждого сбоя oops" + +-#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:263 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "То же, что и \"-d DumpLocation\", \"DumpLocation\" задается в abrt.conf" + +@@ -1316,7 +1316,7 @@ msgstr "То же, что и \"-d DumpLocation\", \"DumpLocation\" задает + msgid "Save the extracted information in PROBLEM" + msgstr "Сохранить извлеченную информацию в PROBLEM" + +-#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:264 + msgid "Make the problem directory world readable" + msgstr "Открыть доступ чтения к каталогу сбоев" + +@@ -1324,7 +1324,7 @@ msgstr "Открыть доступ чтения к каталогу сбоев" + msgid "Throttle problem directory creation to 1 per second" + msgstr "Повторить создание каталога через 1 секунду" + +-#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:265 + msgid "Print search string(s) to stdout and exit" + msgstr "Вывести строку (строки) поиска в stdout и выйти" + +@@ -1341,7 +1341,7 @@ msgstr "Не удалось обновить проблему: найдено н + msgid "Sleeping for %d seconds" + msgstr "Переход в режим ожидания на %d сек." + +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1351,11 +1351,11 @@ msgstr "" + "\n" + "Извлекать данные о сбое Xorg из FILE (или стандартного ввода)" + +-#: ../src/plugins/abrt-dump-xorg.c:253 ++#: ../src/plugins/abrt-dump-xorg.c:261 + msgid "Print found crash data on standard output" + msgstr "Вывести найденные данные о сбое в стандартный вывод" + +-#: ../src/plugins/abrt-dump-xorg.c:254 ++#: ../src/plugins/abrt-dump-xorg.c:262 + msgid "Create problem directory in DIR for every crash found" + msgstr "Создавать каталог в DIR для каждого сбоя" + +@@ -2073,44 +2073,59 @@ msgstr "" + msgid "Can't find problem '%s'" + msgstr "Не удалось найти информацию об ошибке «%s" + +-#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#: ../src/cli/report.c:52 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++#: ../src/cli/report.c:57 ++#, c-format ++msgid "Problem '%s' is labeled as 'not-reportable'?" ++msgstr "" ++ ++#: ../src/cli/report.c:78 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "Удаление «%s»" + +-#: ../src/cli/report.c:70 ++#: ../src/cli/report.c:94 + msgid "& report [options] DIR..." + msgstr "& report [параметры] DIR..." + +-#: ../src/cli/report.c:80 ++#: ../src/cli/report.c:105 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "Удалить PROBLEM_DIR после отправки отчета" + +-#: ../src/cli/process.c:64 +-msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "Действия: удалить (rm), информация (i), пропустить (s):" ++#: ../src/cli/report.c:106 ../src/cli/process.c:154 ++msgid "Ignore security checks to be able to report all problems" ++msgstr "" + +-#: ../src/cli/process.c:66 ++#: ../src/cli/process.c:64 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "Действия: удалить (rm), сообщить (e), информация (i), пропустить (s):" + +-#: ../src/cli/process.c:78 ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "Действия: удалить (rm), информация (i), пропустить (s):" ++ ++#: ../src/cli/process.c:79 + #, c-format + msgid "Reporting '%s'" + msgstr "Отчет по «%s»..." + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:127 ++#: ../src/cli/process.c:128 + msgid "For next problem press ENTER:" + msgstr "Для перехода к следующей проблеме нажмите ENTER:" + +-#: ../src/cli/process.c:138 +-msgid "Without --since argument, iterates over all detected problems." ++#: ../src/cli/process.c:139 ++msgid "" ++"& process [options]\n" ++"\n" ++"Without --since argument, iterates over all detected problems." + msgstr "" +-"Если аргумент --since не указан, обнаруженные ошибки будут обрабатываться " +-"последовательно" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" + msgstr "Выбор сбоев, обнаруженных после заданного момента времени" + +diff --git a/po/zh_CN.po b/po/zh_CN.po +index d66dbb8..8531a11 100644 +--- a/po/zh_CN.po ++++ b/po/zh_CN.po +@@ -14,23 +14,22 @@ + # wangwenye , 2013 + # yusuf , 2011 + # Zamir SUN , 2013 +-# Leah Liu , 2015. #zanata +-# Alex Eng , 2016. #zanata ++# mhabrnal , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2016-06-29 15:31+0200\n" ++"POT-Creation-Date: 2017-05-15 16:10+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2016-05-24 01:05-0400\n" ++"PO-Revision-Date: 2017-05-16 07:08+0000\n" + "Last-Translator: Copied by Zanata \n" + "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora-" + "abrt/language/zh_CN/)\n" +-"Language: zh-CN\n" ++"Language: zh-Hans\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.9.5\n" ++"X-Generator: Zanata 4.1.1\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -71,7 +70,7 @@ msgid "Can't determine network status via NetworkManager: %s" + msgstr "无法通过 NetworkManager 确定网络状态:%s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/applet/applet.c:342 ../src/cli/report.c:42 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:63 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "无法获取 '%s' 的所有权" +@@ -215,7 +214,8 @@ msgstr "无法显示通知:%s" + + # translation auto-copied from project abrt, version master, document abrt + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-server.c:114 ++#: ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "无法读取 gio 频道:'%s'" +@@ -398,25 +398,25 @@ msgid "Configuration file" + msgstr "配置文件" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 ++#: ../src/daemon/abrt-server.c:924 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:744 + msgid "& [options]" + msgstr "& [options]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:803 ++#: ../src/daemon/abrt-server.c:935 + msgid "Use NUM as client uid" + msgstr "使用 NUM 作为客户端 UID" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:936 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 +-#: ../src/plugins/abrt-dump-xorg.c:252 ++#: ../src/plugins/abrt-dump-xorg.c:260 + msgid "Log to syslog" + msgstr "记录至 syslog" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 ++#: ../src/daemon/abrt-server.c:937 ../src/daemon/abrtd.c:760 + msgid "Add program names to log" + msgstr "在日志中添加程序名" + +@@ -498,7 +498,7 @@ msgstr "名称 '%s' 已丢失,请检查其它拥有该名称的服务是否未 + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:480 ++#: ../src/daemon/abrtd.c:759 + msgid "Exit after NUM seconds of inactivity" + msgstr "闲置 NUM 秒后退出" + +@@ -508,7 +508,7 @@ msgid "This program must be run as root." + msgstr "此程序必须以 root 权限运行。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:432 ++#: ../src/daemon/abrtd.c:711 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -520,27 +520,27 @@ msgstr "" + "将不允许您提交该问题。如果您有时间想帮助开发者找出问题的根源,请直接与他们联系。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:478 ++#: ../src/daemon/abrtd.c:757 + msgid "Do not daemonize" + msgstr "不要在后台运行" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:479 ++#: ../src/daemon/abrtd.c:758 + msgid "Log to syslog even with -d" + msgstr "即使加入 -d 选项也记录至 syslog" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-event.c:388 ++#: ../src/daemon/abrt-handle-event.c:343 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR......" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-event.c:396 ++#: ../src/daemon/abrt-handle-event.c:351 + msgid "Run EVENT on DIR" + msgstr "在 DIR 中运行 EVENT " + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-event.c:397 ++#: ../src/daemon/abrt-handle-event.c:352 + msgid "Communicate directly to the user" + msgstr "直接联系用户" + +@@ -1394,7 +1394,7 @@ msgid "Create new problem directory in DIR for every oops found" + msgstr "在 DIR 中为每个发现的 oops 生成新问题目录" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:263 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "与 -d DumpLocation 相同,是在 abrt.conf 中指定 DumpLocation。" + +@@ -1404,7 +1404,7 @@ msgid "Save the extracted information in PROBLEM" + msgstr "保存提取信息到PROBLEM" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:264 + msgid "Make the problem directory world readable" + msgstr "使问题目录可读" + +@@ -1414,7 +1414,7 @@ msgid "Throttle problem directory creation to 1 per second" + msgstr "每 1 秒创建一个控流问题目录" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:265 + msgid "Print search string(s) to stdout and exit" + msgstr "输出搜索字符串至标准输出并退出" + +@@ -1434,7 +1434,7 @@ msgid "Sleeping for %d seconds" + msgstr "休眠 %d 秒" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1444,12 +1444,12 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "从文件 FILE (或标准输入)提取 Xorg 崩溃信息" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:253 ++#: ../src/plugins/abrt-dump-xorg.c:261 + msgid "Print found crash data on standard output" + msgstr "在标准输出上输出找到的崩溃数据" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:254 ++#: ../src/plugins/abrt-dump-xorg.c:262 + msgid "Create problem directory in DIR for every crash found" + msgstr "在 DIR 中为每个发现的崩溃生成新的问题目录" + +@@ -2247,42 +2247,59 @@ msgstr "ABRT 已检测到 '%u' 个问题。预了解详细信息请执行:abrt + msgid "Can't find problem '%s'" + msgstr "无法找到问题 '%s'" + +-#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#: ../src/cli/report.c:52 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++#: ../src/cli/report.c:57 ++#, c-format ++msgid "Problem '%s' is labeled as 'not-reportable'?" ++msgstr "" ++ ++#: ../src/cli/report.c:78 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "正在删除 '%s'" + +-#: ../src/cli/report.c:70 ++#: ../src/cli/report.c:94 + msgid "& report [options] DIR..." + msgstr "& report [options] DIR..." + +-#: ../src/cli/report.c:80 ++#: ../src/cli/report.c:105 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "报告后删除 PROBLEM_DIR" + +-#: ../src/cli/process.c:64 +-msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "动作:remove(rm), info(i), skip(s):" ++#: ../src/cli/report.c:106 ../src/cli/process.c:154 ++msgid "Ignore security checks to be able to report all problems" ++msgstr "" + +-#: ../src/cli/process.c:66 ++#: ../src/cli/process.c:64 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "动作:remove(rm), report(e), info(i), skip(s):" + +-#: ../src/cli/process.c:78 ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "动作:remove(rm), info(i), skip(s):" ++ ++#: ../src/cli/process.c:79 + #, c-format + msgid "Reporting '%s'" + msgstr "正在报告 '%s'" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:127 ++#: ../src/cli/process.c:128 + msgid "For next problem press ENTER:" + msgstr "下一个问题请按 ENTER:" + +-#: ../src/cli/process.c:138 +-msgid "Without --since argument, iterates over all detected problems." +-msgstr "没有 --since 参数,则重复所有探测到的问题。" ++#: ../src/cli/process.c:139 ++msgid "" ++"& process [options]\n" ++"\n" ++"Without --since argument, iterates over all detected problems." ++msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" + msgstr "只选择时间戳之后探测到的问题" + +diff --git a/po/zh_TW.po b/po/zh_TW.po +index e93a848..48b1b20 100644 +--- a/po/zh_TW.po ++++ b/po/zh_TW.po +@@ -6,23 +6,22 @@ + # Chester Cheng , 2012,2014 + # Jiří Moskovčák , 2011 + # Terry Chuang , 2014 +-# Chester Cheng , 2015. #zanata +-# Terry Chuang , 2015. #zanata ++# mhabrnal , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" + "Report-Msgid-Bugs-To: jmoskovc@redhat.com\n" +-"POT-Creation-Date: 2016-06-29 15:31+0200\n" ++"POT-Creation-Date: 2017-05-15 16:10+0200\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2015-07-17 07:14-0400\n" +-"Last-Translator: Terry Chuang \n" ++"PO-Revision-Date: 2017-05-16 07:08+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-" + "abrt/language/zh_TW/)\n" +-"Language: zh-TW\n" ++"Language: zh-Hant\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 3.9.5\n" ++"X-Generator: Zanata 4.1.1\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -63,7 +62,7 @@ msgid "Can't determine network status via NetworkManager: %s" + msgstr "無法透過 NetworkManager 判定網路狀態:%s" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/applet/applet.c:342 ../src/cli/report.c:42 ++#: ../src/applet/applet.c:342 ../src/cli/report.c:63 + #, c-format + msgid "Can't take ownership of '%s'" + msgstr "無法掌握「%s」的擁有權" +@@ -207,7 +206,8 @@ msgstr "無法顯示通知:%s" + + # translation auto-copied from project abrt, version master, document abrt + #. TODO: Terminate child's process? +-#: ../src/applet/applet.c:1098 ../src/daemon/abrt-upload-watch.c:168 ++#: ../src/applet/applet.c:1098 ../src/daemon/abrt-server.c:114 ++#: ../src/daemon/abrt-upload-watch.c:168 + #, c-format + msgid "Can't read from gio channel: '%s'" + msgstr "無法從 gio 通道讀取:「%s」" +@@ -398,25 +398,25 @@ msgid "Configuration file" + msgstr "組態檔" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:792 ../src/dbus/abrt-dbus.c:1004 +-#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:465 ++#: ../src/daemon/abrt-server.c:924 ../src/dbus/abrt-dbus.c:1004 ++#: ../src/dbus/abrt-configuration.c:1002 ../src/daemon/abrtd.c:744 + msgid "& [options]" + msgstr "& [選項]" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:803 ++#: ../src/daemon/abrt-server.c:935 + msgid "Use NUM as client uid" + msgstr "使用 NUM 作為客戶端 UID" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:804 ../src/daemon/abrt-upload-watch.c:280 ++#: ../src/daemon/abrt-server.c:936 ../src/daemon/abrt-upload-watch.c:280 + #: ../src/plugins/abrt-watch-log.c:153 ../src/plugins/abrt-dump-oops.c:281 +-#: ../src/plugins/abrt-dump-xorg.c:252 ++#: ../src/plugins/abrt-dump-xorg.c:260 + msgid "Log to syslog" + msgstr "紀錄至 syslog" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-server.c:805 ../src/daemon/abrtd.c:481 ++#: ../src/daemon/abrt-server.c:937 ../src/daemon/abrtd.c:760 + msgid "Add program names to log" + msgstr "加入程式名稱至紀錄檔" + +@@ -499,7 +499,7 @@ msgstr "「%s」名稱已遺失,請確認其他擁有該名稱的服務並未 + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/dbus/abrt-dbus.c:1013 ../src/dbus/abrt-configuration.c:1011 +-#: ../src/daemon/abrtd.c:480 ++#: ../src/daemon/abrtd.c:759 + msgid "Exit after NUM seconds of inactivity" + msgstr "在停止使用 NUM 秒後離開" + +@@ -509,7 +509,7 @@ msgid "This program must be run as root." + msgstr "此程式必須以 root 身份執行。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:432 ++#: ../src/daemon/abrtd.c:711 + msgid "" + "The problem data are incomplete. This usually happens when a problem is " + "detected while computer is shutting down or user is logging out. In order to " +@@ -521,27 +521,27 @@ msgstr "" + "不會允許您提交此種問題報告。若您有時間,且也想幫助開發者來處理此問題,請直接聯繫開發者。" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:478 ++#: ../src/daemon/abrtd.c:757 + msgid "Do not daemonize" + msgstr "不要在幕後運行" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrtd.c:479 ++#: ../src/daemon/abrtd.c:758 + msgid "Log to syslog even with -d" + msgstr "即使加上 -d 參數也紀錄至 syslog" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-event.c:388 ++#: ../src/daemon/abrt-handle-event.c:343 + msgid "& [-v -i] -e|--event EVENT DIR..." + msgstr "& [-v -i] -e|--event EVENT DIR..." + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-event.c:396 ++#: ../src/daemon/abrt-handle-event.c:351 + msgid "Run EVENT on DIR" + msgstr "於 DIR 執行 EVENT" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/daemon/abrt-handle-event.c:397 ++#: ../src/daemon/abrt-handle-event.c:352 + msgid "Communicate directly to the user" + msgstr "直接與使用者溝通" + +@@ -1392,7 +1392,7 @@ msgid "Create new problem directory in DIR for every oops found" + msgstr "在 DIR 內為每個找到的 oops 建立新的問題目錄" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:255 ++#: ../src/plugins/abrt-dump-oops.c:287 ../src/plugins/abrt-dump-xorg.c:263 + msgid "Same as -d DumpLocation, DumpLocation is specified in abrt.conf" + msgstr "與 -d DumpLocation 相同,DumpLocation 於 abrt.conf 內指定" + +@@ -1402,7 +1402,7 @@ msgid "Save the extracted information in PROBLEM" + msgstr "將抽出的資訊存入 PROBLEM 中" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:256 ++#: ../src/plugins/abrt-dump-oops.c:289 ../src/plugins/abrt-dump-xorg.c:264 + msgid "Make the problem directory world readable" + msgstr "讓問題目錄全世界都可以讀取" + +@@ -1412,7 +1412,7 @@ msgid "Throttle problem directory creation to 1 per second" + msgstr "節制問題目錄的建立速度為每秒 1 個" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:257 ++#: ../src/plugins/abrt-dump-oops.c:291 ../src/plugins/abrt-dump-xorg.c:265 + msgid "Print search string(s) to stdout and exit" + msgstr "將搜尋字串列印在 stdout 上並離開" + +@@ -1432,7 +1432,7 @@ msgid "Sleeping for %d seconds" + msgstr "正睡眠 %d 秒" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:245 ++#: ../src/plugins/abrt-dump-xorg.c:253 + msgid "" + "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "\n" +@@ -1442,12 +1442,12 @@ msgstr "& [-vsoxm] [-d DIR]/[-D] [FILE]\n" + "從 FILE (或標準輸出) 抽出 Xorg 當機資訊" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:253 ++#: ../src/plugins/abrt-dump-xorg.c:261 + msgid "Print found crash data on standard output" + msgstr "將找到的崩潰資料列印在標準輸出上" + + # translation auto-copied from project abrt, version master, document abrt +-#: ../src/plugins/abrt-dump-xorg.c:254 ++#: ../src/plugins/abrt-dump-xorg.c:262 + msgid "Create problem directory in DIR for every crash found" + msgstr "在 DIR 內為每個找到的當機資料建立問題目錄" + +@@ -2247,42 +2247,59 @@ msgstr "ABRT 已偵測到 %u 項問題。若要取得更多資訊,請執行: + msgid "Can't find problem '%s'" + msgstr "找不到問題「%s」" + +-#: ../src/cli/report.c:54 ../src/cli/process.c:70 ++#: ../src/cli/report.c:52 ++#, c-format ++msgid "Problem '%s' cannot be reported" ++msgstr "" ++ ++#: ../src/cli/report.c:57 ++#, c-format ++msgid "Problem '%s' is labeled as 'not-reportable'?" ++msgstr "" ++ ++#: ../src/cli/report.c:78 ../src/cli/process.c:70 + #, c-format + msgid "Deleting '%s'" + msgstr "正在刪除「%s」" + +-#: ../src/cli/report.c:70 ++#: ../src/cli/report.c:94 + msgid "& report [options] DIR..." + msgstr "& report [選項] DIR..." + +-#: ../src/cli/report.c:80 ++#: ../src/cli/report.c:105 + msgid "Remove PROBLEM_DIR after reporting" + msgstr "在回報後移除 PROBLEM_DIR" + +-#: ../src/cli/process.c:64 +-msgid "Actions: remove(rm), info(i), skip(s):" +-msgstr "可用動作:移除 remove(rm)、資訊 info(i)、略過 skip(s):" ++#: ../src/cli/report.c:106 ../src/cli/process.c:154 ++msgid "Ignore security checks to be able to report all problems" ++msgstr "" + +-#: ../src/cli/process.c:66 ++#: ../src/cli/process.c:64 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" + msgstr "可用動作:移除 remove(rm)、回報 report(e)、資訊 info(i)、略過 skip(s):" + +-#: ../src/cli/process.c:78 ++#: ../src/cli/process.c:66 ++msgid "Actions: remove(rm), info(i), skip(s):" ++msgstr "可用動作:移除 remove(rm)、資訊 info(i)、略過 skip(s):" ++ ++#: ../src/cli/process.c:79 + #, c-format + msgid "Reporting '%s'" + msgstr "正在回報「%s」" + + #. dummy must be free because the function ask allocate memory +-#: ../src/cli/process.c:127 ++#: ../src/cli/process.c:128 + msgid "For next problem press ENTER:" + msgstr "下個問題請按 ENTER 鍵。" + +-#: ../src/cli/process.c:138 +-msgid "Without --since argument, iterates over all detected problems." +-msgstr "若不用 --since 引數,則會在所有偵測到的問題之間迭代。" ++#: ../src/cli/process.c:139 ++msgid "" ++"& process [options]\n" ++"\n" ++"Without --since argument, iterates over all detected problems." ++msgstr "" + +-#: ../src/cli/process.c:144 ++#: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" + msgstr "僅選取時間戳記之後的問題" + +-- +1.8.3.1 + diff --git a/SOURCES/0274-python-provide-more-information-about-exception.patch b/SOURCES/0274-python-provide-more-information-about-exception.patch new file mode 100644 index 0000000..491090c --- /dev/null +++ b/SOURCES/0274-python-provide-more-information-about-exception.patch @@ -0,0 +1,45 @@ +From e12300d1a8ec7e61db2838cb0b7c3dce193f1464 Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Mon, 10 Apr 2017 13:56:17 +0200 +Subject: [PATCH] python: provide more information about exception + +Message was modified to provide more information about where exception happened. + +$ python -c 1/0 + +Before: +python: detected unhandled Python exception + +Now: +python: detected unhandled Python exception in 'interactive mode (python -c ...)' + +Related to: #1361116 + +Signed-off-by: Martin Kutlak +Signed-off-by: Matej Habrnal + +Conflicts: + src/hooks/abrt_exception_handler3.py.in + tests/runtests/python3-addon/runtest.sh +--- + src/hooks/abrt_exception_handler.py.in | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git a/src/hooks/abrt_exception_handler.py.in b/src/hooks/abrt_exception_handler.py.in +index 7455663..dacde37 100644 +--- a/src/hooks/abrt_exception_handler.py.in ++++ b/src/hooks/abrt_exception_handler.py.in +@@ -220,7 +220,9 @@ def handleMyException((etype, value, tb)): + ## argv0 is:-c + # Are there other cases when sys.argv[0][0] is "-"? + if not sys.argv[0] or sys.argv[0][0] == "-": +- syslog("detected unhandled Python exception") ++ einfo = "" if not sys.argv[0] else " (python %s ...)" % sys.argv[0] ++ syslog("detected unhandled Python exception in 'interactive mode%s'" ++ % einfo) + raise Exception + + # Ignore scripts with relative path unless "RequireAbsolutePath = no". +-- +1.8.3.1 + diff --git a/SOURCES/0276-Translation-updates.patch b/SOURCES/0276-Translation-updates.patch new file mode 100644 index 0000000..27ee142 --- /dev/null +++ b/SOURCES/0276-Translation-updates.patch @@ -0,0 +1,477 @@ +From a14728448321f220ae50e8e50fa9031816cc93e8 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 10 Aug 2017 12:53:40 +0200 +Subject: [PATCH] Translation updates + +Related to #1271213 + +Signed-off-by: Matej Habrnal +--- + po/de.po | 9 +++++---- + po/es.po | 24 +++++++++++++++++------- + po/fr.po | 11 +++++++---- + po/it.po | 8 ++++---- + po/ja.po | 21 +++++++++------------ + po/ko.po | 8 ++++---- + po/pt_BR.po | 17 +++++++++++------ + po/ru.po | 12 +++++++----- + po/zh_CN.po | 13 +++++++------ + po/zh_TW.po | 11 ++++++----- + 10 files changed, 77 insertions(+), 57 deletions(-) + +diff --git a/po/de.po b/po/de.po +index a53667a..bbefefa 100644 +--- a/po/de.po ++++ b/po/de.po +@@ -13,7 +13,8 @@ + # noxin , 2013 + # Rainer Gromansperg , 2013 + # Roman Spirgi , 2011-2012 +-# mhabrnal , 2017. #zanata ++# Hedda Peters , 2015. #zanata ++# Roman Spirgi , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" +@@ -22,13 +23,13 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-05-16 07:08+0000\n" +-"Last-Translator: Copied by Zanata \n" ++"PO-Revision-Date: 2015-07-16 08:12-0400\n" ++"Last-Translator: Hedda Peters \n" + "Language-Team: German (http://www.transifex.com/projects/p/fedora-abrt/" + "language/de/)\n" + "Language: de\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 4.1.1\n" ++"X-Generator: Zanata 3.9.6\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +diff --git a/po/es.po b/po/es.po +index a661355..ba70814 100644 +--- a/po/es.po ++++ b/po/es.po +@@ -19,7 +19,12 @@ + # Luis Bazán , 2011 + # Israel Torres , 2013 + # vareli , 2013 +-# mhabrnal , 2017. #zanata ++# Alex Puchades , 2015. #zanata ++# Gerardo Rosales , 2015. #zanata ++# Gladys Guerrero Lozano , 2015. #zanata ++# Jakub Filak , 2015. #zanata ++# Máximo Castañeda Riloba , 2016. #zanata ++# Máximo Castañeda Riloba , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" +@@ -28,13 +33,13 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-05-16 07:08+0000\n" +-"Last-Translator: Copied by Zanata \n" ++"PO-Revision-Date: 2017-05-20 08:25-0400\n" ++"Last-Translator: Máximo Castañeda Riloba \n" + "Language-Team: Spanish (http://www.transifex.com/projects/p/fedora-abrt/" + "language/es/)\n" + "Language: es\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 4.1.1\n" ++"X-Generator: Zanata 3.9.6\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -251,7 +256,7 @@ msgstr "Informe acortado" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:4 + msgid "Silent shortened reporting" +-msgstr "Informe acortado en silencio" ++msgstr "Presentación silenciosa de informes acortados" + + #: ../src/configuration-gui/abrt-config-widget.glade.h:5 + msgid "" +@@ -2111,12 +2116,12 @@ msgstr "No se puede encontrar el problema '%s'" + #: ../src/cli/report.c:52 + #, c-format + msgid "Problem '%s' cannot be reported" +-msgstr "" ++msgstr "No se puede informar del problema '%s'" + + #: ../src/cli/report.c:57 + #, c-format + msgid "Problem '%s' is labeled as 'not-reportable'?" +-msgstr "" ++msgstr "¿Está marcado el problema '%s' como 'no informar'?" + + #: ../src/cli/report.c:78 ../src/cli/process.c:70 + #, c-format +@@ -2134,6 +2139,8 @@ msgstr "Elimina PROBLEM_DIR después de reportarlos" + #: ../src/cli/report.c:106 ../src/cli/process.c:154 + msgid "Ignore security checks to be able to report all problems" + msgstr "" ++"Descartar las comprobaciones de seguridad para poder informar de todos los " ++"problemas" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +@@ -2159,6 +2166,9 @@ msgid "" + "\n" + "Without --since argument, iterates over all detected problems." + msgstr "" ++"& process [opciones]\n" ++"\n" ++"Sin el parámetro --since se procesan todos los problemas detectados" + + #: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" +diff --git a/po/fr.po b/po/fr.po +index d177a91..d649b50 100644 +--- a/po/fr.po ++++ b/po/fr.po +@@ -13,7 +13,10 @@ + # Sam Friedmann , 2014 + # Vincent HERBER , 2011 + # Vincent , 2011 +-# mhabrnal , 2017. #zanata ++# Jakub Filak , 2015. #zanata ++# Julie Carbone , 2015. #zanata ++# Richard Marko , 2015. #zanata ++# Sam Friedmann , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" +@@ -22,13 +25,13 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-05-16 07:08+0000\n" +-"Last-Translator: Copied by Zanata \n" ++"PO-Revision-Date: 2015-07-29 09:45-0400\n" ++"Last-Translator: Richard Marko \n" + "Language-Team: French (http://www.transifex.com/projects/p/fedora-abrt/" + "language/fr/)\n" + "Language: fr\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 4.1.1\n" ++"X-Generator: Zanata 3.9.6\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +diff --git a/po/it.po b/po/it.po +index 0849ab4..cabb317 100644 +--- a/po/it.po ++++ b/po/it.po +@@ -14,7 +14,7 @@ + # Luigi Votta , 2011 + # Mauro Gaggiotti , 2012 + # Silvio Pierro , 2012 +-# mhabrnal , 2017. #zanata ++# Francesco Valente , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" +@@ -23,13 +23,13 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-05-16 07:08+0000\n" +-"Last-Translator: Copied by Zanata \n" ++"PO-Revision-Date: 2015-07-16 10:44-0400\n" ++"Last-Translator: Francesco Valente \n" + "Language-Team: Italian (http://www.transifex.com/projects/p/fedora-abrt/" + "language/it/)\n" + "Language: it\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: Zanata 4.1.1\n" ++"X-Generator: Zanata 3.9.6\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +diff --git a/po/ja.po b/po/ja.po +index 08028bd..74f4f55 100644 +--- a/po/ja.po ++++ b/po/ja.po +@@ -12,8 +12,8 @@ + # noriko , 2014 + # noriko , 2010,2012-2013 + # carrotsoft , 2011-2012 +-# kmoriguc , 2017. #zanata +-# mhabrnal , 2017. #zanata ++# Noriko Mizumoto , 2015. #zanata ++# Matej Habrnal , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" +@@ -22,13 +22,13 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-05-21 11:21+0000\n" +-"Last-Translator: kmoriguc \n" ++"PO-Revision-Date: 2017-08-10 05:37-0400\n" ++"Last-Translator: Matej Habrnal \n" + "Language-Team: Japanese (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ja/)\n" + "Language: ja\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 4.1.1\n" ++"X-Generator: Zanata 3.9.6\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -1922,7 +1922,7 @@ msgstr "詳細については abrt-cli COMMAND --help を参照してくださ + #, c-format + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" +-msgstr "Red Hat カスタマーポータルにケースを作成するため %s'abrt-cli report を実行する%s'\n" ++msgstr "%sRed Hat カスタマーポータルにケースを作成するため 'abrt-cli report %s' を実行する\n" + + #: ../src/cli/list.c:176 + msgid "& list [options]" +@@ -1993,12 +1993,12 @@ msgstr "問題 '%s' が見つかりません" + #: ../src/cli/report.c:52 + #, c-format + msgid "Problem '%s' cannot be reported" +-msgstr "問題 '%s' は報告できません" ++msgstr "" + + #: ../src/cli/report.c:57 + #, c-format + msgid "Problem '%s' is labeled as 'not-reportable'?" +-msgstr "問題 '%s' に 'not-reportable' のラベル付けをしますか?" ++msgstr "" + + #: ../src/cli/report.c:78 ../src/cli/process.c:70 + #, c-format +@@ -2015,7 +2015,7 @@ msgstr "レポート後に PROBLEM_DIR を削除します" + + #: ../src/cli/report.c:106 ../src/cli/process.c:154 + msgid "Ignore security checks to be able to report all problems" +-msgstr "すべての問題を報告できるようにするためセキュリティーチェックを無視する" ++msgstr "" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +@@ -2041,9 +2041,6 @@ msgid "" + "\n" + "Without --since argument, iterates over all detected problems." + msgstr "" +-"& process [options]\n" +-"\n" +-"Without --since argument, iterates over all detected problems." + + #: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" +diff --git a/po/ko.po b/po/ko.po +index 83a5f41..7c2c437 100644 +--- a/po/ko.po ++++ b/po/ko.po +@@ -8,7 +8,7 @@ + # eukim , 2014 + # Jiří Moskovčák , 2011 + # , 2011-2012, 2013 +-# mhabrnal , 2017. #zanata ++# Eun-Ju Kim , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" +@@ -17,13 +17,13 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-05-16 07:08+0000\n" +-"Last-Translator: Copied by Zanata \n" ++"PO-Revision-Date: 2015-07-19 09:20-0400\n" ++"Last-Translator: Eun-Ju Kim \n" + "Language-Team: Korean (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ko/)\n" + "Language: ko\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 4.1.1\n" ++"X-Generator: Zanata 3.9.6\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +diff --git a/po/pt_BR.po b/po/pt_BR.po +index 04c8aee..029c05b 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -22,7 +22,8 @@ + # Taylon Silmer , 2011 + # Teseu , 2011 + # Vitor Lobo Ramos , 2014 +-# mhabrnal , 2017. #zanata ++# Daniel Lara , 2016. #zanata ++# Mateus de Melo Santos , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" +@@ -31,13 +32,13 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-05-16 07:09+0000\n" +-"Last-Translator: Copied by Zanata \n" ++"PO-Revision-Date: 2017-06-09 04:19-0400\n" ++"Last-Translator: Mateus de Melo Santos \n" + "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" + "fedora-abrt/language/pt_BR/)\n" + "Language: pt-BR\n" + "Plural-Forms: nplurals=2; plural=(n > 1);\n" +-"X-Generator: Zanata 4.1.1\n" ++"X-Generator: Zanata 3.9.6\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +@@ -2347,12 +2348,12 @@ msgstr "Não foi possível encontrar problema '%s'" + #: ../src/cli/report.c:52 + #, c-format + msgid "Problem '%s' cannot be reported" +-msgstr "" ++msgstr "Problema '%s' não pode ser relatado" + + #: ../src/cli/report.c:57 + #, c-format + msgid "Problem '%s' is labeled as 'not-reportable'?" +-msgstr "" ++msgstr "O problema '%s' é rotulado como 'não-relatável'?" + + #: ../src/cli/report.c:78 ../src/cli/process.c:70 + #, c-format +@@ -2370,6 +2371,7 @@ msgstr "Remover PROBLEM_DIR após relatar" + #: ../src/cli/report.c:106 ../src/cli/process.c:154 + msgid "Ignore security checks to be able to report all problems" + msgstr "" ++"Ignorar verificações de segurança para poder relatar todos os problemas" + + #: ../src/cli/process.c:64 + msgid "Actions: remove(rm), report(e), info(i), skip(s):" +@@ -2395,6 +2397,9 @@ msgid "" + "\n" + "Without --since argument, iterates over all detected problems." + msgstr "" ++"& process [options]\n" ++"\n" ++"Sem ---desde o argumento, itera sobre todos os problemas detectados." + + #: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" +diff --git a/po/ru.po b/po/ru.po +index e235dee..adf261a 100644 +--- a/po/ru.po ++++ b/po/ru.po +@@ -12,7 +12,9 @@ + # Stanislav Hanzhin , 2011 + # Yulia , 2012,2014 + # Yuri Khabarov , 2011 +-# mhabrnal , 2017. #zanata ++# Igor Gorbounov , 2015. #zanata ++# yuliya , 2015. #zanata ++# Matej Habrnal , 2017. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" +@@ -21,14 +23,14 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-05-16 07:08+0000\n" +-"Last-Translator: Copied by Zanata \n" ++"PO-Revision-Date: 2017-08-10 04:58-0400\n" ++"Last-Translator: Matej Habrnal \n" + "Language-Team: Russian (http://www.transifex.com/projects/p/fedora-abrt/" + "language/ru/)\n" + "Language: ru\n" + "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " + "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +-"X-Generator: Zanata 4.1.1\n" ++"X-Generator: Zanata 3.9.6\n" + + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +@@ -2000,7 +2002,7 @@ msgstr "" + msgid "" + "%sRun 'abrt-cli report %s' for creating a case in Red Hat Customer Portal\n" + msgstr "" +-"%Выполните «abrt-cli report %s», чтобы создать отчет на портале " ++"%sВыполните «abrt-cli report %s», чтобы создать отчет на портале " + "пользователей Red Hat\n" + + # translation auto-copied from project abrt, version master, document abrt, author Igor Gorbounov +diff --git a/po/zh_CN.po b/po/zh_CN.po +index 8531a11..6a61daf 100644 +--- a/po/zh_CN.po ++++ b/po/zh_CN.po +@@ -14,7 +14,8 @@ + # wangwenye , 2013 + # yusuf , 2011 + # Zamir SUN , 2013 +-# mhabrnal , 2017. #zanata ++# Leah Liu , 2015. #zanata ++# Alex Eng (新伦) , 2016. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" +@@ -23,18 +24,18 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-05-16 07:08+0000\n" +-"Last-Translator: Copied by Zanata \n" ++"PO-Revision-Date: 2016-09-12 06:33-0400\n" ++"Last-Translator: Alex Eng (新伦) \n" + "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/fedora-" + "abrt/language/zh_CN/)\n" +-"Language: zh-Hans\n" ++"Language: zh-CN\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 4.1.1\n" ++"X-Generator: Zanata 3.9.6\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 + msgid "Automatic Bug Reporting Tool" +-msgstr "错误自动报告工具 alex" ++msgstr "错误自动报告工具" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:2 +diff --git a/po/zh_TW.po b/po/zh_TW.po +index 48b1b20..3fe87ad 100644 +--- a/po/zh_TW.po ++++ b/po/zh_TW.po +@@ -6,7 +6,8 @@ + # Chester Cheng , 2012,2014 + # Jiří Moskovčák , 2011 + # Terry Chuang , 2014 +-# mhabrnal , 2017. #zanata ++# Chester Cheng , 2015. #zanata ++# Terry Chuang , 2015. #zanata + msgid "" + msgstr "" + "Project-Id-Version: PACKAGE VERSION\n" +@@ -15,13 +16,13 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-05-16 07:08+0000\n" +-"Last-Translator: Copied by Zanata \n" ++"PO-Revision-Date: 2015-07-17 07:14-0400\n" ++"Last-Translator: Terry Chuang \n" + "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fedora-" + "abrt/language/zh_TW/)\n" +-"Language: zh-Hant\n" ++"Language: zh-TW\n" + "Plural-Forms: nplurals=1; plural=0;\n" +-"X-Generator: Zanata 4.1.1\n" ++"X-Generator: Zanata 3.9.6\n" + + # translation auto-copied from project abrt, version master, document abrt + #: ../src/applet/abrt-applet.desktop.in.h:1 +-- +1.8.3.1 + diff --git a/SOURCES/0277-Fix-pt_BR.po-translation.patch b/SOURCES/0277-Fix-pt_BR.po-translation.patch new file mode 100644 index 0000000..c846394 --- /dev/null +++ b/SOURCES/0277-Fix-pt_BR.po-translation.patch @@ -0,0 +1,47 @@ +From a815ed62985ff887d3d5986c56e7808363577ee3 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 21 Aug 2017 15:47:18 +0200 +Subject: [PATCH] Fix pt_BR.po translation + +Related to #1271213 + +Signed-off-by: Matej Habrnal +--- + po/pt_BR.po | 7 ++++--- + 1 file changed, 4 insertions(+), 3 deletions(-) + +diff --git a/po/pt_BR.po b/po/pt_BR.po +index 029c05b..42421ac 100644 +--- a/po/pt_BR.po ++++ b/po/pt_BR.po +@@ -23,6 +23,7 @@ + # Teseu , 2011 + # Vitor Lobo Ramos , 2014 + # Daniel Lara , 2016. #zanata ++# Matej Habrnal , 2017. #zanata + # Mateus de Melo Santos , 2017. #zanata + msgid "" + msgstr "" +@@ -32,8 +33,8 @@ msgstr "" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"PO-Revision-Date: 2017-06-09 04:19-0400\n" +-"Last-Translator: Mateus de Melo Santos \n" ++"PO-Revision-Date: 2017-08-21 09:45-0400\n" ++"Last-Translator: Matej Habrnal \n" + "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" + "fedora-abrt/language/pt_BR/)\n" + "Language: pt-BR\n" +@@ -2399,7 +2400,7 @@ msgid "" + msgstr "" + "& process [options]\n" + "\n" +-"Sem ---desde o argumento, itera sobre todos os problemas detectados." ++"Sem --since o argumento, itera sobre todos os problemas detectados." + + #: ../src/cli/process.c:153 + msgid "Selects only problems detected after timestamp" +-- +1.8.3.1 + diff --git a/SOURCES/0278-koops-add-suspicious-strings-blacklist.patch b/SOURCES/0278-koops-add-suspicious-strings-blacklist.patch new file mode 100644 index 0000000..dcd1d8c --- /dev/null +++ b/SOURCES/0278-koops-add-suspicious-strings-blacklist.patch @@ -0,0 +1,127 @@ +From a2cdf73fa34cf196b08932841d107a82c5bc16e5 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 14 Aug 2017 13:34:59 +0200 +Subject: [PATCH] koops: add suspicious strings blacklist + +Some strings were accidentally considered suspicious. +In this concrete case strings containing "DEBUG" substring. +Since "BUG" and "DEBUG" overlaps and "BUG" is +listed in suspicious string list, kernel DEBUG messages were +recognized as "BUG"s which are kernel oops-es. + +Added "DEBUG" string into mentioned new blacklist. + +Related to rhbz#1228344 + +Signed-off-by: Matej Habrnal +--- + src/include/libabrt.h | 2 ++ + src/lib/kernel.c | 60 ++++++++++++++++++++++++++++++++++----------------- + 2 files changed, 42 insertions(+), 20 deletions(-) + +diff --git a/src/include/libabrt.h b/src/include/libabrt.h +index 2510a77..5346328 100644 +--- a/src/include/libabrt.h ++++ b/src/include/libabrt.h +@@ -125,6 +125,8 @@ char *kernel_tainted_long(const char *tainted_short); + int koops_hash_str(char hash_str[SHA1_RESULT_LEN*2 + 1], const char *oops_buf); + #define koops_extract_oopses abrt_koops_extract_oopses + void koops_extract_oopses(GList **oops_list, char *buffer, size_t buflen); ++#define koops_suspicious_strings_blacklist abrt_koops_suspicious_strings_blacklist ++GList *koops_suspicious_strings_blacklist(void); + #define koops_print_suspicious_strings abrt_koops_print_suspicious_strings + void koops_print_suspicious_strings(void); + /** +diff --git a/src/lib/kernel.c b/src/lib/kernel.c +index 1a9d327..79e7424 100644 +--- a/src/lib/kernel.c ++++ b/src/lib/kernel.c +@@ -158,11 +158,46 @@ static const char *const s_koops_suspicious_strings[] = { + NULL + }; + ++static const char *const s_koops_suspicious_strings_blacklist[] = { ++ /* "BUG:" and "DEBUG:" overlaps, we don't want to recognize DEBUG messages as BUG */ ++ "DEBUG:", ++ ++ /* Termination */ ++ NULL ++}; ++ ++static bool suspicious_line(const char *line) ++{ ++ const char *const *str = s_koops_suspicious_strings; ++ for ( ; *str; ++str) ++ if (strstr(line, *str)) ++ break; ++ ++ if (!*str) ++ return false; ++ ++ str = s_koops_suspicious_strings_blacklist; ++ for ( ; *str; ++str) ++ if (strstr(line, *str)) ++ break; ++ ++ return !*str; ++} ++ + void koops_print_suspicious_strings(void) + { + koops_print_suspicious_strings_filtered(NULL); + } + ++GList *koops_suspicious_strings_blacklist(void) ++{ ++ GList *strings = NULL; ++ for (const char *const *str = s_koops_suspicious_strings_blacklist; *str; ++str) ++ strings = g_list_prepend(strings, (gpointer)*str); ++ ++ return strings; ++} ++ + static bool match_any(const regex_t **res, const char *str) + { + for (const regex_t **r = res; *r != NULL; ++r) +@@ -312,14 +347,8 @@ next_line: + if (oopsstart < 0) + { + /* Find start-of-oops markers */ +- for (const char *const *str = s_koops_suspicious_strings; *str; ++str) +- { +- if (strstr(curline, *str)) +- { +- oopsstart = i; +- break; +- } +- } ++ if (suspicious_line(curline)) ++ oopsstart = i; + + if (oopsstart >= 0) + { +@@ -407,18 +436,9 @@ next_line: + /* kernel end-of-oops marker (not including marker itself) */ + else if (strstr(curline, "---[ end trace")) + oopsend = i-1; +- else +- { +- /* if a new oops starts, this one has ended */ +- for (const char *const *str = s_koops_suspicious_strings; *str; ++str) +- { +- if (strstr(curline, *str)) +- { +- oopsend = i-1; +- break; +- } +- } +- } ++ /* if a new oops starts, this one has ended */ ++ else if (suspicious_line(curline)) ++ oopsend = i-1; + + if (oopsend <= i) + { +-- +1.8.3.1 + diff --git a/SOURCES/0280-koops-Improve-fatal-MCE-check-when-dumping-backtrace.patch b/SOURCES/0280-koops-Improve-fatal-MCE-check-when-dumping-backtrace.patch new file mode 100644 index 0000000..97b5167 --- /dev/null +++ b/SOURCES/0280-koops-Improve-fatal-MCE-check-when-dumping-backtrace.patch @@ -0,0 +1,45 @@ +From 69047b8b02d8f7635fe106daac9e17d72d4a8130 Mon Sep 17 00:00:00 2001 +From: Julius Milan +Date: Mon, 10 Apr 2017 16:30:58 +0200 +Subject: [PATCH] koops: Improve fatal MCE check when dumping backtrace + +Problem was, that regular kernel panic message was treated as fatal MCE, +for which we don't want to have backtrace. + +The logic in koops_extract_oopses_from_lines is a bit complex, +so I describe it: +If fatal MCE was recognized, dumping of backtrace was skipped by following +to the next part of cycle (hacky, in the next part of cycle, there is +condition with many allowed strings to continue but not "Call Trace"). +The check responsible for this "jump" (kernel.c:396) just checked whether +there is a string beginning with "Kernel panic - not syncing", however +this string appears in all kernel panics, not just fatal MCEs. + +Fatal MCE may have form of: +"Kernel panic - not syncing: Fatal Machine check" or +"Kernel panic - not syncing: Machine check" or I found even +"Kernel panic - not syncing: Uncorrected machine check" +so I modified the condition appropriately and added test covering this +case. + +Related to rhbz#1374648 +--- + src/lib/kernel.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/lib/kernel.c b/src/lib/kernel.c +index 1a9d327..f1a0f2c 100644 +--- a/src/lib/kernel.c ++++ b/src/lib/kernel.c +@@ -356,7 +356,7 @@ next_line: + * In order to capture all these lines, we treat final line + * as "backtrace" (which is admittedly a hack): + */ +- if (strstr(curline, "Kernel panic - not syncing")) ++ if (strstr(curline, "Kernel panic - not syncing:") && strcasestr(curline, "Machine check")) + inbacktrace = 1; + else + if (strnlen(curline, 9) > 8 +-- +1.8.3.1 + diff --git a/SOURCES/0282-Add-oops-processing-for-kernel-panics-caused-by-hung.patch b/SOURCES/0282-Add-oops-processing-for-kernel-panics-caused-by-hung.patch new file mode 100644 index 0000000..5cb8736 --- /dev/null +++ b/SOURCES/0282-Add-oops-processing-for-kernel-panics-caused-by-hung.patch @@ -0,0 +1,35 @@ +From 4499cfbae77f3b1dfcd476db40095e7d1b8148f5 Mon Sep 17 00:00:00 2001 +From: credmon +Date: Fri, 20 May 2016 15:30:13 -0400 +Subject: [PATCH] Add oops processing for kernel panics caused by hung tasks. + +Signed-off-by: Jakub Filak +--- + src/lib/kernel.c | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/src/lib/kernel.c b/src/lib/kernel.c +index f1a0f2c..a715624 100644 +--- a/src/lib/kernel.c ++++ b/src/lib/kernel.c +@@ -110,6 +110,7 @@ static const char *const s_koops_suspicious_strings[] = { + /*s*/"ysctl table check failed", + ": nobody cared", + "IRQ handler type mismatch", ++ "Kernel panic - not syncing:", + /* + * MCE examples for various CPUs/architectures (collected 2013-04): + * arch/arc/kernel/traps.c: die("Machine Check Exception", regs, address, cause); +@@ -387,6 +388,9 @@ next_line: + && !strstr(curline, "") + && !strstr(curline, "") + && !strstr(curline, "<>") ++ && !strstr(curline, "Comm:") ++ && !strstr(curline, "Hardware name:") ++ && !strstr(curline, "Backtrace:") + && strncmp(curline, "Code: ", 6) != 0 + && strncmp(curline, "RIP ", 4) != 0 + && strncmp(curline, "RSP ", 4) != 0 +-- +1.8.3.1 + diff --git a/SOURCES/0283-vmcore-remove-original-vmcore-file-in-the-last-step.patch b/SOURCES/0283-vmcore-remove-original-vmcore-file-in-the-last-step.patch new file mode 100644 index 0000000..ac8a221 --- /dev/null +++ b/SOURCES/0283-vmcore-remove-original-vmcore-file-in-the-last-step.patch @@ -0,0 +1,43 @@ +From e29d4d264d5ccc53fc0f4cc18ac477395a82af10 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Thu, 27 Nov 2014 14:30:48 +0100 +Subject: [PATCH] vmcore: remove original vmcore file in the last step + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt_harvest_vmcore.py.in | 12 ++++++------ + 1 file changed, 6 insertions(+), 6 deletions(-) + +diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in +index 6b2719e..990a2b1 100644 +--- a/src/hooks/abrt_harvest_vmcore.py.in ++++ b/src/hooks/abrt_harvest_vmcore.py.in +@@ -278,12 +278,6 @@ def harvest_vmcore(): + shutil.rmtree(destdirnew) + continue + +- if copyvmcore == 'no': +- try: +- shutil.rmtree(f_full) +- except OSError: +- sys.stderr.write("Unable to delete '%s'. Ignoring\n" % f_full) +- + try: + # Let abrtd know what type of problem it is: + create_abrtd_info(destdirnew) +@@ -303,6 +297,12 @@ def harvest_vmcore(): + # Get rid of the .new suffix + shutil.move(destdirnew, destdir) + ++ if copyvmcore == 'no': ++ try: ++ shutil.rmtree(f_full) ++ except OSError: ++ sys.stderr.write("Unable to delete '%s'. Ignoring\n" % f_full) ++ + problem.notify_new_path(destdir) + + +-- +1.8.3.1 + diff --git a/SOURCES/0284-vmcore-use-libreport-dd-API-in-the-harvestor.patch b/SOURCES/0284-vmcore-use-libreport-dd-API-in-the-harvestor.patch new file mode 100644 index 0000000..d69b280 --- /dev/null +++ b/SOURCES/0284-vmcore-use-libreport-dd-API-in-the-harvestor.patch @@ -0,0 +1,226 @@ +From 3f8c7bd84c33a2281857becaf6e177d74de1da42 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Mon, 8 Jun 2015 19:39:24 +0200 +Subject: [PATCH] vmcore: use libreport dd API in the harvestor + +The dd API ensure correct permissions and owner. + +Signed-off-by: Jakub Filak +--- + src/hooks/abrt_harvest_vmcore.py.in | 155 ++++++++++++++---------------------- + 1 file changed, 59 insertions(+), 96 deletions(-) + +diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in +index 990a2b1..c85db8c 100644 +--- a/src/hooks/abrt_harvest_vmcore.py.in ++++ b/src/hooks/abrt_harvest_vmcore.py.in +@@ -16,6 +16,7 @@ import augeas + from subprocess import Popen, PIPE + + import problem ++import report + + + def errx(message, code=1): +@@ -105,85 +106,39 @@ def parse_kdump(): + return path + + +-def write_to_file(path, content): ++def create_abrtd_info(dest, uuid): + """ +- A function for writing into a file +- +- path - path to the file +- content - content to write into the file +- """ +- +- with open(path, 'w') as wfile: +- wfile.write(content) +- +- +-def change_owner_rec(dest): +- """ +- A simple function to recursively change file mode for a directory. +- +- dest - path to the directory +- """ +- +- os.chown(dest, 0, 0) +- for root, dirs, files in os.walk(dest): +- for i in dirs: +- os.chown(os.path.join(root, i), 0, 0) +- for i in files: +- os.chown(os.path.join(root, i), 0, 0) +- ++ A simple function to write important information for the abrt daemon into ++ the vmcore directory to let abrtd know what kind of problem it is. + +-def change_mode_rec(dest): ++ dest - path to the vmcore directory ++ uuid - unique indentifier of the vmcore + """ +- A simple function to recursively change file mode for a directory. + +- dest - path to the directory +- """ ++ dd = report.dd_create(dest, 0) ++ if dd is None: ++ return None + +- os.chmod(dest, 0700) +- for root, dirs, files in os.walk(dest): +- for i in dirs: +- os.chmod(os.path.join(root, i), 0700) +- for i in files: +- os.chmod(os.path.join(root, i), 0600) ++ dd.create_basic_files(0) ++ dd.save_text('analyzer', 'abrt-vmcore') ++ dd.save_text('type', 'vmcore') ++ dd.save_text('component', 'kernel') ++ dd.save_text('uuid', uuid) ++ return dd + + +-def create_abrtd_info(dest): ++def delete_and_close(dd, dd_dirname): + """ +- A simple function to write important information for the abrt daemon into +- the vmcore directory to let abrtd know what kind of problem it is. ++ Deletes the given dump directory and closes it. + +- dest - path to the vmcore directory ++ dd - dump directory object ++ dd_dirname - full path to dump directory + """ ++ if not dd.delete() == 0: ++ sys.stderr.write("Unable to delete '%s'\n" % (dd_dirname)) ++ return + +- write_to_file(os.path.join(dest, 'analyzer'), 'vmcore') +- write_to_file(os.path.join(dest, 'type'), 'vmcore') +- write_to_file(os.path.join(dest, 'component'), 'kernel') +- write_to_file(os.path.join(dest, 'time'), str(time.time()).split('.')[0]) +- shutil.copy(os.path.join(dest, 'time'), +- os.path.join(dest, 'last_occurrence')) +- write_to_file(os.path.join(dest, 'architecture'), os.uname()[4]) +- write_to_file(os.path.join(dest, 'uid'), '0') +- +- # TODO: need to generate *real* UUID, +- # one which has a real chance of catching dups! +- # This one generates different hashes even for similar cores: +- hashobj = hashlib.sha1() +- # Iterate over the file a line at a time in order to not load the whole +- # vmcore file +- with open(os.path.join(dest, 'vmcore'), 'r') as corefile: +- for line in corefile: +- hashobj.update(line) +- write_to_file(os.path.join(dest, 'uuid'), hashobj.hexdigest()) +- +- # Write os info into the vmcore directory +- if os.path.exists('/etc/system-release'): +- shutil.copy('/etc/system-release', os.path.join(dest, 'os_release')) +- elif os.path.exists('/etc/redhat-release'): +- shutil.copy('/etc/redhat-release', os.path.join(dest, 'os_release')) +- elif os.path.exists('/etc/SuSE-release'): +- shutil.copy('/etc/SuSE-release', os.path.join(dest, 'os_release')) +- if os.path.exists('/etc/os-release'): +- shutil.copy('/etc/os-release', os.path.join(dest, 'os_info')) ++ dd.close() + + + def harvest_vmcore(): +@@ -212,8 +167,6 @@ def harvest_vmcore(): + else: + break + +- os.umask(077) +- + # Check abrt config files for copy/move settings and + try: + conf = problem.load_plugin_conf_file("vmcore.conf") +@@ -257,6 +210,8 @@ def harvest_vmcore(): + "VMCore dir '%s' doesn't contain 'vmcore' file.\n" % f_full) + continue + ++ # We use .new suffix - we must make sure abrtd doesn't try ++ # to process partially-copied directory. + destdir = os.path.join(abrtdumpdir, ('vmcore-' + cfile)) + destdirnew = destdir + '.new' + # Did we already copy it last time we booted? +@@ -264,38 +219,46 @@ def harvest_vmcore(): + continue + if os.path.isdir(destdirnew): + continue +- # Copy/move vmcore directory to abrt spool dir. +- # We use .new suffix - we must make sure abrtd doesn't try +- # to process partially-copied directory. +- +- try: +- shutil.copytree(f_full, destdirnew) +- except (OSError, shutil.Error): +- sys.stderr.write("Unable to copy '%s' to '%s'. Skipping\n" +- % (f_full, destdirnew)) + +- # delete .new dir so we don't create mess +- shutil.rmtree(destdirnew) ++ # TODO: need to generate *real* UUID, ++ # one which has a real chance of catching dups! ++ # This one generates different hashes even for similar cores: ++ hashobj = hashlib.sha1() ++ # Iterate over the file a line at a time in order to not load the whole ++ # vmcore file ++ with open(os.path.join(f_full, 'vmcore'), 'r') as corefile: ++ for line in corefile: ++ hashobj.update(line) ++ ++ dd = create_abrtd_info(destdirnew, hashobj.hexdigest()) ++ if dd is None: ++ sys.stderr.write("Unable to create problem directory info") + continue + +- try: +- # Let abrtd know what type of problem it is: +- create_abrtd_info(destdirnew) +- except EnvironmentError as ex: +- sys.stderr.write("Unable to create problem directory info: " + str(ex)) ++ # Copy/move vmcore directory to abrt spool dir. ++ for name in os.listdir(f_full): ++ full_name = os.path.join(f_full, name) ++ ++ # Skip sub-directories, abrt ignores them in its processing anyway ++ if not os.path.isfile(full_name): ++ continue ++ + try: +- shutil.rmtree(destdirnew) +- except Exception as ex: +- sys.stderr.write("Unable to remove incomplete problem directory: " + str(ex)) +- continue ++ if not dd.copy_file(name, full_name) == 0: ++ raise OSError ++ except (OSError, shutil.Error): ++ sys.stderr.write("Unable to copy '%s' to '%s'. Skipping\n" ++ % (full_name, destdirnew)) ++ delete_and_close(dd) ++ continue + +- # chown -R 0:0 +- change_owner_rec(destdirnew) +- # chmod -R u+rwX,go-rwxst +- change_mode_rec(destdirnew) ++ # Get rid of the .new suffix ++ if not dd.rename(destdir) == 0: ++ sys.stderr.write("Unable to rename '%s' to '%s'. Skipping\n" % (destdirnew, destdir)) ++ delete_and_close(dd) ++ continue + +- # Get rid of the .new suffix +- shutil.move(destdirnew, destdir) ++ dd.close() + + if copyvmcore == 'no': + try: +-- +1.8.3.1 + diff --git a/SOURCES/0286-koops-Improve-not-reportable-for-oopses-with-taint-f.patch b/SOURCES/0286-koops-Improve-not-reportable-for-oopses-with-taint-f.patch new file mode 100644 index 0000000..4973190 --- /dev/null +++ b/SOURCES/0286-koops-Improve-not-reportable-for-oopses-with-taint-f.patch @@ -0,0 +1,75 @@ +From 80087d0d88e2ff5a3c644f939bbe602a064096c4 Mon Sep 17 00:00:00 2001 +From: Julius Milan +Date: Tue, 26 Sep 2017 15:56:42 +0200 +Subject: [PATCH] koops: Improve not-reportable for oopses with taint flags + +Adds detailed info about taint flags to not-reportable. This +additional info contains description of every taint flag that appeared +in particular oops. +It is either good for user information and also solves the problem when users +opened bugs on abrt from misunderstanding tainted flags. + +Related to rhbz#1452160 +--- + src/lib/kernel.c | 7 ++++--- + src/plugins/abrt-dump-oops.c | 8 ++++---- + 2 files changed, 8 insertions(+), 7 deletions(-) + +diff --git a/src/lib/kernel.c b/src/lib/kernel.c +index 3c8cbdf..346b0a6 100644 +--- a/src/lib/kernel.c ++++ b/src/lib/kernel.c +@@ -695,9 +695,10 @@ static const char *const tnts_long[] = { + /* B */ "System has hit bad_page.", + /* C */ "Modules from drivers/staging are loaded.", + /* D */ "Kernel has oopsed before", +- /* E */ NULL, ++ /* E */ "Unsigned module has been loaded.", + /* F */ "Module has been forcibly loaded.", +- /* G */ "Proprietary module has not been loaded.", ++ /* We don't want to be more descriptive about G flag */ ++ /* G */ NULL, /* "Proprietary module has not been loaded." */ + /* H */ NULL, + /* I */ "Working around severe firmware bug.", + /* J */ NULL, +@@ -729,7 +730,7 @@ char *kernel_tainted_long(const char *tainted_short) + { + const char *const txt = tnts_long[tnt_index]; + if (txt) +- strbuf_append_strf(tnt_long, "%s\n", txt); ++ strbuf_append_strf(tnt_long, "%c - %s\n", tainted_short[0], txt); + } + + ++tainted_short; +diff --git a/src/plugins/abrt-dump-oops.c b/src/plugins/abrt-dump-oops.c +index 05cb728..e7db19a 100644 +--- a/src/plugins/abrt-dump-oops.c ++++ b/src/plugins/abrt-dump-oops.c +@@ -139,13 +139,12 @@ static void save_oops_data_in_dump_dir(struct dump_dir *dd, char *oops, const ch + + char *tnt_long = kernel_tainted_long(tainted_short); + dd_save_text(dd, FILENAME_TAINTED_LONG, tnt_long); +- free(tnt_long); + + struct strbuf *reason = strbuf_new(); + const char *fmt = _("A kernel problem occurred, but your kernel has been " +- "tainted (flags:%s). Kernel maintainers are unable to " +- "diagnose tainted reports."); +- strbuf_append_strf(reason, fmt, tainted_short); ++ "tainted (flags:%s). Explanation:\n%s" ++ "Kernel maintainers are unable to diagnose tainted reports."); ++ strbuf_append_strf(reason, fmt, tainted_short, tnt_long); + + char *modlist = !proc_modules ? NULL : list_of_tainted_modules(proc_modules); + if (modlist) +@@ -157,6 +156,7 @@ static void save_oops_data_in_dump_dir(struct dump_dir *dd, char *oops, const ch + dd_save_text(dd, FILENAME_NOT_REPORTABLE, reason->buf); + strbuf_free(reason); + free(tainted_short); ++ free(tnt_long); + } + } + +-- +1.8.3.1 + diff --git a/SOURCES/0287-a-a-ureport-add-check-if-crash-is-from-packaged-exec.patch b/SOURCES/0287-a-a-ureport-add-check-if-crash-is-from-packaged-exec.patch new file mode 100644 index 0000000..eb94c91 --- /dev/null +++ b/SOURCES/0287-a-a-ureport-add-check-if-crash-is-from-packaged-exec.patch @@ -0,0 +1,42 @@ +From 9971c9376e59f1b74c7e5844a732ea5cee996599 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Tue, 10 Oct 2017 11:31:09 +0200 +Subject: [PATCH] a-a-ureport: add check if crash is from packaged executable + +uReport cannot be created for unpackaged executable. +This commit adds check if the problem is packaged. If not +uReport creating ends with log message explaining it. + +Resolves #1319828 + +Signed-off-by: Matej Habrnal +--- + src/plugins/abrt-action-ureport | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/src/plugins/abrt-action-ureport b/src/plugins/abrt-action-ureport +index 48bebef..2616b03 100755 +--- a/src/plugins/abrt-action-ureport ++++ b/src/plugins/abrt-action-ureport +@@ -118,6 +118,7 @@ if __name__ == "__main__": + report_type = dd.load_text("analyzer", 0) + + core_backtrace_exists = dd.exist("core_backtrace") ++ packaged = dd.exist("package") + reported_to = dd.load_text("reported_to", DD_FAIL_QUIETLY_ENOENT) + ureports_counter = try_parse_number(dd, "ureports_counter") + count = try_parse_number(dd, "count") +@@ -154,6 +155,10 @@ if __name__ == "__main__": + log1("uReport can't be sent without core_backtrace. Exiting.") + sys.exit(1) + ++ if not packaged: ++ log(_("Problem comes from unpackaged executable. Unable to create uReport.")) ++ sys.exit(1) ++ + exitcode = spawn_and_wait("reporter-ureport") + if exitcode == 0 or exitcode == 70: + dd = dd_opendir(dirname, 0) +-- +1.8.3.1 + diff --git a/SOURCES/0306-a-harvest-vmcore-fix-regresion.patch b/SOURCES/0306-a-harvest-vmcore-fix-regresion.patch new file mode 100644 index 0000000..9432ed2 --- /dev/null +++ b/SOURCES/0306-a-harvest-vmcore-fix-regresion.patch @@ -0,0 +1,35 @@ +From 092baaf1924b85b91fb9340c11a4c5c51ab7a7b2 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Thu, 8 Feb 2018 10:21:01 +0100 +Subject: [PATCH] a-harvest-vmcore: fix regresion + +Problem is in the analyzer file, which holds value 'abrt-vmcore' (was 'vmcore' +in 7.4). The change has been introduced in +0284-vmcore-use-libreport-dd-API-in-the-harvestor.patch + +In Fedora we are using problem dir element 'type' as EVENTs conditions. +In RHEL is the element still 'analyzer'. + +Fixes: #1543323 + +Signed-off-by: Matej Habrnal +--- + src/hooks/abrt_harvest_vmcore.py.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/hooks/abrt_harvest_vmcore.py.in b/src/hooks/abrt_harvest_vmcore.py.in +index c85db8cc..b2ff283d 100644 +--- a/src/hooks/abrt_harvest_vmcore.py.in ++++ b/src/hooks/abrt_harvest_vmcore.py.in +@@ -120,7 +120,7 @@ def create_abrtd_info(dest, uuid): + return None + + dd.create_basic_files(0) +- dd.save_text('analyzer', 'abrt-vmcore') ++ dd.save_text('analyzer', 'vmcore') + dd.save_text('type', 'vmcore') + dd.save_text('component', 'kernel') + dd.save_text('uuid', uuid) +-- +2.14.3 + diff --git a/SOURCES/0308-plugins-a-a-g-machine-id-use-dmidecode-command.patch b/SOURCES/0308-plugins-a-a-g-machine-id-use-dmidecode-command.patch new file mode 100644 index 0000000..7117ac7 --- /dev/null +++ b/SOURCES/0308-plugins-a-a-g-machine-id-use-dmidecode-command.patch @@ -0,0 +1,87 @@ +From 685bf3a4a05e02f628c19f23a60107b98b52d199 Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Wed, 18 Apr 2018 17:12:17 +0200 +Subject: [PATCH] plugins: a-a-g-machine-id use dmidecode command + +python-dmidecode is broken on aarch64 [1] and the issue won't be fixed. +Recommendation is to use regular dmidecode command instead. + +Related to BZ#1566707 + +[1] https://bugzilla.redhat.com/show_bug.cgi?id=1509938 + +Signed-off-by: Martin Kutlak +--- + src/plugins/abrt-action-generate-machine-id | 40 ++++++++------------- + 1 file changed, 15 insertions(+), 25 deletions(-) + +diff --git a/src/plugins/abrt-action-generate-machine-id b/src/plugins/abrt-action-generate-machine-id +index 6f43258c..f843d773 100644 +--- a/src/plugins/abrt-action-generate-machine-id ++++ b/src/plugins/abrt-action-generate-machine-id +@@ -20,8 +20,10 @@ + """This module provides algorithms for generating Machine IDs. + """ + ++import os + import sys + from argparse import ArgumentParser ++from subprocess import check_output + import logging + + import hashlib +@@ -35,38 +37,26 @@ def generate_machine_id_dmidecode(): + + """ + +- try: +- import dmidecode +- except ImportError as ex: +- raise RuntimeError("Could not import dmidecode module: {0}" +- .format(str(ex))) +- +- dmixml = dmidecode.dmidecodeXML() +- # Fetch all DMI data into a libxml2.xmlDoc object +- dmixml.SetResultType(dmidecode.DMIXML_DOC) +- xmldoc = dmixml.QuerySection('all') ++ if not os.path.isfile("/usr/sbin/dmidecode"): ++ raise RuntimeError("Could not find dmidecode. It might not be available for this " \ ++ "architecture.") + +- # Do some XPath queries on the XML document +- dmixp = xmldoc.xpathNewContext() +- +- # What to look for - XPath expressions +- keys = ['/dmidecode/SystemInfo/Manufacturer', +- '/dmidecode/SystemInfo/ProductName', +- '/dmidecode/SystemInfo/SerialNumber', +- '/dmidecode/SystemInfo/SystemUUID'] ++ # What to look for ++ keys = ['system-manufacturer', ++ 'system-product-name', ++ 'system-serial-number', ++ 'system-uuid'] + + # Create a sha256 of ^ for machine_id + machine_id = hashlib.sha256() + +- # Run xpath expressions ++ # Run dmidecode command + for k in keys: +- data = dmixp.xpathEval(k) +- for d in data: +- # Update the hash as we find the fields we are looking for +- machine_id.update(d.get_content()) ++ data = check_output(["dmidecode", "-s", k]).strip() ++ ++ # Update the hash as we find the fields we are looking for ++ machine_id.update(data) + +- del dmixp +- del xmldoc + # Create sha256 digest + return machine_id.hexdigest() + +-- +2.17.1 + diff --git a/SOURCES/0310-a-a-s-p-data-fix-segfault-if-GPGKeysDir-isn-t-config.patch b/SOURCES/0310-a-a-s-p-data-fix-segfault-if-GPGKeysDir-isn-t-config.patch new file mode 100644 index 0000000..f531b88 --- /dev/null +++ b/SOURCES/0310-a-a-s-p-data-fix-segfault-if-GPGKeysDir-isn-t-config.patch @@ -0,0 +1,28 @@ +From c306d5e8681990f2aa9a56bca2866bd47d1c784f Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 10 Nov 2015 13:22:21 +0100 +Subject: [PATCH] a-a-s-p-data: fix segfault if GPGKeysDir isn't configured + +Related to #1591141 + +Signed-off-by: Jakub Filak +--- + src/daemon/abrt-action-save-package-data.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/daemon/abrt-action-save-package-data.c b/src/daemon/abrt-action-save-package-data.c +index ef2007ee..ef492c28 100644 +--- a/src/daemon/abrt-action-save-package-data.c ++++ b/src/daemon/abrt-action-save-package-data.c +@@ -88,7 +88,7 @@ static void load_gpg_keys(void) + } + + const char *gpg_keys_dir = get_map_string_item_or_NULL(settings, "GPGKeysDir"); +- if (strcmp(gpg_keys_dir, "") != 0) ++ if (gpg_keys_dir != NULL && strcmp(gpg_keys_dir, "") != 0) + { + log_debug("Reading gpg keys from '%s'", gpg_keys_dir); + GList *gpg_files = get_file_list(gpg_keys_dir, NULL /* we don't care about the file ext */); +-- +2.17.1 + diff --git a/SOURCES/0311-plugin-general-from-sos-has-been-split-into-two-new-.patch b/SOURCES/0311-plugin-general-from-sos-has-been-split-into-two-new-.patch new file mode 100644 index 0000000..56c98fd --- /dev/null +++ b/SOURCES/0311-plugin-general-from-sos-has-been-split-into-two-new-.patch @@ -0,0 +1,39 @@ +From f148242412cdffaf98150f3c85b717f06b0b312b Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Miroslav=20Such=C3=BD?= +Date: Fri, 17 Aug 2018 16:18:21 +0200 +Subject: [PATCH] plugin "general" from sos has been split into two new plugins + +This resolves BZ 1608444 +--- + abrt.spec.in | 1 + + src/daemon/abrt_event.conf | 2 +- + 2 files changed, 2 insertions(+), 1 deletion(-) + +diff --git a/abrt.spec.in b/abrt.spec.in +index 33e50005..44b06683 100644 +--- a/abrt.spec.in ++++ b/abrt.spec.in +@@ -79,6 +79,7 @@ BuildRequires: libselinux-devel + + Requires: libreport >= %{libreport_ver} + Requires: satyr >= 0.11 ++Requires: sos >= 3.6 + # these only exist on suse + %if 0%{?suse_version} + BuildRequires: dbus-1-glib-devel +diff --git a/src/daemon/abrt_event.conf b/src/daemon/abrt_event.conf +index 76d544ca..a8d03381 100644 +--- a/src/daemon/abrt_event.conf ++++ b/src/daemon/abrt_event.conf +@@ -73,7 +73,7 @@ EVENT=post-create + --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=services --only=yum --only=general --only=x11 \ ++ --only=services --only=yum --only=date --only=host --only=x11 \ + --only=cups --only=logs --only=grub2 --only=cron --only=pci \ + --only=auditd --only=selinux --only=lvm2 --only=sar \ + --only=processor \ +-- +2.17.1 + diff --git a/SOURCES/0312-cli-load-config-file-at-the-beginning.patch b/SOURCES/0312-cli-load-config-file-at-the-beginning.patch new file mode 100644 index 0000000..e82e8b0 --- /dev/null +++ b/SOURCES/0312-cli-load-config-file-at-the-beginning.patch @@ -0,0 +1,53 @@ +From 079ca6cf8774ce4b510daa9423a3785007c6c1d7 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 17 Sep 2018 16:16:23 +0200 +Subject: [PATCH] cli: load config file at the beginning + +Resolves: #1618818 + +Signed-off-by: Matej Habrnal +--- + src/cli/abrt-cli.c | 1 + + src/cli/list.c | 1 - + src/cli/report.c | 1 - + 3 files changed, 1 insertion(+), 2 deletions(-) + +diff --git a/src/cli/abrt-cli.c b/src/cli/abrt-cli.c +index 360e4757e..6660923d4 100644 +--- a/src/cli/abrt-cli.c ++++ b/src/cli/abrt-cli.c +@@ -122,6 +122,7 @@ int main(int argc, const char **argv) + #endif + + abrt_init((char **)argv); ++ load_abrt_conf(); + + argv++; + argc--; +diff --git a/src/cli/list.c b/src/cli/list.c +index e688d2f49..5af42fb01 100644 +--- a/src/cli/list.c ++++ b/src/cli/list.c +@@ -206,7 +206,6 @@ int cmd_list(int argc, const char **argv) + free_vector_of_problem_data(ci); + + #if SUGGEST_AUTOREPORTING != 0 +- load_abrt_conf(); + if (!g_settings_autoreporting) + { + if (output) +diff --git a/src/cli/report.c b/src/cli/report.c +index a76923f22..c98d8cbf8 100644 +--- a/src/cli/report.c ++++ b/src/cli/report.c +@@ -116,7 +116,6 @@ int cmd_report(int argc, const char **argv) + + export_abrt_envvars(/*prog_prefix:*/ 0); + +- load_abrt_conf(); + free_abrt_conf_data(); + + int report_flags = 0; +-- +2.17.2 + diff --git a/SOURCES/0313-ccpp-fast-dumping-and-abrt-core-limit.patch b/SOURCES/0313-ccpp-fast-dumping-and-abrt-core-limit.patch new file mode 100644 index 0000000..77df467 --- /dev/null +++ b/SOURCES/0313-ccpp-fast-dumping-and-abrt-core-limit.patch @@ -0,0 +1,524 @@ +From 523792cfbbaf3a5e10cdcb46979739b36ac9c4dd Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Wed, 26 Sep 2018 13:24:40 +0200 +Subject: [PATCH] ccpp: fast dumping and abrt core limit + +This commit introduces a new configuration option MaxCoreFileSize. The +option will be compared to MaxCrashReportsSize and the minimum will be +used as the limit for the size of the core dump file in a dump directory. + +This commit replaces the read once write twice algorithm with a tee + splice +algorithm. tee() does zero copy - it should just increment counters - +and splice() moves bytes between file descriptors without the need to +copy them to user space. Basically the new algorithm is the same but +without the need to copy data to user space. However, the original +algorithm was testing the buffer for 0s and if the entire buffer was 0, +then lseek() was performed instead of write(). The 0 check was there to +make the dumping faster and this is no longer needed as the tee + +splice is faster than the original read once write twice algorithm. + +Related: rhbz#1613236 + +Signed-off-by: Martin Kutlak +--- + doc/abrt-CCpp.conf.txt | 5 + + src/hooks/CCpp.conf | 10 + + src/hooks/abrt-hook-ccpp.c | 381 +++++++++++++++++++++++++------------ + 3 files changed, 274 insertions(+), 122 deletions(-) + +diff --git a/doc/abrt-CCpp.conf.txt b/doc/abrt-CCpp.conf.txt +index dffa45dc2..2a626ec49 100644 +--- a/doc/abrt-CCpp.conf.txt ++++ b/doc/abrt-CCpp.conf.txt +@@ -19,6 +19,11 @@ MakeCompatCore = 'yes' / 'no' ...:: + instead of the template. + For more information about naming core dump files see 'man 5 core'. + ++MaxCoreFileSize = 'a number in MiB' ...:: ++ This configuration option together with MaxCrashReportsSize set the limit on ++ the size of dumped core file. The lower value of the both options is used as ++ the effective limit. 0 is evaluated as unlimited for the both options. ++ + SaveBinaryImage = 'yes' / 'no' ...:: + Do you want a copy of crashed binary be saved? + Useful, for example, when _deleted binary_ segfaults. +diff --git a/src/hooks/CCpp.conf b/src/hooks/CCpp.conf +index af31ed53c..48c8c2557 100644 +--- a/src/hooks/CCpp.conf ++++ b/src/hooks/CCpp.conf +@@ -9,6 +9,16 @@ + # For more information about naming core dump files see 'man 5 core'. + MakeCompatCore = yes + ++# The option allows you to set limit for the core file size in MiB. ++# ++# This value is compared to value of the MaxCrashReportSize configuration ++# option from (/etc/abrt.conf) and the lower value is used as the limit. ++# ++# If MaxCoreFileSize is 0 then the value of MaxCrashReportSize is the limit. ++# If MaxCrashReportSize is 0 then the value of MaxCoreFileSize is the limit. ++# If both values are 0 then the core file size is unlimited. ++MaxCoreFileSize = 0 ++ + # Do you want a copy of crashed binary be saved? + # (useful, for example, when _deleted binary_ segfaults) + SaveBinaryImage = no +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index cb4d1e0ce..ca4b61bf1 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -31,6 +31,8 @@ + #define DUMP_SUID_UNSAFE 1 + #define DUMP_SUID_SAFE 2 + ++#define KERNEL_PIPE_BUFFER_SIZE 65536 ++ + static int g_user_core_flags; + static int g_need_nonrelative; + +@@ -54,100 +56,6 @@ static char* malloc_readlink(const char *linkname) + return NULL; + } + +-/* Custom version of copyfd_xyz, +- * one which is able to write into two descriptors at once. +- */ +-#define CONFIG_FEATURE_COPYBUF_KB 4 +-static off_t copyfd_sparse(int src_fd, int dst_fd1, int dst_fd2, off_t size2) +-{ +- off_t total = 0; +- int last_was_seek = 0; +-#if CONFIG_FEATURE_COPYBUF_KB <= 4 +- char buffer[CONFIG_FEATURE_COPYBUF_KB * 1024]; +- enum { buffer_size = sizeof(buffer) }; +-#else +- char *buffer; +- int buffer_size; +- +- /* We want page-aligned buffer, just in case kernel is clever +- * and can do page-aligned io more efficiently */ +- buffer = mmap(NULL, CONFIG_FEATURE_COPYBUF_KB * 1024, +- PROT_READ | PROT_WRITE, +- MAP_PRIVATE | MAP_ANON, +- /* ignored: */ -1, 0); +- buffer_size = CONFIG_FEATURE_COPYBUF_KB * 1024; +- if (buffer == MAP_FAILED) { +- buffer = alloca(4 * 1024); +- buffer_size = 4 * 1024; +- } +-#endif +- +- while (1) { +- ssize_t rd = safe_read(src_fd, buffer, buffer_size); +- if (!rd) { /* eof */ +- if (last_was_seek) { +- if (lseek(dst_fd1, -1, SEEK_CUR) < 0 +- || safe_write(dst_fd1, "", 1) != 1 +- || (dst_fd2 >= 0 +- && (lseek(dst_fd2, -1, SEEK_CUR) < 0 +- || safe_write(dst_fd2, "", 1) != 1 +- ) +- ) +- ) { +- perror_msg("Write error"); +- total = -1; +- goto out; +- } +- } +- /* all done */ +- goto out; +- } +- if (rd < 0) { +- perror_msg("Read error"); +- total = -1; +- goto out; +- } +- +- /* checking sparseness */ +- ssize_t cnt = rd; +- while (--cnt >= 0) { +- if (buffer[cnt] != 0) { +- /* not sparse */ +- errno = 0; +- ssize_t wr1 = full_write(dst_fd1, buffer, rd); +- ssize_t wr2 = (dst_fd2 >= 0 ? full_write(dst_fd2, buffer, rd) : rd); +- if (wr1 < rd || wr2 < rd) { +- perror_msg("Write error"); +- total = -1; +- goto out; +- } +- last_was_seek = 0; +- goto adv; +- } +- } +- /* sparse */ +- xlseek(dst_fd1, rd, SEEK_CUR); +- if (dst_fd2 >= 0) +- xlseek(dst_fd2, rd, SEEK_CUR); +- last_was_seek = 1; +- adv: +- total += rd; +- size2 -= rd; +- if (size2 < 0) +- dst_fd2 = -1; +-// truncate to 0 or even delete the second file? +-// No, kernel does not delete nor truncate core files. +- } +- out: +- +-#if CONFIG_FEATURE_COPYBUF_KB > 4 +- if (buffer_size != 4 * 1024) +- munmap(buffer, buffer_size); +-#endif +- return total; +-} +- +- + /* Global data */ + static char *user_pwd; + static DIR *proc_cwd; +@@ -609,13 +517,42 @@ static void create_core_backtrace(pid_t tid, const char *executable, int signal_ + #endif /* ENABLE_DUMP_TIME_UNWIND */ + } + ++static ssize_t splice_entire_per_partes(int in_fd, int out_fd, size_t size_limit) ++{ ++ size_t bytes = 0; ++ size_t soft_limit = KERNEL_PIPE_BUFFER_SIZE; ++ while (bytes < size_limit) ++ { ++ const size_t hard_limit = size_limit - bytes; ++ if (hard_limit < soft_limit) ++ soft_limit = hard_limit; ++ ++ const ssize_t copied = splice(in_fd, NULL, out_fd, NULL, soft_limit, SPLICE_F_MOVE | SPLICE_F_MORE); ++ if (copied < 0) ++ return copied; ++ ++ bytes += copied; ++ ++ /* Check EOF. */ ++ if (copied == 0) ++ break; ++ } ++ ++ return bytes; ++} ++ ++ + static int create_user_core(int user_core_fd, pid_t pid, off_t ulimit_c) + { + int err = 1; + if (user_core_fd >= 0) + { +- off_t core_size = copyfd_size(STDIN_FILENO, user_core_fd, ulimit_c, COPYFD_SPARSE); +- if (close_user_core(user_core_fd, core_size) != 0) ++ errno = 0; ++ ssize_t core_size = splice_entire_per_partes(STDIN_FILENO, user_core_fd, ulimit_c); ++ if (core_size < 0) ++ perror_msg("Failed to create user core '%s' in '%s'", core_basename, user_pwd); ++ ++ if (close_user_core(user_core_fd, core_size) != 0 || core_size < 0) + goto finito; + + err = 0; +@@ -732,6 +669,165 @@ static void error_msg_ignore_crash(const char *pid_str, const char *process_str, + return; + } + ++static ssize_t splice_full(int in_fd, int out_fd, size_t size) ++{ ++ ssize_t total = 0; ++ while (size != 0) ++ { ++ const ssize_t b = splice(in_fd, NULL, out_fd, NULL, size, 0); ++ if (b < 0) ++ return b; ++ ++ if (b == 0) ++ break; ++ ++ total += b; ++ size -= b; ++ } ++ ++ return total; ++} ++ ++static size_t xsplice_full(int in_fd, int out_fd, size_t size) ++{ ++ const ssize_t r = splice_full(in_fd, out_fd, size); ++ if (r < 0) ++ perror_msg_and_die("Failed to write core dump to file"); ++ return (size_t)r; ++} ++ ++static void pipe_close(int *pfds) ++{ ++ close(pfds[0]); ++ close(pfds[1]); ++ pfds[0] = pfds[1] = -1; ++} ++ ++enum dump_core_files_ret_flags { ++ DUMP_ABRT_CORE_FAILED = 0x0001, ++ DUMP_USER_CORE_FAILED = 0x0100, ++}; ++ ++/* Optimized creation of two core files - ABRT and CWD ++ * ++ * The simplest optimization is to avoid the need to copy data to user space. ++ * In that case we cannot read data once and write them twice as we do with ++ * read/write approach because there is no syscall forwarding data from a ++ * single source fd to several destination fds (one might claim that there is ++ * tee() function but such a solution is suboptimal from our perspective). ++ * ++ * So the function first create ABRT core file and then creates user core file. ++ * If ABRT limit made the ABRT core to be smaller than allowed user core size, ++ * then the function reads more data from STDIN and appends them to the user ++ * core file. ++ * ++ * We must not read from the user core fd because that operation might be ++ * refused by OS. ++ */ ++static int dump_two_core_files(int abrt_core_fd, size_t *abrt_limit, int user_core_fd, size_t *user_limit) ++{ ++ /* tee() does not move the in_fd, thus you need to call splice to be ++ * get next chunk of data loaded into the in_fd buffer. ++ * So, calling tee() without splice() would be looping on the same ++ * data. Hence, we must ensure that after tee() we call splice() and ++ * that would be problematic if tee core limit is greater than splice ++ * core limit. Therefore, we swap the out fds based on their limits. ++ */ ++ int spliced_fd = *abrt_limit > *user_limit ? abrt_core_fd : user_core_fd; ++ size_t spliced_core_limit = *abrt_limit > *user_limit ? *abrt_limit : *user_limit; ++ int teed_fd = *abrt_limit > *user_limit ? user_core_fd : abrt_core_fd; ++ size_t teed_core_limit = *abrt_limit > *user_limit ? *user_limit : *abrt_limit; ++ ++ size_t *spliced_core_size = *abrt_limit > *user_limit ? abrt_limit : user_limit; ++ size_t *teed_core_size = *abrt_limit > *user_limit ? user_limit : abrt_limit; ++ ++ *spliced_core_size = *teed_core_size = 0; ++ ++ int cp[2] = { -1, -1 }; ++ if (pipe(cp) < 0) ++ { ++ perror_msg("Failed to create temporary pipe for core file"); ++ cp[0] = cp[1] = -1; ++ } ++ ++ /* tee() can copy duplicate up to size of the pipe buffer bytes. ++ * It should not be problem to ask for more (in that case, tee would simply ++ * duplicate up to the limit bytes) but I would rather not to exceed ++ * the pipe buffer limit. ++ */ ++ int copy_buffer_size = fcntl(STDIN_FILENO, F_GETPIPE_SZ); ++ if (copy_buffer_size < 0) ++ copy_buffer_size = KERNEL_PIPE_BUFFER_SIZE; ++ ++ ssize_t to_write = copy_buffer_size; ++ for (;;) ++ { ++ if (cp[1] >= 0) ++ { ++ to_write = tee(STDIN_FILENO, cp[1], copy_buffer_size, 0); ++ ++ /* Check EOF. */ ++ if (to_write == 0) ++ break; ++ ++ if (to_write < 0) ++ { ++ perror_msg("Cannot duplicate stdin buffer for core file"); ++ pipe_close(cp); ++ to_write = copy_buffer_size; ++ } ++ } ++ ++ size_t to_splice = to_write; ++ if (*spliced_core_size + to_splice > spliced_core_limit) ++ to_splice = spliced_core_limit - *spliced_core_size; ++ ++ const size_t spliced = xsplice_full(STDIN_FILENO, spliced_fd, to_splice); ++ *spliced_core_size += spliced; ++ ++ if (cp[0] >= 0) ++ { ++ size_t to_tee = to_write; ++ if (*teed_core_size + to_tee > teed_core_limit) ++ to_tee = teed_core_limit - *teed_core_size; ++ ++ const ssize_t teed = splice_full(cp[0], teed_fd, to_tee); ++ if (teed < 0) ++ { ++ perror_msg("Cannot splice teed data to core file"); ++ pipe_close(cp); ++ to_write = copy_buffer_size; ++ } ++ else ++ *teed_core_size += teed; ++ ++ if (*teed_core_size >= teed_core_limit) ++ { ++ pipe_close(cp); ++ to_write = copy_buffer_size; ++ } ++ } ++ ++ /* Check EOF. */ ++ if (spliced == 0 || *spliced_core_size >= spliced_core_limit) ++ break; ++ } ++ ++ int r = 0; ++ if (cp[0] < 0) ++ { ++ if (abrt_limit < user_limit) ++ r |= DUMP_ABRT_CORE_FAILED; ++ else ++ r |= DUMP_USER_CORE_FAILED; ++ } ++ else ++ pipe_close(cp); ++ ++ return r; ++} ++ ++ + int main(int argc, char** argv) + { + int err = 1; +@@ -755,6 +851,8 @@ int main(int argc, char** argv) + bool setting_SaveBinaryImage; + bool setting_SaveFullCore; + bool setting_CreateCoreBacktrace; ++ unsigned int setting_MaxCoreFileSize = g_settings_nMaxCrashReportsSize; ++ + GList *setting_ignored_paths = NULL; + GList *setting_allowed_users = NULL; + GList *setting_allowed_groups = NULL; +@@ -780,6 +878,18 @@ int main(int argc, char** argv) + if (value) + setting_allowed_groups = parse_list(value); + ++ value = get_map_string_item_or_NULL(settings, "MaxCoreFileSize"); ++ if (value) ++ { ++ char *end; ++ errno = 0; ++ unsigned long ul = strtoul(value, &end, 10); ++ if (errno || end == value || *end != '\0' || ul > UINT_MAX) ++ error_msg("The MaxCoreFileSize option in the CCpp.conf file holds an invalid value"); ++ else ++ setting_MaxCoreFileSize = ul; ++ } ++ + setting_CreateCoreBacktrace = value ? string_to_bool(value) : true; + value = get_map_string_item_or_NULL(settings, "VerboseLog"); + if (value) +@@ -1019,8 +1129,8 @@ int main(int argc, char** argv) + + unlink(path); + int abrt_core_fd = xopen3(path, O_WRONLY | O_CREAT | O_EXCL, 0600); +- off_t core_size = copyfd_eof(STDIN_FILENO, abrt_core_fd, COPYFD_SPARSE); +- if (core_size < 0 || fsync(abrt_core_fd) != 0) ++ off_t core_size = splice_entire_per_partes(STDIN_FILENO, abrt_core_fd, SIZE_MAX); ++ if (core_size < 0 || fsync(abrt_core_fd) != 0 || close(abrt_core_fd) < 0) + { + unlink(path); + /* copyfd_eof logs the error including errno string, +@@ -1133,31 +1243,58 @@ int main(int argc, char** argv) + close(src_fd_binary); + } + +- off_t core_size = 0; ++ size_t core_size = 0; + if (setting_SaveFullCore) + { +- strcpy(path + path_len, "/"FILENAME_COREDUMP); +- int abrt_core_fd = create_or_die(path, user_core_fd); +- +- /* We write both coredumps at once. +- * We can't write user coredump first, since it might be truncated +- * and thus can't be copied and used as abrt coredump; +- * and if we write abrt coredump first and then copy it as user one, +- * then we have a race when process exits but coredump does not exist yet: +- * $ echo -e '#include\nmain(){raise(SIGSEGV);}' | gcc -o test -x c - +- * $ rm -f core*; ulimit -c unlimited; ./test; ls -l core* +- * 21631 Segmentation fault (core dumped) ./test +- * ls: cannot access core*: No such file or directory <=== BAD +- */ +- core_size = copyfd_sparse(STDIN_FILENO, abrt_core_fd, user_core_fd, ulimit_c); +- close_user_core(user_core_fd, core_size); +- if (fsync(abrt_core_fd) != 0 || close(abrt_core_fd) != 0 || core_size < 0) ++ int abrt_core_fd = dd_open_item(dd, FILENAME_COREDUMP, O_RDWR); ++ if (abrt_core_fd < 0) ++ { /* Avoid the need to deal with two destinations. */ ++ perror_msg("Failed to create ABRT core file in '%s'", dd->dd_dirname); ++ create_user_core(user_core_fd, pid, ulimit_c); ++ } ++ else + { +- unlink(path); +- dd_delete(dd); +- /* copyfd_sparse logs the error including errno string, +- * but it does not log file name */ +- error_msg_and_die("Error writing '%s'", path); ++ size_t abrt_limit = 0; ++ if ( (g_settings_nMaxCrashReportsSize != 0 && setting_MaxCoreFileSize == 0) ++ || (g_settings_nMaxCrashReportsSize != 0 && g_settings_nMaxCrashReportsSize < setting_MaxCoreFileSize)) ++ abrt_limit = g_settings_nMaxCrashReportsSize; ++ else ++ abrt_limit = setting_MaxCoreFileSize; ++ ++ if (abrt_limit != 0) ++ { ++ const size_t abrt_limit_bytes = 1024 * 1024 * abrt_limit; ++ /* Overflow protection. */ ++ if (abrt_limit_bytes > abrt_limit) ++ abrt_limit = abrt_limit_bytes; ++ else ++ { ++ error_msg("ABRT core file size limit (MaxCrashReportsSize|MaxCoreFileSize) does not fit into runtime type. Using maximal possible size."); ++ abrt_limit = SIZE_MAX; ++ } ++ } ++ else ++ abrt_limit = SIZE_MAX; ++ ++ if (user_core_fd < 0) ++ { ++ const ssize_t r = splice_entire_per_partes(STDIN_FILENO, abrt_core_fd, abrt_limit); ++ if (r < 0) ++ perror_msg("Failed to write ABRT core file"); ++ else ++ core_size = r; ++ } ++ else ++ { ++ size_t user_limit = ulimit_c; ++ const int r = dump_two_core_files(abrt_core_fd, &abrt_limit, user_core_fd, &user_limit); ++ close_user_core(user_core_fd, (r & DUMP_USER_CORE_FAILED) ? -1 : user_limit); ++ if (!(r & DUMP_ABRT_CORE_FAILED)) ++ core_size = abrt_limit; ++ } ++ ++ if (fsync(abrt_core_fd) != 0 || close(abrt_core_fd) != 0) ++ perror_msg("Failed to close ABRT core file"); + } + } + else +@@ -1223,8 +1360,8 @@ int main(int argc, char** argv) + free(newpath); + + if (core_size > 0) +- log_notice("Saved core dump of pid %lu (%s) to %s (%llu bytes)", +- (long)pid, executable, path, (long long)core_size); ++ log_notice("Saved core dump of pid %lu (%s) to %s (%zu bytes)", ++ (long)pid, executable, path, core_size); + + notify_new_path(path); + +-- +2.17.2 + diff --git a/SOURCES/0314-conf-increase-MaxCrashReportsSize-to-5GiB.patch b/SOURCES/0314-conf-increase-MaxCrashReportsSize-to-5GiB.patch new file mode 100644 index 0000000..c5c9da9 --- /dev/null +++ b/SOURCES/0314-conf-increase-MaxCrashReportsSize-to-5GiB.patch @@ -0,0 +1,30 @@ +From 0c4b1da592933c05f08319ce88a708a23cde2ff3 Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Sun, 16 Oct 2016 15:56:50 +0200 +Subject: [PATCH] conf: increase MaxCrashReportsSize to 5GiB + +Since we limit core files size by the value of this option we need to +increase its value to be able to write full core files of application +such as gnome-shell. + +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 24df20b63..43c7fe059 100644 +--- a/src/daemon/abrt.conf ++++ b/src/daemon/abrt.conf +@@ -7,7 +7,7 @@ + + # Max size for crash storage [MiB] or 0 for unlimited + # +-MaxCrashReportsSize = 1000 ++MaxCrashReportsSize = 5000 + + # Specify where you want to store coredumps and all files which are needed for + # reporting. (default:/var/spool/abrt) +-- +2.17.2 + diff --git a/SOURCES/0317-Resolves-bz1647841.patch b/SOURCES/0317-Resolves-bz1647841.patch new file mode 100644 index 0000000..f8e594b --- /dev/null +++ b/SOURCES/0317-Resolves-bz1647841.patch @@ -0,0 +1,26 @@ +From 6e712cc037ae689e3ad418a1730b84433b24a337 Mon Sep 17 00:00:00 2001 +From: Matej Habrnal +Date: Mon, 26 Sep 2016 16:03:27 +0200 +Subject: [PATCH] Resolves bz1647841 + +vmcore: /var/tmp/abrt is no longer a dump location + +Signed-off-by: Matej Habrnal +(cherry picked from commit 62704f1809720a4e00b1a71f1bd383887aec5b8f) +Signed-off-by: Raghavendra Rao +--- + src/hooks/vmcore.conf | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/hooks/vmcore.conf b/src/hooks/vmcore.conf +index cff35d831..0fb9c3edc 100644 +--- a/src/hooks/vmcore.conf ++++ b/src/hooks/vmcore.conf +@@ -1,3 +1,3 @@ +-# Do you want vmcore to be copied, or moved from /var/crash to /var/tmp/abrt? ++# Do you want vmcore to be copied, or moved from /var/crash to /var/spool/abrt? + # (default is to copy, but it may duplicate way too much data) + CopyVMcore = yes +-- +2.17.2 + diff --git a/SOURCES/0318-testsuite-move-examples-to-tests.patch b/SOURCES/0318-testsuite-move-examples-to-tests.patch new file mode 100644 index 0000000..cf1d985 --- /dev/null +++ b/SOURCES/0318-testsuite-move-examples-to-tests.patch @@ -0,0 +1,264 @@ +From 4e4a590283c0a69b46ca6c106fa25ab424be246c Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Thu, 22 Nov 2018 13:27:06 +0100 +Subject: [PATCH] testsuite: move examples to 'tests' + +Signed-off-by: Martin Kutlak +--- + Makefile.am | 29 +---------------------------- + tests/Makefile.am | 29 ++++++++++++++++++++++++++++- + {examples => tests/examples}/cut_here.right | 0 + .../examples}/hash-gen-oops6.right | 0 + .../examples}/hash-gen-same-as-oops6.right | 0 + .../examples}/hash-gen-short-oops.right | 0 + .../examples}/koops-tainted-bg1 | 0 + {examples => tests/examples}/koops-tainted-g | 0 + .../examples}/koops-tainted-insane | 0 + .../examples}/koops-tainted-spaces | 0 + {examples => tests/examples}/nmi_oops.right | 0 + {examples => tests/examples}/nmi_oops.test | 0 + .../examples}/nmi_oops_hash.right | 0 + .../examples}/nmi_oops_hash.test | 0 + .../examples}/oops-kernel-3.x.x | 0 + .../examples}/oops-same-as-oops4.right | 0 + .../examples}/oops-with-jiffies.right | 0 + .../examples}/oops-with-jiffies.test | 0 + {examples => tests/examples}/oops1.right | 0 + .../examples}/oops10_s390x.right | 0 + .../examples}/oops10_s390x.test | 0 + {examples => tests/examples}/oops4.right | 0 + .../examples}/oops_broken_bios.test | 0 + .../examples}/oops_recursive_locking1.right | 0 + .../examples}/oops_recursive_locking1.test | 0 + .../examples}/oops_unsupported_hw.test | 0 + tests/koops-test.h | 2 +- + 27 files changed, 30 insertions(+), 30 deletions(-) + rename {examples => tests/examples}/cut_here.right (100%) + rename {examples => tests/examples}/hash-gen-oops6.right (100%) + rename {examples => tests/examples}/hash-gen-same-as-oops6.right (100%) + rename {examples => tests/examples}/hash-gen-short-oops.right (100%) + rename {examples => tests/examples}/koops-tainted-bg1 (100%) + rename {examples => tests/examples}/koops-tainted-g (100%) + rename {examples => tests/examples}/koops-tainted-insane (100%) + rename {examples => tests/examples}/koops-tainted-spaces (100%) + rename {examples => tests/examples}/nmi_oops.right (100%) + rename {examples => tests/examples}/nmi_oops.test (100%) + rename {examples => tests/examples}/nmi_oops_hash.right (100%) + rename {examples => tests/examples}/nmi_oops_hash.test (100%) + rename {examples => tests/examples}/oops-kernel-3.x.x (100%) + rename {examples => tests/examples}/oops-same-as-oops4.right (100%) + rename {examples => tests/examples}/oops-with-jiffies.right (100%) + rename {examples => tests/examples}/oops-with-jiffies.test (100%) + rename {examples => tests/examples}/oops1.right (100%) + rename {examples => tests/examples}/oops10_s390x.right (100%) + rename {examples => tests/examples}/oops10_s390x.test (100%) + rename {examples => tests/examples}/oops4.right (100%) + rename {examples => tests/examples}/oops_broken_bios.test (100%) + rename {examples => tests/examples}/oops_recursive_locking1.right (100%) + rename {examples => tests/examples}/oops_recursive_locking1.test (100%) + rename {examples => tests/examples}/oops_unsupported_hw.test (100%) + rename {examples => tests/examples}/taint/.gitignore (100%) + rename {examples => tests/examples}/taint/Makefile (100%) + rename {examples => tests/examples}/taint/taint.c (100%) + +diff --git a/Makefile.am b/Makefile.am +index b5430d133..1a9c3e4b2 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -4,36 +4,9 @@ SUBDIRS = src doc po icons tests apidoc + DISTCHECK_CONFIGURE_FLAGS = \ + --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir) + +-TESTSUITE_FILES = +-TESTSUITE_FILES += examples/koops-tainted-g +-TESTSUITE_FILES += examples/koops-tainted-insane +-TESTSUITE_FILES += examples/koops-tainted-spaces +-TESTSUITE_FILES += examples/cut_here.right +-TESTSUITE_FILES += examples/oops-kernel-3.x.x +-TESTSUITE_FILES += examples/oops1.right +-TESTSUITE_FILES += examples/koops-tainted-bg1 +-TESTSUITE_FILES += examples/oops-same-as-oops4.right +-TESTSUITE_FILES += examples/oops4.right +-TESTSUITE_FILES += examples/oops-same-as-oops4.right +-TESTSUITE_FILES += examples/hash-gen-oops6.right +-TESTSUITE_FILES += examples/hash-gen-short-oops.right +-TESTSUITE_FILES += examples/hash-gen-same-as-oops6.right +-TESTSUITE_FILES += examples/oops-with-jiffies.test +-TESTSUITE_FILES += examples/oops-with-jiffies.right +-TESTSUITE_FILES += examples/oops_recursive_locking1.test +-TESTSUITE_FILES += examples/oops_recursive_locking1.right +-TESTSUITE_FILES += examples/nmi_oops.test +-TESTSUITE_FILES += examples/nmi_oops.right +-TESTSUITE_FILES += examples/nmi_oops_hash.test +-TESTSUITE_FILES += examples/nmi_oops_hash.right +-TESTSUITE_FILES += examples/oops10_s390x.test +-TESTSUITE_FILES += examples/oops10_s390x.right +-TESTSUITE_FILES += examples/oops_unsupported_hw.test +-TESTSUITE_FILES += examples/oops_broken_bios.test +- + + EXTRA_DIST = doc/coding-style abrt.spec.in abrt.pc.in \ +- abrt-version asciidoc.conf init-scripts/* $(TESTSUITE_FILES) \ ++ abrt-version asciidoc.conf init-scripts/* \ + augeas/test_abrt.aug + + pkgconfigdir = $(libdir)/pkgconfig +diff --git a/tests/Makefile.am b/tests/Makefile.am +index 416f579b7..1e1b63376 100644 +--- a/tests/Makefile.am ++++ b/tests/Makefile.am +@@ -24,6 +24,33 @@ EXTRA_DIST = package.m4 ignored_problems_data + ## Test suite. ## + ## ------------ ## + ++TESTSUITE_FILES = ++TESTSUITE_FILES += examples/koops-tainted-g ++TESTSUITE_FILES += examples/koops-tainted-insane ++TESTSUITE_FILES += examples/koops-tainted-spaces ++TESTSUITE_FILES += examples/cut_here.right ++TESTSUITE_FILES += examples/oops-kernel-3.x.x ++TESTSUITE_FILES += examples/oops1.right ++TESTSUITE_FILES += examples/koops-tainted-bg1 ++TESTSUITE_FILES += examples/oops-same-as-oops4.right ++TESTSUITE_FILES += examples/oops4.right ++TESTSUITE_FILES += examples/oops-same-as-oops4.right ++TESTSUITE_FILES += examples/hash-gen-oops6.right ++TESTSUITE_FILES += examples/hash-gen-short-oops.right ++TESTSUITE_FILES += examples/hash-gen-same-as-oops6.right ++TESTSUITE_FILES += examples/oops-with-jiffies.test ++TESTSUITE_FILES += examples/oops-with-jiffies.right ++TESTSUITE_FILES += examples/oops_recursive_locking1.test ++TESTSUITE_FILES += examples/oops_recursive_locking1.right ++TESTSUITE_FILES += examples/nmi_oops.test ++TESTSUITE_FILES += examples/nmi_oops.right ++TESTSUITE_FILES += examples/nmi_oops_hash.test ++TESTSUITE_FILES += examples/nmi_oops_hash.right ++TESTSUITE_FILES += examples/oops10_s390x.test ++TESTSUITE_FILES += examples/oops10_s390x.right ++TESTSUITE_FILES += examples/oops_unsupported_hw.test ++TESTSUITE_FILES += examples/oops_broken_bios.test ++ + TESTSUITE_AT = \ + local.at \ + testsuite.at \ +@@ -32,7 +59,7 @@ TESTSUITE_AT = \ + ignored_problems.at \ + hooklib.at + +-EXTRA_DIST += $(TESTSUITE_AT) ++EXTRA_DIST += $(TESTSUITE_AT) $(TESTSUITE_FILES) + TESTSUITE = $(srcdir)/testsuite + MAINTAINERCLEANFILES = Makefile.in $(TESTSUITE) + check_DATA = atconfig atlocal $(TESTSUITE) +diff --git a/examples/cut_here.right b/tests/examples/cut_here.right +similarity index 100% +rename from examples/cut_here.right +rename to tests/examples/cut_here.right +diff --git a/examples/hash-gen-oops6.right b/tests/examples/hash-gen-oops6.right +similarity index 100% +rename from examples/hash-gen-oops6.right +rename to tests/examples/hash-gen-oops6.right +diff --git a/examples/hash-gen-same-as-oops6.right b/tests/examples/hash-gen-same-as-oops6.right +similarity index 100% +rename from examples/hash-gen-same-as-oops6.right +rename to tests/examples/hash-gen-same-as-oops6.right +diff --git a/examples/hash-gen-short-oops.right b/tests/examples/hash-gen-short-oops.right +similarity index 100% +rename from examples/hash-gen-short-oops.right +rename to tests/examples/hash-gen-short-oops.right +diff --git a/examples/koops-tainted-bg1 b/tests/examples/koops-tainted-bg1 +similarity index 100% +rename from examples/koops-tainted-bg1 +rename to tests/examples/koops-tainted-bg1 +diff --git a/examples/koops-tainted-g b/tests/examples/koops-tainted-g +similarity index 100% +rename from examples/koops-tainted-g +rename to tests/examples/koops-tainted-g +diff --git a/examples/koops-tainted-insane b/tests/examples/koops-tainted-insane +similarity index 100% +rename from examples/koops-tainted-insane +rename to tests/examples/koops-tainted-insane +diff --git a/examples/koops-tainted-spaces b/tests/examples/koops-tainted-spaces +similarity index 100% +rename from examples/koops-tainted-spaces +rename to tests/examples/koops-tainted-spaces +diff --git a/examples/nmi_oops.right b/tests/examples/nmi_oops.right +similarity index 100% +rename from examples/nmi_oops.right +rename to tests/examples/nmi_oops.right +diff --git a/examples/nmi_oops.test b/tests/examples/nmi_oops.test +similarity index 100% +rename from examples/nmi_oops.test +rename to tests/examples/nmi_oops.test +diff --git a/examples/nmi_oops_hash.right b/tests/examples/nmi_oops_hash.right +similarity index 100% +rename from examples/nmi_oops_hash.right +rename to tests/examples/nmi_oops_hash.right +diff --git a/examples/nmi_oops_hash.test b/tests/examples/nmi_oops_hash.test +similarity index 100% +rename from examples/nmi_oops_hash.test +rename to tests/examples/nmi_oops_hash.test +diff --git a/examples/oops-kernel-3.x.x b/tests/examples/oops-kernel-3.x.x +similarity index 100% +rename from examples/oops-kernel-3.x.x +rename to tests/examples/oops-kernel-3.x.x +diff --git a/examples/oops-same-as-oops4.right b/tests/examples/oops-same-as-oops4.right +similarity index 100% +rename from examples/oops-same-as-oops4.right +rename to tests/examples/oops-same-as-oops4.right +diff --git a/examples/oops-with-jiffies.right b/tests/examples/oops-with-jiffies.right +similarity index 100% +rename from examples/oops-with-jiffies.right +rename to tests/examples/oops-with-jiffies.right +diff --git a/examples/oops-with-jiffies.test b/tests/examples/oops-with-jiffies.test +similarity index 100% +rename from examples/oops-with-jiffies.test +rename to tests/examples/oops-with-jiffies.test +diff --git a/examples/oops1.right b/tests/examples/oops1.right +similarity index 100% +rename from examples/oops1.right +rename to tests/examples/oops1.right +diff --git a/examples/oops10_s390x.right b/tests/examples/oops10_s390x.right +similarity index 100% +rename from examples/oops10_s390x.right +rename to tests/examples/oops10_s390x.right +diff --git a/examples/oops10_s390x.test b/tests/examples/oops10_s390x.test +similarity index 100% +rename from examples/oops10_s390x.test +rename to tests/examples/oops10_s390x.test +diff --git a/examples/oops4.right b/tests/examples/oops4.right +similarity index 100% +rename from examples/oops4.right +rename to tests/examples/oops4.right +diff --git a/examples/oops_broken_bios.test b/tests/examples/oops_broken_bios.test +similarity index 100% +rename from examples/oops_broken_bios.test +rename to tests/examples/oops_broken_bios.test +diff --git a/examples/oops_recursive_locking1.right b/tests/examples/oops_recursive_locking1.right +similarity index 100% +rename from examples/oops_recursive_locking1.right +rename to tests/examples/oops_recursive_locking1.right +diff --git a/examples/oops_recursive_locking1.test b/tests/examples/oops_recursive_locking1.test +similarity index 100% +rename from examples/oops_recursive_locking1.test +rename to tests/examples/oops_recursive_locking1.test +diff --git a/examples/oops_unsupported_hw.test b/tests/examples/oops_unsupported_hw.test +similarity index 100% +rename from examples/oops_unsupported_hw.test +rename to tests/examples/oops_unsupported_hw.test +diff --git a/tests/koops-test.h b/tests/koops-test.h +index 53787aa62..58f4ede01 100644 +--- a/tests/koops-test.h ++++ b/tests/koops-test.h +@@ -18,7 +18,7 @@ + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +-#define EXAMPLE_PFX "../../../examples" ++#define EXAMPLE_PFX "../../examples" + + struct test_struct { + const char *filename; +-- +2.17.2 + diff --git a/SOURCES/0319-koops-Filter-kernel-oopses-based-on-logged-hostname.patch b/SOURCES/0319-koops-Filter-kernel-oopses-based-on-logged-hostname.patch new file mode 100644 index 0000000..22d7dfc --- /dev/null +++ b/SOURCES/0319-koops-Filter-kernel-oopses-based-on-logged-hostname.patch @@ -0,0 +1,432 @@ +From 9fdd19c8ce013fa32d2ab62e4363d6890132dbb3 Mon Sep 17 00:00:00 2001 +From: clime +Date: Thu, 22 Nov 2018 13:45:38 +0100 +Subject: [PATCH] koops: Filter kernel oopses based on logged hostname + +syslog message parser that looks for kernel oopses did not look +at hostname in each message before. If logs from multiple machines +are collected into a single system log on one central machine, abrt +can trigger on events that come from those other machines, whereas it +should trigger only on events coming from the machine itself. This +commit fixes the behavior by checking the hostname in each event. + +rsyslogd needs to be configured to include the hostname (short or full) +in the syslog messages, otherwise all kernel oopses will be filtered out. +By default system configuration, the short hostname is included. + +* also adds fixes for tests because host name in test input files now matters + +Related: bz#1613182 +--- + src/lib/kernel.c | 43 ++++ + tests/Makefile.am | 12 +- + tests/examples/koops-tainted-g | 61 ----- + tests/examples/koops-tainted-g.template | 59 +++++ + tests/examples/koops-tainted-insane | 6 - + tests/examples/koops-tainted-insane.template | 6 + + tests/examples/nmi_oops.test | 32 --- + tests/examples/nmi_oops.test.template | 32 +++ + tests/examples/not_oops_foreign_hostname.test | 1 + + tests/examples/oops_full_hostname.test | 1 + + tests/examples/oops_full_hostname.test.template | 1 + + tests/examples/prepare-data | 10 + + 12 files changed, 161 insertions(+), 103 deletions(-) + delete mode 100644 tests/examples/koops-tainted-g + create mode 100644 tests/examples/koops-tainted-g.template + delete mode 100644 tests/examples/koops-tainted-insane + create mode 100644 tests/examples/koops-tainted-insane.template + delete mode 100644 tests/examples/nmi_oops.test + create mode 100644 tests/examples/nmi_oops.test.template + create mode 100644 tests/examples/not_oops_foreign_hostname.test + create mode 100644 tests/examples/oops_full_hostname.test + create mode 100644 tests/examples/oops_full_hostname.test.template + create mode 100755 tests/examples/prepare-data + +diff --git a/src/lib/kernel.c b/src/lib/kernel.c +index 346b0a662..0a8488e25 100644 +--- a/src/lib/kernel.c ++++ b/src/lib/kernel.c +@@ -20,6 +20,7 @@ + #include + + #include ++#include + + #define _GNU_SOURCE 1 /* for strcasestr */ + #include "libabrt.h" +@@ -234,6 +235,38 @@ void koops_extract_oopses(GList **oops_list, char *buffer, size_t buflen) + int lines_info_size = 0; + struct line_info *lines_info = NULL; + ++ /* prepare hostname search string (needle) */ ++ unsigned hsz = 256; ++ char *hostname = xmalloc(hsz); ++ char *short_needle = xmalloc(hsz+10); ++ char *long_needle = xmalloc(hsz+10); ++ if (gethostname(hostname, hsz) != 0) ++ { ++ hostname[0] = '\0'; ++ } ++ else ++ { ++ char *dot_str = strchr(hostname, '.'); ++ unsigned dot_pos; ++ if (dot_str != NULL) ++ { ++ dot_pos = dot_str - hostname; ++ } ++ else ++ { ++ hostname[hsz-1] = '\0'; ++ dot_pos = strlen(hostname); ++ } ++ short_needle[0] = ' '; ++ short_needle[1] = '\0'; ++ strncat(short_needle, hostname, dot_pos); ++ strncat(short_needle, " kernel: ", 10); ++ long_needle[0] = ' '; ++ long_needle[1] = '\0'; ++ strncat(long_needle, hostname, hsz-1); ++ strncat(long_needle, " kernel: ", 10); ++ } ++ + /* Split buffer into lines */ + + if (buflen != 0) +@@ -289,6 +322,13 @@ void koops_extract_oopses(GList **oops_list, char *buffer, size_t buflen) + } + goto next_line; + } ++ ++ /* check if the machine hostname is contained in the message hostname */ ++ if (hostname[0] != '\0' && !strstr(c, short_needle) && !strstr(c, long_needle)) ++ { ++ goto next_line; ++ } ++ + c = kernel_str + sizeof("kernel: ")-1; + } + +@@ -499,6 +539,9 @@ next_line: + } + + free(lines_info); ++ free(hostname); ++ free(short_needle); ++ free(long_needle); + } + + int koops_hash_str(char result[SHA1_RESULT_LEN*2 + 1], const char *oops_buf) +diff --git a/tests/Makefile.am b/tests/Makefile.am +index 1e1b63376..dc96e5d7e 100644 +--- a/tests/Makefile.am ++++ b/tests/Makefile.am +@@ -25,8 +25,8 @@ EXTRA_DIST = package.m4 ignored_problems_data + ## ------------ ## + + TESTSUITE_FILES = +-TESTSUITE_FILES += examples/koops-tainted-g +-TESTSUITE_FILES += examples/koops-tainted-insane ++TESTSUITE_FILES += examples/koops-tainted-g.template ++TESTSUITE_FILES += examples/koops-tainted-insane.template + TESTSUITE_FILES += examples/koops-tainted-spaces + TESTSUITE_FILES += examples/cut_here.right + TESTSUITE_FILES += examples/oops-kernel-3.x.x +@@ -42,7 +42,7 @@ TESTSUITE_FILES += examples/oops-with-jiffies.test + TESTSUITE_FILES += examples/oops-with-jiffies.right + TESTSUITE_FILES += examples/oops_recursive_locking1.test + TESTSUITE_FILES += examples/oops_recursive_locking1.right +-TESTSUITE_FILES += examples/nmi_oops.test ++TESTSUITE_FILES += examples/nmi_oops.test.template + TESTSUITE_FILES += examples/nmi_oops.right + TESTSUITE_FILES += examples/nmi_oops_hash.test + TESTSUITE_FILES += examples/nmi_oops_hash.right +@@ -66,11 +66,15 @@ TESTSUITE_AT = \ + EXTRA_DIST += $(TESTSUITE_AT) $(TESTSUITE_FILES) + TESTSUITE = $(srcdir)/testsuite + MAINTAINERCLEANFILES = Makefile.in $(TESTSUITE) +-check_DATA = atconfig atlocal $(TESTSUITE) ++check_DATA = atconfig atlocal prepare-data $(TESTSUITE) + DISTCLEANFILES = atconfig + EXTRA_DIST += atlocal.in + EXTRA_DIST += koops-test.h + EXTRA_DIST += GList_append.supp ++EXTRA_DIST += examples/prepare-data ++ ++prepare-data: ++ ${top_builddir}/tests/examples/prepare-data + + atconfig: $(top_builddir)/config.status + (cd ${top_builddir} && ./config.status ${subdir}/atconfig) +diff --git a/tests/examples/koops-tainted-g b/tests/examples/koops-tainted-g +deleted file mode 100644 +index f59c7400e..000000000 +--- a/tests/examples/koops-tainted-g ++++ /dev/null +@@ -1,61 +0,0 @@ +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564718] ------------[ cut here]------------ +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564721] WARNING: atarch/x86/xen/mmu.c:475 xen_make_pte+0x32/0x8e() +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564723] Hardware name: OptiPlex 755 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564725] Modules linked in: nfs +-fscache auth_rpcgss nfs_acl tcp_lp ppdev parport_pc lp parport ebtable_nat +-ebtables ipt_MASQUERADE iptable_nat nf_nat xt_CHECKSUM iptable_mangle tun +-bridge stp llc lockd drbd lru_cache ip6t_REJECT nf_conntrack_ipv6 +-nf_defrag_ipv6 nf_conntrack_ipv4 nf_defrag_ipv4 xt_state nf_conntrack +-ip6table_filter ip6_tables snd_hda_codec_analog dcdbas snd_hda_intel +-snd_hda_codec snd_hwdep snd_seq snd_seq_device 3c59x mii snd_pcm i2c_i801 +-serio_raw iTCO_wdt iTCO_vendor_support snd_timer snd soundcore snd_page_alloc +-e1000e xen_netback xen_blkback xen_gntdev xen_evtchn sunrpc uinput xenfs +-pata_acpi usb_storage ata_generic radeon ttm drm_kms_helper drm i2c_algo_bit +-i2c_core [last unloaded: scsi_wait_scan] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564791] Pid: 912, comm: X Tainted: G 3.1.0-0.rc9.git0.0.fc16.x86_64 #1 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564793] Call Trace: +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564797] [] warn_slowpath_common+0x83/0x9b +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564800] [] warn_slowpath_null+0x1a/0x1c +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564803] [] xen_make_pte+0x32/0x8e +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564807] [] __raw_callee_save_xen_make_pte+0x11/0x1e +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564810] [] ? pfn_pte+0x26/0x29 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564814] [] __change_page_attr_set_clr+0x130/0x749 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564817] [] ? get_phys_to_machine+0x1f/0x62 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564821] [] ? mfn_to_pfn.part.3+0x3e/0x88 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564824] [] ? pte_mfn_to_pfn+0x3b/0x4d +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564827] [] ? __xen_set_pte+0x1b/0x5b +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564831] [] __change_page_attr_set_clr+0x6fe/0x749 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564834] [] ? __purge_vmap_area_lazy+0x7c/0x17d +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564838] [] change_page_attr_set_clr+0x14c/0x305 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564842] [] _set_pages_array+0xa3/0xf1 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564845] [] set_pages_array_wc+0x13/0x15 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564852] [] ttm_set_pages_caching+0x39/0x5b [ttm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564858] [] ttm_alloc_new_pages+0xd3/0x15b [ttm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564864] [] ttm_get_pages+0x137/0x361 [ttm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564870] [] __ttm_tt_get_page+0x54/0xb0 [ttm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564876] [] ttm_tt_populate+0x3d/0x7c [ttm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564881] [] ttm_tt_bind+0x32/0x66 [ttm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564887] [] ttm_bo_handle_move_mem+0x114/0x2a1 [ttm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564893] [] ttm_bo_evict+0x29f/0x2e8 [ttm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564899] [] ttm_mem_evict_first+0x152/0x180 [ttm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564906] [] ttm_bo_mem_space+0x29b/0x2ea [ttm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564912] [] ttm_bo_move_buffer+0xb6/0x10c [ttm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564922] [] ? drm_mm_insert_helper+0xd3/0xec [drm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564928] [] ttm_bo_validate+0xb6/0xf4 [ttm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564934] [] ttm_bo_init+0x300/0x339 [ttm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564949] [] radeon_bo_create+0x1bf/0x248 [radeon] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564965] [] ? radeon_bo_clear_surface_reg+0x50/0x50 [radeon] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564983] [] radeon_gem_object_create+0x53/0xd8 [radeon] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.565001] [] radeon_gem_create_ioctl+0x4b/0x81 [radeon] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.565005] [] ? should_resched+0xe/0x2d +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.565013] [] drm_ioctl+0x29e/0x37b [drm] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.565031] [] ? radeon_gem_pwrite_ioctl+0x28/0x28 [radeon] +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.565034] [] ? inode_has_perm+0x32/0x34 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.565038] [] ? file_has_perm+0xa7/0xc9 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.565041] [] do_vfs_ioctl+0x452/0x493 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.565045] [] sys_ioctl+0x56/0x7c +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.565048] [] ? sys_read+0x61/0x6e +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.565059] [] system_call_fastpath+0x16/0x1b +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.565062] ---[ end trace e17fa7b6cce3a141 ]--- +- +- +diff --git a/tests/examples/koops-tainted-g.template b/tests/examples/koops-tainted-g.template +new file mode 100644 +index 000000000..104d6bf16 +--- /dev/null ++++ b/tests/examples/koops-tainted-g.template +@@ -0,0 +1,59 @@ ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564718] ------------[ cut here]------------ ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564721] WARNING: atarch/x86/xen/mmu.c:475 xen_make_pte+0x32/0x8e() ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564723] Hardware name: OptiPlex 755 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564725] Modules linked in: nfs ++fscache auth_rpcgss nfs_acl tcp_lp ppdev parport_pc lp parport ebtable_nat ++ebtables ipt_MASQUERADE iptable_nat nf_nat xt_CHECKSUM iptable_mangle tun ++bridge stp llc lockd drbd lru_cache ip6t_REJECT nf_conntrack_ipv6 ++nf_defrag_ipv6 nf_conntrack_ipv4 nf_defrag_ipv4 xt_state nf_conntrack ++ip6table_filter ip6_tables snd_hda_codec_analog dcdbas snd_hda_intel ++snd_hda_codec snd_hwdep snd_seq snd_seq_device 3c59x mii snd_pcm i2c_i801 ++serio_raw iTCO_wdt iTCO_vendor_support snd_timer snd soundcore snd_page_alloc ++e1000e xen_netback xen_blkback xen_gntdev xen_evtchn sunrpc uinput xenfs ++pata_acpi usb_storage ata_generic radeon ttm drm_kms_helper drm i2c_algo_bit ++i2c_core [last unloaded: scsi_wait_scan] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564791] Pid: 912, comm: X Tainted: G 3.1.0-0.rc9.git0.0.fc16.x86_64 #1 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564793] Call Trace: ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564797] [] warn_slowpath_common+0x83/0x9b ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564800] [] warn_slowpath_null+0x1a/0x1c ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564803] [] xen_make_pte+0x32/0x8e ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564807] [] __raw_callee_save_xen_make_pte+0x11/0x1e ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564810] [] ? pfn_pte+0x26/0x29 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564814] [] __change_page_attr_set_clr+0x130/0x749 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564817] [] ? get_phys_to_machine+0x1f/0x62 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564821] [] ? mfn_to_pfn.part.3+0x3e/0x88 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564824] [] ? pte_mfn_to_pfn+0x3b/0x4d ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564827] [] ? __xen_set_pte+0x1b/0x5b ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564831] [] __change_page_attr_set_clr+0x6fe/0x749 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564834] [] ? __purge_vmap_area_lazy+0x7c/0x17d ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564838] [] change_page_attr_set_clr+0x14c/0x305 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564842] [] _set_pages_array+0xa3/0xf1 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564845] [] set_pages_array_wc+0x13/0x15 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564852] [] ttm_set_pages_caching+0x39/0x5b [ttm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564858] [] ttm_alloc_new_pages+0xd3/0x15b [ttm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564864] [] ttm_get_pages+0x137/0x361 [ttm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564870] [] __ttm_tt_get_page+0x54/0xb0 [ttm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564876] [] ttm_tt_populate+0x3d/0x7c [ttm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564881] [] ttm_tt_bind+0x32/0x66 [ttm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564887] [] ttm_bo_handle_move_mem+0x114/0x2a1 [ttm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564893] [] ttm_bo_evict+0x29f/0x2e8 [ttm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564899] [] ttm_mem_evict_first+0x152/0x180 [ttm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564906] [] ttm_bo_mem_space+0x29b/0x2ea [ttm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564912] [] ttm_bo_move_buffer+0xb6/0x10c [ttm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564922] [] ? drm_mm_insert_helper+0xd3/0xec [drm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564928] [] ttm_bo_validate+0xb6/0xf4 [ttm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564934] [] ttm_bo_init+0x300/0x339 [ttm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564949] [] radeon_bo_create+0x1bf/0x248 [radeon] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564965] [] ? radeon_bo_clear_surface_reg+0x50/0x50 [radeon] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564983] [] radeon_gem_object_create+0x53/0xd8 [radeon] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.565001] [] radeon_gem_create_ioctl+0x4b/0x81 [radeon] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.565005] [] ? should_resched+0xe/0x2d ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.565013] [] drm_ioctl+0x29e/0x37b [drm] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.565031] [] ? radeon_gem_pwrite_ioctl+0x28/0x28 [radeon] ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.565034] [] ? inode_has_perm+0x32/0x34 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.565038] [] ? file_has_perm+0xa7/0xc9 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.565041] [] do_vfs_ioctl+0x452/0x493 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.565045] [] sys_ioctl+0x56/0x7c ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.565048] [] ? sys_read+0x61/0x6e ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.565059] [] system_call_fastpath+0x16/0x1b ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.565062] ---[ end trace e17fa7b6cce3a141 ]--- +diff --git a/tests/examples/koops-tainted-insane b/tests/examples/koops-tainted-insane +deleted file mode 100644 +index 1d3eee631..000000000 +--- a/tests/examples/koops-tainted-insane ++++ /dev/null +@@ -1,6 +0,0 @@ +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564718] ------------[ cut here]------------ +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564721] WARNING: atarch/x86/xen/mmu.c:475 xen_make_pte+0x32/0x8e() +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564791] Pid: 912, comm: X Tainted: ABCDEFGHIJKLMNOPQRSTUVWXYZ 3.1.0-0.rc9.git0.0.fc16.x86_64 #1 +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564793] Call Trace: +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.564797] [] warn_slowpath_common+0x83/0x9b +-Oct 11 10:57:36 jerry-opti755 kernel: [ 4552.565062] ---[ end trace e17fa7b6cce3a141 ]--- +diff --git a/tests/examples/koops-tainted-insane.template b/tests/examples/koops-tainted-insane.template +new file mode 100644 +index 000000000..6b24f709b +--- /dev/null ++++ b/tests/examples/koops-tainted-insane.template +@@ -0,0 +1,6 @@ ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564718] ------------[ cut here]------------ ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564721] WARNING: atarch/x86/xen/mmu.c:475 xen_make_pte+0x32/0x8e() ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564791] Pid: 912, comm: X Tainted: ABCDEFGHIJKLMNOPQRSTUVWXYZ 3.1.0-0.rc9.git0.0.fc16.x86_64 #1 ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564793] Call Trace: ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.564797] [] warn_slowpath_common+0x83/0x9b ++Oct 11 10:57:36 :HOSTNAME: kernel: [ 4552.565062] ---[ end trace e17fa7b6cce3a141 ]--- +diff --git a/tests/examples/nmi_oops.test b/tests/examples/nmi_oops.test +deleted file mode 100644 +index 978281f74..000000000 +--- a/tests/examples/nmi_oops.test ++++ /dev/null +@@ -1,32 +0,0 @@ +-Jan 11 22:31:37 kids1 kernel: ------------[ cut here ]------------ +-Jan 11 22:31:38 kids1 kernel: WARNING: at kernel/watchdog.c:245 watchdog_overflow_callback+0x9c/0xd0() +-Jan 11 22:31:38 kids1 kernel: Hardware name: Bochs +-Jan 11 22:31:38 kids1 kernel: Watchdog detected hard LOCKUP on cpu 0 +-Jan 11 22:31:38 kids1 kernel: Modules linked in: tcp_lp fuse ebtable_nat xt_CHECKSUM bridge stp llc nf_conntrack_netbios_ns nf_conntrack_broadcast ipt_MASQUERADE ip6table_nat nf_nat_ipv6 ip6table_mangle ip6t_REJECT nf_conntrack_ipv6 nf_defrag_ipv6 iptable_nat nf_nat_ipv4 nf_nat iptable_mangle nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack bnep nf_conntrack bluetooth rfkill ebtable_filter ebtables ip6table_filter ip6_tables joydev snd_intel8x0 snd_ac97_codec crc32_pclmul ac97_bus crc32c_intel snd_seq snd_seq_device ghash_clmulni_intel snd_pcm snd_page_alloc snd_timer snd microcode virtio_balloon 8139too i2c_piix4 soundcore 8139cp mii binfmt_misc qxl drm_kms_helper ttm drm i2c_core uinput +-Jan 12 14:32:19 kids1 kernel: Pid: 0, comm: swapper/0 Not tainted 3.8.9-200.fc18.x86_64 #1 +-Jan 12 14:32:21 kids1 kernel: Call Trace: +-Jan 12 14:32:21 kids1 kernel: [] ? watchdog_overflow_callback+0x60/0xd0 +-Jan 12 14:32:21 kids1 kernel: [] warn_slowpath_common+0x66/0x80 +-Jan 12 14:32:21 kids1 kernel: [] warn_slowpath_fmt+0x4c/0x50 +-Jan 12 16:12:16 kids1 kernel: [] ? watchdog_enable+0x1e0/0x1e0 +-Jan 12 19:08:41 kids1 kernel: [] watchdog_overflow_callback+0x9c/0xd0 +-Jan 12 19:08:41 kids1 kernel: [] __perf_event_overflow+0x8e/0x220 +-Jan 12 19:08:41 kids1 kernel: [] ? perf_event_update_userpage+0x19/0x100 +-Jan 12 19:08:41 kids1 kernel: [] perf_event_overflow+0x14/0x20 +-Jan 12 19:08:41 kids1 kernel: [] intel_pmu_handle_irq+0x1b2/0x370 +-Jan 12 19:08:41 kids1 kernel: [] perf_event_nmi_handler+0x1d/0x20 +-Jan 12 19:08:41 kids1 kernel: [] nmi_handle.isra.0+0x59/0x90 +-Jan 12 19:08:41 kids1 kernel: [] do_nmi+0xd0/0x310 +-Jan 12 19:08:41 kids1 kernel: [] end_repeat_nmi+0x1e/0x2e +-Jan 12 19:08:41 kids1 kernel: [] ? irqtime_account_process_tick.isra.2+0x94/0x3c0 +-Jan 12 19:08:41 kids1 kernel: [] ? irqtime_account_process_tick.isra.2+0x94/0x3c0 +-Jan 12 19:08:41 kids1 kernel: [] ? irqtime_account_process_tick.isra.2+0x94/0x3c0 +-Jan 12 19:08:41 kids1 kernel: <> [] account_idle_ticks+0x90/0xa0 +-Jan 12 19:08:41 kids1 kernel: [] tick_nohz_idle_exit+0x165/0x1a0 +-Jan 12 19:08:41 kids1 kernel: [] cpu_idle+0x11b/0x140 +-Jan 12 19:08:41 kids1 kernel: [] rest_init+0x72/0x80 +-Jan 12 19:08:41 kids1 kernel: [] start_kernel+0x3f2/0x3fe +-Jan 12 19:08:41 kids1 kernel: [] ? repair_env_string+0x5c/0x5c +-Jan 12 19:08:41 kids1 kernel: [] ? early_idt_handlers+0x120/0x120 +-Jan 12 19:08:41 kids1 kernel: [] x86_64_start_reservations+0x2a/0x2c +-Jan 12 19:08:41 kids1 kernel: [] x86_64_start_kernel+0xf3/0x100 +diff --git a/tests/examples/nmi_oops.test.template b/tests/examples/nmi_oops.test.template +new file mode 100644 +index 000000000..058d55916 +--- /dev/null ++++ b/tests/examples/nmi_oops.test.template +@@ -0,0 +1,32 @@ ++Jan 11 22:31:37 :HOSTNAME: kernel: ------------[ cut here ]------------ ++Jan 11 22:31:38 :HOSTNAME: kernel: WARNING: at kernel/watchdog.c:245 watchdog_overflow_callback+0x9c/0xd0() ++Jan 11 22:31:38 :HOSTNAME: kernel: Hardware name: Bochs ++Jan 11 22:31:38 :HOSTNAME: kernel: Watchdog detected hard LOCKUP on cpu 0 ++Jan 11 22:31:38 :HOSTNAME: kernel: Modules linked in: tcp_lp fuse ebtable_nat xt_CHECKSUM bridge stp llc nf_conntrack_netbios_ns nf_conntrack_broadcast ipt_MASQUERADE ip6table_nat nf_nat_ipv6 ip6table_mangle ip6t_REJECT nf_conntrack_ipv6 nf_defrag_ipv6 iptable_nat nf_nat_ipv4 nf_nat iptable_mangle nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack bnep nf_conntrack bluetooth rfkill ebtable_filter ebtables ip6table_filter ip6_tables joydev snd_intel8x0 snd_ac97_codec crc32_pclmul ac97_bus crc32c_intel snd_seq snd_seq_device ghash_clmulni_intel snd_pcm snd_page_alloc snd_timer snd microcode virtio_balloon 8139too i2c_piix4 soundcore 8139cp mii binfmt_misc qxl drm_kms_helper ttm drm i2c_core uinput ++Jan 12 14:32:19 :HOSTNAME: kernel: Pid: 0, comm: swapper/0 Not tainted 3.8.9-200.fc18.x86_64 #1 ++Jan 12 14:32:21 :HOSTNAME: kernel: Call Trace: ++Jan 12 14:32:21 :HOSTNAME: kernel: [] ? watchdog_overflow_callback+0x60/0xd0 ++Jan 12 14:32:21 :HOSTNAME: kernel: [] warn_slowpath_common+0x66/0x80 ++Jan 12 14:32:21 :HOSTNAME: kernel: [] warn_slowpath_fmt+0x4c/0x50 ++Jan 12 16:12:16 :HOSTNAME: kernel: [] ? watchdog_enable+0x1e0/0x1e0 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] watchdog_overflow_callback+0x9c/0xd0 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] __perf_event_overflow+0x8e/0x220 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] ? perf_event_update_userpage+0x19/0x100 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] perf_event_overflow+0x14/0x20 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] intel_pmu_handle_irq+0x1b2/0x370 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] perf_event_nmi_handler+0x1d/0x20 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] nmi_handle.isra.0+0x59/0x90 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] do_nmi+0xd0/0x310 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] end_repeat_nmi+0x1e/0x2e ++Jan 12 19:08:41 :HOSTNAME: kernel: [] ? irqtime_account_process_tick.isra.2+0x94/0x3c0 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] ? irqtime_account_process_tick.isra.2+0x94/0x3c0 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] ? irqtime_account_process_tick.isra.2+0x94/0x3c0 ++Jan 12 19:08:41 :HOSTNAME: kernel: <> [] account_idle_ticks+0x90/0xa0 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] tick_nohz_idle_exit+0x165/0x1a0 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] cpu_idle+0x11b/0x140 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] rest_init+0x72/0x80 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] start_kernel+0x3f2/0x3fe ++Jan 12 19:08:41 :HOSTNAME: kernel: [] ? repair_env_string+0x5c/0x5c ++Jan 12 19:08:41 :HOSTNAME: kernel: [] ? early_idt_handlers+0x120/0x120 ++Jan 12 19:08:41 :HOSTNAME: kernel: [] x86_64_start_reservations+0x2a/0x2c ++Jan 12 19:08:41 :HOSTNAME: kernel: [] x86_64_start_kernel+0xf3/0x100 +diff --git a/tests/examples/not_oops_foreign_hostname.test b/tests/examples/not_oops_foreign_hostname.test +new file mode 100644 +index 000000000..b74169988 +--- /dev/null ++++ b/tests/examples/not_oops_foreign_hostname.test +@@ -0,0 +1 @@ ++Oct 12 23:25:16 some-totally-nonexistent-hostname-that-no-machine-can-have-right-thats-it kernel: mce: [Hardware Error]: Machine check events logged +diff --git a/tests/examples/oops_full_hostname.test b/tests/examples/oops_full_hostname.test +new file mode 100644 +index 000000000..3d8a11649 +--- /dev/null ++++ b/tests/examples/oops_full_hostname.test +@@ -0,0 +1 @@ ++ Oct 12 23:25:16 coprbox.den kernel: mce: [Hardware Error]: Machine check events logged +diff --git a/tests/examples/oops_full_hostname.test.template b/tests/examples/oops_full_hostname.test.template +new file mode 100644 +index 000000000..3a5c44001 +--- /dev/null ++++ b/tests/examples/oops_full_hostname.test.template +@@ -0,0 +1 @@ ++Oct 12 23:25:16 :FULL_HOSTNAME: kernel: mce: [Hardware Error]: Machine check events logged +diff --git a/tests/examples/prepare-data b/tests/examples/prepare-data +new file mode 100755 +index 000000000..6645003e3 +--- /dev/null ++++ b/tests/examples/prepare-data +@@ -0,0 +1,10 @@ ++#!/bin/bash ++ ++export scriptdir="$(builtin cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)" ++ ++hostname="$(hostname -s)" ++full_hostname="$(hostname)" ++ ++for f in "$scriptdir"/*.template; do ++ cat "$f" | sed -e "s/:HOSTNAME:/${hostname}/" -e "s/:FULL_HOSTNAME:/${full_hostname}/" > "${f%%.template}" ++done +-- +2.17.2 + diff --git a/SOURCES/0321-daemon-Fix-double-closed-fd-race-condition.patch b/SOURCES/0321-daemon-Fix-double-closed-fd-race-condition.patch new file mode 100644 index 0000000..660f18b --- /dev/null +++ b/SOURCES/0321-daemon-Fix-double-closed-fd-race-condition.patch @@ -0,0 +1,64 @@ +From f74212ae0052b00828bcf7201ca3afa4dead4530 Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Thu, 20 Sep 2018 16:49:28 +0200 +Subject: [PATCH] daemon: Fix double closed fd race condition + +When a communication channel is set up between abrtd and abrt-server it uses +abrt_gio_channel_unix_new(). In that function there is a call g_io_channel_set_close_on_unref() [1]. +This function sets whether to close a file/socket/whatever associated with the channel when channel +recieves a final unref and is to be destroyed. + +Calling a close() on fd associated with the channel before/after g_io_channel_unref() +created a double close() race condition when ABRT was processing a lot of crashes at the same time. + +Thank you benzea for the patch. + +Related rhbz#1655241 + +1 - https://developer.gnome.org/glib/stable/glib-IO-Channels.html#g-io-channel-get-close-on-unref + +(cherry picked from github.com/abrt/abrt/commit/d965a43042b11eaed00ca49fcb060592082c398c) + +Signed-off-by: Martin Kutlak +--- + src/daemon/abrt-server.c | 1 - + src/daemon/abrtd.c | 4 +--- + 2 files changed, 1 insertion(+), 4 deletions(-) + +diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c +index 76186db76..e1dfc4af8 100644 +--- a/src/daemon/abrt-server.c ++++ b/src/daemon/abrt-server.c +@@ -294,7 +294,6 @@ static int run_post_create(const char *dirname) + g_main_loop_unref(context.main_loop); + g_io_channel_unref(channel_signal); + close(g_signal_pipe[1]); +- close(g_signal_pipe[0]); + + log_notice("Waiting finished"); + +diff --git a/src/daemon/abrtd.c b/src/daemon/abrtd.c +index fc4f01e22..0c63e7260 100644 +--- a/src/daemon/abrtd.c ++++ b/src/daemon/abrtd.c +@@ -109,7 +109,6 @@ static void stop_abrt_server(struct abrt_server_proc *proc) + + static void dispose_abrt_server(struct abrt_server_proc *proc) + { +- close(proc->fdout); + free(proc->dirname); + + if (proc->watch_id > 0) +@@ -226,8 +225,7 @@ static gboolean abrt_server_output_cb(GIOChannel *channel, GIOCondition conditio + GList *item = g_list_find_custom(s_processes, &fdout, (GCompareFunc)abrt_server_compare_fdout); + if (item == NULL) + { +- log_warning("Closing a pipe fd (%d) without a process assigned", fdout); +- close(fdout); ++ log_warning("Removing an input channel fd (%d) without a process assigned", fdout); + return FALSE; + } + +-- +2.17.2 + diff --git a/SOURCES/0322-hooks-ccpp-Honor-CreateCoreBacktrace.patch b/SOURCES/0322-hooks-ccpp-Honor-CreateCoreBacktrace.patch new file mode 100644 index 0000000..5063836 --- /dev/null +++ b/SOURCES/0322-hooks-ccpp-Honor-CreateCoreBacktrace.patch @@ -0,0 +1,39 @@ +From 9a5e0f22341e7461f5ec956291ff37dbc0d1f402 Mon Sep 17 00:00:00 2001 +From: Ernestas Kulik +Date: Fri, 15 Feb 2019 09:48:52 +0100 +Subject: [PATCH] hooks: ccpp: Honor CreateCoreBacktrace + +Starting with 4f1770991a3b5da7dadd4c4e9b1a48c7d96f6808, +the CreateCoreBacktrace setting is no longer honored, as the setting +variable is assigned a value from an unrelated setting due to a thinko. + +Fixes BZ#1677476 + +Signed-off-by: Ernestas Kulik +--- + src/hooks/abrt-hook-ccpp.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/hooks/abrt-hook-ccpp.c b/src/hooks/abrt-hook-ccpp.c +index ca4b61bf..60722ff8 100644 +--- a/src/hooks/abrt-hook-ccpp.c ++++ b/src/hooks/abrt-hook-ccpp.c +@@ -867,6 +867,7 @@ int main(int argc, char** argv) + value = get_map_string_item_or_NULL(settings, "SaveFullCore"); + setting_SaveFullCore = value ? string_to_bool(value) : true; + value = get_map_string_item_or_NULL(settings, "CreateCoreBacktrace"); ++ setting_CreateCoreBacktrace = value ? string_to_bool(value) : true; + value = get_map_string_item_or_NULL(settings, "IgnoredPaths"); + if (value) + setting_ignored_paths = parse_list(value); +@@ -890,7 +891,6 @@ int main(int argc, char** argv) + setting_MaxCoreFileSize = ul; + } + +- setting_CreateCoreBacktrace = value ? string_to_bool(value) : true; + value = get_map_string_item_or_NULL(settings, "VerboseLog"); + if (value) + g_verbose = xatoi_positive(value); +-- +2.21.0 + diff --git a/SOURCES/0323-plugins-Catch-unhandled-exception-in-a-a-g-machine-i.patch b/SOURCES/0323-plugins-Catch-unhandled-exception-in-a-a-g-machine-i.patch new file mode 100644 index 0000000..af04217 --- /dev/null +++ b/SOURCES/0323-plugins-Catch-unhandled-exception-in-a-a-g-machine-i.patch @@ -0,0 +1,45 @@ +From 323931ae023c46370e200483a7c37959309cd9a4 Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Tue, 21 May 2019 14:55:43 +0000 +Subject: [PATCH] plugins: Catch unhandled exception in a-a-g-machine-id + +dmidecode can fail due to permission denies or any different reasons that +causes dmidecode to return non-zero return code. + +Related: rhbz#1688368 + +cherry picked from commit 53100055cd504fa0d5d56eb9312ece66ba8de49e + +Signed-off-by: Martin Kutlak +--- + src/plugins/abrt-action-generate-machine-id | 7 +++++-- + 1 file changed, 5 insertions(+), 2 deletions(-) + +diff --git a/src/plugins/abrt-action-generate-machine-id b/src/plugins/abrt-action-generate-machine-id +index f843d773..fc79b192 100644 +--- a/src/plugins/abrt-action-generate-machine-id ++++ b/src/plugins/abrt-action-generate-machine-id +@@ -23,7 +23,7 @@ + import os + import sys + from argparse import ArgumentParser +-from subprocess import check_output ++from subprocess import check_output, CalledProcessError + import logging + + import hashlib +@@ -52,7 +52,10 @@ def generate_machine_id_dmidecode(): + + # Run dmidecode command + for k in keys: +- data = check_output(["dmidecode", "-s", k]).strip() ++ try: ++ data = check_output(["dmidecode", "-s", k]).strip() ++ except (OSError, CalledProcessError) as ex: ++ raise RuntimeError("Execution of dmidecode failed: {0}".format(str(ex))) + + # Update the hash as we find the fields we are looking for + machine_id.update(data) +-- +2.21.0 + diff --git a/SOURCES/0324-daemon-avoid-infinite-crash-loops.patch b/SOURCES/0324-daemon-avoid-infinite-crash-loops.patch new file mode 100644 index 0000000..ab5142e --- /dev/null +++ b/SOURCES/0324-daemon-avoid-infinite-crash-loops.patch @@ -0,0 +1,122 @@ +From d8ddfcf4e0f7342f362d587a2789d69773a20f1c Mon Sep 17 00:00:00 2001 +From: Jakub Filak +Date: Tue, 21 May 2019 14:56:47 +0000 +Subject: [PATCH] daemon: avoid infinite crash loops + +Export an environment variable as a mark for abrtd (abrt-server) to +identify processes directly involved in ABRT post-mortem processing. + +We must not run post-mortem EVENTs on problem directories caused by ABRT +itself because we could create an infinite loop. + +There are to ways how to handle such directories: + * in non-debug mode: log a short message and remove them without + other actions - we must not leave them in the dump location by + default because the dump location would be growing + + * in debug mode: log a more verbose message and leave them as they + are - we don need to have worries about the dump location growing + because someone intentionally enable the debug mode + +Related: rhbz#1246539 + +cherry-picked from https://github.com/abrt/abrt/commit/68e0efaa36f6d4aabfd8ecf71bf0c22adfc72b03 + +Related: rhbz#1688368 + +Signed-off-by: Martin Kutlak +--- + src/daemon/abrt-server.c | 54 ++++++++++++++++++++++++++++++++++++++-- + 1 file changed, 52 insertions(+), 2 deletions(-) + +diff --git a/src/daemon/abrt-server.c b/src/daemon/abrt-server.c +index e1dfc4af..60eb9b66 100644 +--- a/src/daemon/abrt-server.c ++++ b/src/daemon/abrt-server.c +@@ -28,6 +28,7 @@ + /* We exit after this many seconds */ + #define TIMEOUT 10 + ++#define ABRT_SERVER_EVENT_ENV "ABRT_SERVER_PID" + + /* + Unix socket in ABRT daemon for creating new dump directories. +@@ -206,10 +207,11 @@ static pid_t spawn_event_handler_child(const char *dump_dir_name, const char *ev + int flags = EXECFLG_INPUT_NUL | EXECFLG_OUTPUT | EXECFLG_QUIET | EXECFLG_ERR2OUT; + VERB1 flags &= ~EXECFLG_QUIET; + +- char *env_vec[2]; ++ char *env_vec[3]; + /* Intercept ASK_* messages in Client API -> don't wait for user response */ + env_vec[0] = xstrdup("REPORT_CLIENT_NONINTERACTIVE=1"); +- env_vec[1] = NULL; ++ env_vec[1] = xasprintf("%s=%d", ABRT_SERVER_EVENT_ENV, getpid()); ++ env_vec[2] = NULL; + + pid_t child = fork_execv_on_steroids(flags, args, pipeout, + env_vec, /*dir:*/ NULL, +@@ -219,6 +221,23 @@ static pid_t spawn_event_handler_child(const char *dump_dir_name, const char *ev + return child; + } + ++static int problem_dump_dir_was_provoked_by_abrt_event(struct dump_dir *dd, char **provoker) ++{ ++ char *env_var = NULL; ++ const int r = dd_get_env_variable(dd, ABRT_SERVER_EVENT_ENV, &env_var); ++ ++ /* Dump directory doesn't contain the environ file */ ++ if (r == -ENOENT) ++ return 0; ++ ++ if (provoker != NULL) ++ *provoker = env_var; ++ else ++ free(env_var); ++ ++ return env_var != NULL; ++} ++ + static gboolean emit_new_problem_signal(gpointer data) + { + struct waiting_context *context = (struct waiting_context *)data; +@@ -254,6 +273,37 @@ static int run_post_create(const char *dirname) + if (g_settings_privatereports) + { + struct dump_dir *dd = dd_opendir(dirname, DD_OPEN_READONLY); ++ ++ char *provoker = NULL; ++ const bool event_dir = dd && problem_dump_dir_was_provoked_by_abrt_event(dd, &provoker); ++ if (event_dir) ++ { ++ if (g_settings_debug_level == 0) ++ { ++ error_msg("Removing problem provoked by ABRT(pid:%s): '%s'", provoker, dirname); ++ dd_delete(dd); ++ } ++ else ++ { ++ char *dumpdir = NULL; ++ char *event = NULL; ++ char *reason = NULL; ++ char *cmdline = NULL; ++ ++ /* Ignore errors */ ++ dd_get_env_variable(dd, "DUMP_DIR", &dumpdir); ++ dd_get_env_variable(dd, "EVENT", &event); ++ reason = dd_load_text(dd, FILENAME_REASON); ++ cmdline = dd_load_text(dd, FILENAME_CMDLINE); ++ ++ error_msg("ABRT_SERVER_PID=%s;DUMP_DIR='%s';EVENT='%s';REASON='%s';CMDLINE='%s'", ++ provoker, dumpdir, event, reason, cmdline); ++ } ++ ++ free(provoker); ++ return 400; ++ } ++ + const bool complete = dd && problem_dump_dir_is_complete(dd); + dd_close(dd); + if (complete) +-- +2.21.0 + diff --git a/SOURCES/1000-Add-autogen.sh.patch b/SOURCES/1000-Add-autogen.sh.patch new file mode 100644 index 0000000..3b02841 --- /dev/null +++ b/SOURCES/1000-Add-autogen.sh.patch @@ -0,0 +1,90 @@ +From 608a4c07f4e3a0410f4cf9d5463ac5156bdc2745 Mon Sep 17 00:00:00 2001 +From: Martin Kutlak +Date: Thu, 3 Jan 2019 13:08:22 +0100 +Subject: [PATCH] Add autogen.sh + +Signed-off-by: Martin Kutlak +--- + autogen.sh | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 70 insertions(+) + create mode 100755 autogen.sh + +diff --git a/autogen.sh b/autogen.sh +new file mode 100755 +index 000000000..80a431b1f +--- /dev/null ++++ b/autogen.sh +@@ -0,0 +1,70 @@ ++#!/bin/sh ++ ++print_help() ++{ ++cat << EOH ++Prepares the source tree for configuration ++ ++Usage: ++ autogen.sh [sydeps [--install]] ++ ++Options: ++ ++ sysdeps prints out all dependencies ++ --install install all dependencies ('sudo yum install \$DEPS') ++ ++EOH ++} ++ ++build_depslist() ++{ ++ DEPS_LIST=`grep "^\(Build\)\?Requires:" *.spec.in | grep -v "%{name}" | tr -s " " | tr "," "\n" | cut -f2 -d " " | grep -v "^abrt" | sort -u | while read br; do if [ "%" = ${br:0:1} ]; then grep "%define $(echo $br | sed -e 's/%{\(.*\)}/\1/')" *.spec.in | tr -s " " | cut -f4 -d" "; else echo $br ;fi ; done | tr "\n" " "` ++} ++ ++case "$1" in ++ "--help"|"-h") ++ print_help ++ exit 0 ++ ;; ++ "sysdeps") ++ build_depslist ++ ++ if [ "$2" == "--install" ]; then ++ set -x verbose ++ sudo yum install $DEPS_LIST ++ set +x verbose ++ else ++ echo $DEPS_LIST ++ fi ++ exit 0 ++ ;; ++ *) ++ echo "Running gen-version" ++ ./gen-version ++ ++ mkdir -p m4 ++ echo "Creating m4/aclocal.m4 ..." ++ test -r m4/aclocal.m4 || touch m4/aclocal.m4 ++ ++ echo "Running autopoint" ++ autopoint --force || exit 1 ++ ++ echo "Running intltoolize..." ++ intltoolize --force --copy --automake || exit 1 ++ ++ echo "Running aclocal..." ++ aclocal || exit 1 ++ ++ echo "Running libtoolize..." ++ libtoolize || exit 1 ++ ++ echo "Running autoheader..." ++ autoheader || return 1 ++ ++ echo "Running autoconf..." ++ autoconf --force || exit 1 ++ ++ echo "Running automake..." ++ automake --add-missing --force --copy || exit 1 ++ ;; ++esac +-- +2.17.2 + diff --git a/SPECS/abrt.spec b/SPECS/abrt.spec new file mode 100644 index 0000000..00af832 --- /dev/null +++ b/SPECS/abrt.spec @@ -0,0 +1,3005 @@ +%{!?python_site: %global python_site %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(0)")} +# platform-dependent +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} + +# http://fedoraproject.org/wiki/Packaging:Guidelines#PIE +# http://fedoraproject.org/wiki/Hardened_Packages +%global _hardened_build 1 + +%if 0%{?fedora} >= 14 + %bcond_without systemd +%else + %bcond_with systemd +%endif + +# systemd wasn't set by the code above - so we're on old Fedora or we're not on Fedora at all +%if %{without systemd} + %if 0%{?rhel} >= 7 + %bcond_without systemd + %else + %bcond_with systemd + %endif +%endif + +%if 0%{?rhel} >= 6 +%define desktopvendor redhat +%else +%define desktopvendor fedora +%endif + +%define libreport_ver 2.1.11-46 +%define satyr_ver 0.13-10 + +Summary: Automatic bug detection and reporting tool +Name: abrt +Version: 2.1.11 +Release: 57%{?dist} +License: GPLv2+ +Group: Applications/System +URL: https://abrt.readthedocs.org/ +Source: %{name}-%{version}.tar.gz + +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 +Patch42: 0042-vmcore-start-the-service-after-kdump-service.patch +Patch43: 0043-configu-UI-use-glade-file-extension-instead-of-ui.patch +Patch44: 0044-localization-fixes.patch +Patch45: 0045-gdb-disable-loading-of-auto-loaded-files.patch +#Patch46: 0046-spec-add-dependency-on-abrt-python.patch +#Patch47: 0047-spec-add-missing-requires-for-python-api.patch +#Patch48: 0048-spec-remove-stray-space-from-description.patch +Patch49: 0049-koops-add-an-option-controlling-MCE-detection.patch +#Patch50: 0050-spec-hook-Kernel-oops-configuration-files.patch +Patch51: 0051-python-support-exceptions-without-traceback.patch +#Patch52: 0052-spec-don-t-use-native-unwinder-on-arm-arch.patch +Patch53: 0053-gettext-fix-the-initialization-in-python-scripts.patch +Patch54: 0054-oops-add-man-page.patch +#Patch55: 0055-spec-hook-abrt-oops.conf.5.patch +Patch56: 0056-cli-make-consistent-commands-in-abrt-cli.patch +#Patch57: 0057-spec-remove-dependency-on-crash-from-abrt-addon-vmco.patch +Patch58: 0058-cli-robustize-abrt-console-notification.sh.patch +Patch59: 0059-plugins-add-abrt-action-generate-machine-id.patch +#Patch60: 0060-spec-add-abrt-action-generate-machine-id.patch +Patch61: 0061-dbus-fixed-abrt-dbus-memory-leaks.patch +Patch62: 0062-applet-chown-each-notified-problem-before-reporting-.patch +Patch63: 0063-cli-add-option-remove-crash-dirs-after-reporting.patch +Patch64: 0064-applet-confirm-ignoring-of-notifications.patch +Patch65: 0065-cli-batch-reporting-in-abrt-cli.patch +Patch66: 0066-Translation-updates.patch +Patch67: 0067-koops-don-t-analyze-MCEs-like-standard-oopses.patch +Patch68: 0068-ureport-attach-contact-email-if-configured.patch +Patch69: 0069-console-notifications-use-return-instead-of-exit.patch +Patch70: 0070-applet-don-t-show-duphash-instead-of-component.patch +Patch71: 0071-console-notifications-skip-non-interactive-shells.patch +Patch72: 0072-applet-ensure-writable-dump-directory-before-reporti.patch +Patch73: 0073-a-a-g-machine-id-add-systemd-s-machine-id.patch +Patch74: 0074-a-a-g-machine-id-suppress-its-failures-in-abrt_event.patch +Patch75: 0075-Translation-updates.patch +Patch76: 0076-Revert-gdb-disable-loading-of-auto-loaded-files.patch +Patch77: 0077-gdb-make-gdb-aware-of-the-abrt-s-debuginfo-dir.patch +#Patch78: 0078-spec-update-the-required-gdb-version.patch +Patch79: 0079-cli-mark-the-suggestion-text-for-translation.patch +Patch80: 0080-auto-reporting-add-options-to-specify-auth-type.patch +#Patch81: 0081-testsuite-abrt-auto-reporting-uReport-authentication.patch +Patch82: 0082-translations-pull-the-newest-PO-files.patch +#Patch83: 0083-translations-move-from-transifex-to-zanata.patch +#Patch84: 0084-spec-add-missing-augeas-dependency.patch +#Patch85: 0085-zanata-add-gettext-mappings.patch +Patch86: 0086-translations-update-the-PO-files.patch +Patch87: 0087-abrt-auto-reporting-make-the-code-more-safer.patch +# git format-patch 2.1.11-19.el7 -N --start-number 88 --topo-order +Patch88: 0088-a-a-save-package-data-turn-off-reading-data-from-roo.patch +Patch89: 0089-ccpp-fix-symlink-race-conditions.patch +Patch90: 0090-ccpp-stop-reading-hs_error.log-from-tmp.patch +Patch91: 0091-ccpp-do-not-read-data-from-root-directories.patch +Patch92: 0092-ccpp-open-file-for-dump_fd_info-with-O_EXCL.patch +Patch93: 0093-ccpp-postpone-changing-ownership-of-new-dump-directo.patch +Patch94: 0094-ccpp-create-dump-directory-without-parents.patch +Patch95: 0095-ccpp-do-not-override-existing-files-by-compat-cores.patch +Patch96: 0096-ccpp-do-not-use-value-of-proc-PID-cwd-for-chdir.patch +Patch97: 0097-ccpp-harden-dealing-with-UID-GID.patch +Patch98: 0098-ccpp-check-for-overflow-in-abrt-coredump-path-creati.patch +Patch99: 0099-ccpp-emulate-selinux-for-creation-of-compat-cores.patch +Patch100: 0100-make-the-dump-directories-owned-by-root-by-default.patch +Patch101: 0101-configure-move-the-default-dump-location-to-var-spoo.patch +#Patch102: 0102-spec-create-vat-spool-abrt.patch +Patch103: 0103-ccpp-avoid-overriding-system-files-by-coredump.patch +#Patch104: 0104-spec-add-libselinux-devel-to-BRs.patch +Patch105: 0105-daemon-use-libreport-s-function-checking-file-name.patch +Patch106: 0106-lib-add-functions-validating-dump-dir.patch +Patch107: 0107-dbus-process-only-valid-sub-directories-of-the-dump-.patch +Patch108: 0108-dbus-avoid-race-conditions-in-tests-for-dum-dir-avai.patch +Patch109: 0109-dbus-report-invalid-element-names.patch +Patch110: 0110-a-a-i-d-t-a-cache-sanitize-arguments.patch +Patch111: 0111-a-a-i-d-t-a-cache-sanitize-umask.patch +Patch112: 0112-ccpp-revert-the-UID-GID-changes-if-user-core-fails.patch +Patch113: 0113-upload-validate-and-sanitize-uploaded-dump-directori.patch +Patch114: 0114-daemon-harden-against-race-conditions-in-DELETE.patch +Patch115: 0115-daemon-allow-only-root-user-to-trigger-the-post-crea.patch +Patch116: 0116-daemon-dbus-allow-only-root-to-create-CCpp-Koops-vmc.patch +# Temporary RHEL-7.1.z patch #1219464 +#Patch117: 0117-dumpers-avoid-AVC-when-creating-dump-directories.patch +# git format-patch 2.1.11-20.el7 -N --start-number 118 --topo-order +Patch118: 0118-dbus-validate-parameters-of-all-calls.patch +# git format-patch 2.1.11-21.el7 -N --start-number 119 --topo-order +Patch119: 0119-ccpp-do-not-unlink-failed-and-big-user-cores.patch +Patch120: 0120-a-a-i-d-t-a-cache-don-t-open-the-build_ids-file-as-a.patch +Patch121: 0121-a-a-i-d-t-a-cache-fix-command-line-argument-generati.patch +# git format-patch 2.1.11-22.el7 -N --start-number 122 --topo-order +Patch122: 0122-Do-not-use-bool-in-OPT_BOOL-macro-it-expects-int.patch +Patch123: 0123-abrt-auto-reporting-require-rhtsupport.conf-file-onl.patch +#Patch124: 0124-spec-add-AUTHENTICATED_AUTOREPORTING-conditional.patch +#Patch125: 0125-spec-abrt-requires-libreport-plugin-rhtsupport-on-rh.patch +Patch126: 0126-doc-fix-in-Makefile.patch +Patch127: 0127-sosreport-add-processor-information-to-sosreport.patch +Patch128: 0128-dbus-add-a-new-method-GetProblemData.patch +Patch129: 0129-libabrt-add-new-function-fetching-full-problem-data-.patch +Patch130: 0130-dbus-add-new-method-to-test-existence-of-an-element.patch +Patch131: 0131-libabrt-add-wrappers-TestElemeExists-and-GetInfo-for.patch +Patch132: 0132-cli-use-the-DBus-methods-for-getting-problem-informa.patch +Patch133: 0133-cli-status-don-t-return-0-if-there-is-a-problem-olde.patch +Patch134: 0134-cli-do-not-exit-with-segfault-if-dbus-fails.patch +Patch135: 0135-cli-chown-before-reporting.patch +Patch136: 0136-cli-exit-with-the-number-of-unreported-problems.patch +Patch137: 0137-cli-remove-dead-code.patch +Patch138: 0138-doc-update-abrt-cli-man-page.patch +Patch139: 0139-cli-enable-polkit-authentication-on-command-line.patch +Patch140: 0140-dbus-keep-the-polkit-authorization-for-all-clients.patch +Patch141: 0141-cli-get-list-of-possible-workflows-for-problem_data_.patch +Patch142: 0142-cli-warn-users-about-Private-Reports.patch +Patch143: 0143-cli-enable-authetication-for-all-commands.patch +Patch144: 0144-cli-do-not-notify-root-about-Private-Reports.patch +Patch145: 0145-cli-remove-useless-code-from-print_crash.patch +Patch146: 0146-cli-use-internal-command-impl-in-the-command-process.patch +# git format-patch 2.1.11-23.el7 -N --start-number 147 --topo-order +Patch147: 0147-abrt-hook-ccpp-minor-refactoring.patch +Patch148: 0148-Create-core-backtrace-in-unwind-hook.patch +Patch149: 0149-abrt-install-ccpp-hook-check-configuration.patch +#Patch150: 0150-spec-enable-dump-time-unwind-by-default.patch +Patch151: 0151-disable-CreateCoreBacktrace-by-default.patch +# git format-patch 2.1.11-24.el7 -N --start-number 152 --topo-order +Patch152: 0152-abrt-hook-ccpp-save-core_backtrace-from-hook.patch +# git format-patch 2.1.11-25.el7 -N --start-number 153 --topo-order +Patch153: 0153-abrt-hook-ccpp-reset-ownership-after-saving-core-bac.patch +# git format-patch 2.1.11-26.el7 -N --start-number 154 --topo-order +Patch154: 0154-abrt-merge-pstoreoops-merge-files-in-descending-orde.patch +Patch155: 0155-abrt-auto-reporting-fix-related-to-conditional-compi.patch +Patch156: 0156-Update-translations.patch +# git format-patch 2.1.11-27.el7 -N --start-number 157 --topo-order +Patch157: 0157-Fix-missing-newline-in-po-fr.po.patch +Patch158: 0158-doc-fix-related-to-conditional-compilation-of-man-pa.patch +#Patch159: 0159-spec-add-dbus-dependency-for-abrt-cli-and-abrt-pytho.patch +# git format-patch 2.1.11-28.el7 -N --start-number 160 --topo-order +Patch160: 0160-dbus-api-unify-reporting-of-errors.patch +Patch161: 0161-cli-fix-testing-of-DBus-API-return-codes.patch +Patch162: 0162-ccpp-fix-comment-related-to-MakeCompatCore-option-in.patch +Patch163: 0163-ccpp-use-global-TID.patch +# git format-patch 2.1.11-29.el7 -N --start-number 164 --topo-order +Patch164: 0164-Warn-against-disabling-private-reports-in-abrt.conf.patch +# git format-patch 2.1.11-30.el7 -N --start-number 165 --topo-order +Patch165: 0165-Only-analyze-vulnerabilities-when-coredump-present.patch +# git format-patch 2.1.11-31.el7 -N --start-number 166 --topo-order +Patch166: 0166-UUID-from-core-backtrace-if-coredump-is-missing.patch +# git format-patch 2.1.11-32.el7 -N --start-number 167 --topo-order +Patch167: 0167-ccpp-correct-comments-mentioning-TID.patch +Patch168: 0168-ccpp-Use-Global-PID.patch +Patch169: 0169-doc-add-example-into-the-abrt-auto-reporting-man-pag.patch +Patch170: 0170-abrt-auto-reporting-add-example-into-the-help.patch +# git format-patch 2.1.11-33.el7 -N --start-number 171 --topo-order +#Patch171: 0171-runtests-stick-to-new-BZ-password-rules.patch +#Patch172: 0172-testsuite-use-rpm-to-remove-packages.patch +#Patch173: 0173-testsuite-more-verbose-fail-in-get_crash_path.patch +#Patch174: 0174-testsuite-cli-sanity-comment-not-reportable-phase-ou.patch +#Patch175: 0175-testsuite-new-test-dumpdir_completedness.patch +#Patch176: 0176-testsuite-upload-handling-fix-irrelevant-AVCs.patch +Patch177: 0177-sos-use-services-instead-of-startup.patch +# git format-patch 2.1.11-34.el7 -N --start-number 178 --topo-order +Patch178: 0178-a-a-i-d-to-abrt-cache-make-own-random-temporary-dire.patch +Patch179: 0179-conf-introduce-DebugLevel.patch +Patch180: 0180-ccpp-ignore-crashes-of-ABRT-binaries-if-DebugLevel-0.patch +Patch181: 0181-ccpp-save-abrt-core-files-only-to-new-files.patch +Patch182: 0182-lib-add-convenient-wrappers-for-ensuring-writable-di.patch +Patch183: 0183-abrtd-switch-owner-of-the-dump-location-to-root.patch +#Patch184: 0184-spec-switch-owner-of-the-dump-location-to-root.patch +#Patch185: 0185-testsuite-ccpp-plugin-debug.patch +#Patch186: 0186-testsuite-a-a-i-debuginfo-the-set-uid-wrapper-uses-s.patch +#Patch187: 0187-testsuite-check-file-system-attributes-of-the-dump-l.patch +# git format-patch 2.1.11-35.el7 -N --start-number 188 --topo-order +#Patch188: 0188-testsuite-port-abrtd-directories-to-journald.patch +#Patch189: 0189-testsuite-ccpp-plugin-debug-fix-logs-bundling.patch +#Patch190: 0190-testsuite-ccpp-plugin-debug-normalize-ABRT_BINARY_CO.patch +#Patch191: 0191-testsuite-search-in-journal-logs-for-the-current-boo.patch +#Patch192: 0192-testsuite-add-test-for-reporter-upload-SSH-keys.patch +#Patch193: 0193-testsuite-add-test-for-reporter-upload-passwd-asking.patch +#Patch194: 0194-testsuite-test-abrt-hook-ccpp-selinux-awareness.patch +#Patch195: 0195-testsuite-abrtd-directories-normalize-ABRT_CONF_DUMP.patch +#Patch196: 0196-testsuite-rhts-test-fix-typo-and-URL-change-in-respo.patch +#Patch197: 0197-testsuite-event-configuration-add-missing-xml-files.patch +#Patch198: 0198-translations-update-zanata-configuration.patch +#Patch199: 0199-testsuite-add-ureport-attachments-test.patch +#Patch200: 0200-testsuite-reporter-upload-appending-results-to-repor.patch +#Patch201: 0201-testsuite-remove-ureport-attachments-from-aux.patch +#Patch202: 0202-testsuite-add-concurrent-processing-test-for-abrtd.patch +#Patch203: 0203-testsuite-reporter-upload-ssh-keys-fixes-to-work-on-.patch +#Patch204: 0204-testsuite-Bugzilla-private-bugs.patch +#Patch205: 0205-testsuite-reply-with-invalid-data-for-unexpected-que.patch +Patch206: 0206-augeas-augtool-save-files-etc-abrt-plugins-oops.conf.patch +Patch207: 0207-vmcore-catch-IOErrors-and-OSErrors.patch +#Patch208: 0208-testsuite-add-a-per-test-timeout-for-15m.patch +Patch209: 0209-lib-hooklib-make-signal_is_fatal-public.patch +Patch210: 0210-ccpp-add-IgnoredPath-option.patch +#Patch211: 0211-testsuite-add-test-for-abrt-hook-ccpp-IgnoredPath-op.patch +#Patch212: 0212-testsuite-add-test-for-AllowedUsers-and-AllowedGroup.patch +Patch213: 0213-ccpp-add-AllowedUsers-and-AllowedGroups-feature.patch +Patch214: 0214-Save-Vendor-and-GPG-Fingerprint.patch +#Patch215: 0215-testsuite-add-tests-for-pgk_vendor-and-pkg_fingerpri.patch +#Patch216: 0216-testsuite-add-rhtsupport-discourage-tests.patch +#Patch217: 0217-testsuite-reporter-rhtsupport-should-attach-whole-du.patch +#Patch218: 0218-testsuite-use-problem-report-API-to-create-descripti.patch +#Patch219: 0219-testsuite-test-for-reporter-mailx-email-formatting.patch +#Patch220: 0220-testsuite-mailx-does-not-create-dead.letter-in-failu.patch +Patch221: 0221-lib-prevent-from-creating-non-root-sub-dirs-in-dump-.patch +# git format-patch 2.1.11-36.el7 -N --start-number 222 --topo-order +Patch222: 0222-ccpp-exit-with-error-if-cannot-get-executable.patch +# git format-patch 2.1.11-37.el7 -N --start-number 223 --topo-order +Patch223: 0223-ccpp-add-xfunc_die-if-cannot-get-executable.patch +# git format-patch 2.1.11-38.el7 -N --start-number 224 --topo-order +#Patch224: 0224-testsuite-augeas-set-DropNotReportableOopses-test.patch +Patch225: 0225-vmcore-generate-reason-file-in-all-cases.patch +#Patch226: 0226-testsuite-fix-the-kernel-vmcore-harvest-test.patch +Patch227: 0227-console-notifications-add-timeout.patch +Patch228: 0228-Fix-memory-leaks-in-abrt-dbus.patch +Patch229: 0229-python-fix-check-for-absolute-path.patch +#Patch230: 0230-testsuite-add-test-for-RequireAbsolutePath-option.patch +# git format-patch 2.1.11-39.el7 -N --start-number 231 --topo-order +#Patch231: 0231-testsuite-add-test-which-tests-log-messages-of-ingor.patch +Patch232: 0232-ccpp-unify-log-message-of-ignored-crashes.patch +Patch233: 0233-abrt-hook-ccpp-save-get_fsuid-return-values-in-int-v.patch +# git format-patch 2.1.11-40.el7 -N --start-number 234 --topo-order +#Patch234: 0234-testsuite-fix-ccpp-plugin-debug-test.patch +#Patch235: 0235-testsuite-mailx-reporting-hardcode-locale-and-timezo.patch +#Patch236: 0236-testsuite-rhts-test-relax-a-grep-pattern-a-bit.patch +#Patch237: 0237-testsuite-mailx-reporting-force-creating-symlink.patch +Patch238: 0238-vmcore-fix-finding-partitions-by-UUID-and-LABEL.patch +#Patch239: 0239-spec-add-utils-linux-to-vmcore-s-Require.patch +Patch240: 0240-vmcore-use-findmnt-to-get-mountpoint.patch +# git format-patch 2.1.11-41.el7 -N --start-number 241 --topo-order +#Patch241: 0241-testsuite-do-not-exit-mailx-notify-event-with-1.patch +#Patch242: 0242-testsuite-add-prepare-to-cli-authentication-test.patch +#Patch243: 0243-testsuite-libreport-plugin-mantisbt-is-not-installed.patch +#Patch244: 0244-testsuite-use-crashing-binary-from-signed-package.patch +Patch245: 0245-daemon-trigger-dump-location-cleanup-after-detection.patch +Patch246: 0246-handle-event-stop-creating-post-create-lock.patch +# git format-patch 2.1.11-42.el7 -N --start-number 247 --topo-order +#Patch247: 0247-testsuite-check-fingerprint-only-if-a-kernel-is-sign.patch +#Patch248: 0248-testsuite-fix-reporter-upload-ssh-keys-test.patch +#Patch249: 0249-testsuite-ccpp-plugin-hook-ignoring-fix-typo.patch +Patch250: 0250-lib-check_recent_crash_file-do-not-produce-error_msg.patch +#Patch251: 0251-testsuite-do-not-die-if-crash-is-not-generated.patch +# git format-patch 2.1.11-43.el7 -N --start-number 252 --topo-order +#Patch252: 0252-testsuite-reporter-rhtsupport-no-longer-uses-checks-.patch +#Patch253: 0253-testsuite-puts-NULL-didn-t-cause-segfault-on-s390x.patch +Patch254: 0254-daemon-send-base-names-from-abrt-server-to-abrtd.patch +# git format-patch 2.1.11-44.el7 -N --start-number 255 --topo-order +#Patch255: 0255-testsuite-make-dumpdir_completedness-test-runnable-o.patch +Patch256: 0256-Translation-updates.patch +# git format-patch 2.1.11-45.el7 -N --start-number 257 --topo-order +#Patch257: 0257-testsuite-use-exported-gpg-keys-in-dumpdir_completed.patch +Patch258: 0258-lib-don-t-expect-kernel-s-version-2.6.-or-3.patch +Patch259: 0259-koops-do-not-assume-version-has-3-levels.patch +Patch260: 0260-xorg-rewrite-skip_pfx-function-to-work-with-journal-.patch +#Patch261: 0261-testsuite-add-tescase-for-a-dump-xorg.patch +Patch262: 0262-lib-stop-printing-out-a-debug-message-adding.patch +Patch263: 0263-cli-don-t-start-reporting-of-not-reportable-problems.patch +Patch264: 0264-cli-introduce-unsafe-reporting-for-not-reporable-pro.patch +Patch265: 0265-cli-configure-libreport-to-ignore-not-reportable.patch +Patch266: 0266-cli-print-out-the-not-reportable-reason.patch +#Patch267: 0267-testsuite-add-cli-process-test-case.patch +Patch268: 0268-vmcore-remove-not-implemented-option-AttemptHardlink.patch +# git format-patch 2.1.11-46.el7 -N --start-number 269 --topo-order +Patch269: 0269-ccpp-add-h-parameter-into-abrt-hook-ccpp.patch +#Patch270: 0270-testsuite-add-test-for-core-template-substitution.patch +# git format-patch 2.1.11-47.el7 -N --start-number 271 --topo-order +Patch271: 0271-Translation-updates.patch +# git format-patch 2.1.11-48.el7 -N --start-number 272 --topo-order +#Patch272: 0272-spec-allow-deprecated-declarations-warning.patch +#Patch273: 0273-spec-add-missing-dependecy-on-dbus-glib-devel.patch +Patch274: 0274-python-provide-more-information-about-exception.patch +#Patch275: 0275-testsuite-provide-more-information-about-exception.patch +Patch276: 0276-Translation-updates.patch +Patch277: 0277-Fix-pt_BR.po-translation.patch +Patch278: 0278-koops-add-suspicious-strings-blacklist.patch +#Patch279: 0279-testsuite-suspicious-strings-blacklist-test.patch +Patch280: 0280-koops-Improve-fatal-MCE-check-when-dumping-backtrace.patch +#Patch281: 0281-testsuite-add-test-for-dumping-kernel-panic-oom-oops.patch +Patch282: 0282-Add-oops-processing-for-kernel-panics-caused-by-hung.patch +Patch283: 0283-vmcore-remove-original-vmcore-file-in-the-last-step.patch +Patch284: 0284-vmcore-use-libreport-dd-API-in-the-harvestor.patch +#Patch285: 0285-testsuite-add-test-case-for-copyvmcore.patch +Patch286: 0286-koops-Improve-not-reportable-for-oopses-with-taint-f.patch +Patch287: 0287-a-a-ureport-add-check-if-crash-is-from-packaged-exec.patch +#Patch288: 0288-testsuite-test-not-sending-ureport-from-unpackaged-e.patch +#Patch289: 289-spec-update-URL-and-Source-to-recent-values.patch +#Patch290: 0290-Revert-testsuite-reporter-rhtsupport-no-longer-uses-.patch +#Patch291: 0291-testsuite-reporter-rhtsupport-parameter-t-extend-fun.patch +# git format-patch 2.1.11-49.el7 -N --start-number 292 --topo-order +#Patch292: 0292-testsuite-switch-order-of-g_crash_path-and-wait_f_h.patch +#Patch293: 0293-testsuite-wait-for-hooks-at-least-1-second.patch +#Patch294: 0294-testsuite-tell-the-runner-about-problem-sub-director.patch +#Patch295: 0295-CI-make-debugging-easier-with-more-log-messages.patch +#Patch296: 0296-testsuite-rhts-test-remove-trailing-characters.patch +#Patch297: 0297-testsuite-restart-abrt-ccpp-in-abrtd-directories.patch +#Patch298: 0298-testsuite-Install-missing-rpm-sign-package.patch +#Patch299: 0299-testsuite-Show-warning-instead-of-failing-test.patch +#Patch300: 0300-testsuite-check-for-correct-group-and-permissions.patch +#Patch301: 0301-testsuite-disable-failing-tests.patch +#Patch302: 0302-testsuite-extend-timeout-to-10-minutes.patch +#Patch303: 0303-testsuite-Correct-the-name-of-configuration-file.patch +#Patch304: 0304-tests-cli-sanity-re-enable-report-non-reportable-pha.patch +#Patch305: 0305-testsuite-fix-backtrace-verification-on-power.patch +Patch306: 0306-a-harvest-vmcore-fix-regresion.patch +# git format-patch 2.1.11-50.el7 -N --start-number 307 --topo-order +#Patch307: 0307-spec-use-dmidecode-instead-of-python-dmidecode.patch +Patch308: 0308-plugins-a-a-g-machine-id-use-dmidecode-command.patch +#Patch309: 0309-spec-turn-on-enable-native-unwinder-aarch64.patch +Patch310: 0310-a-a-s-p-data-fix-segfault-if-GPGKeysDir-isn-t-config.patch +# git format-patch 2.1.11-51.el7 -N --start-number 311 --topo-order +Patch311: 0311-plugin-general-from-sos-has-been-split-into-two-new-.patch +# git format-patch 2.1.11-52.el7 -N --start-number 312 --topo-order +Patch312: 0312-cli-load-config-file-at-the-beginning.patch +Patch313: 0313-ccpp-fast-dumping-and-abrt-core-limit.patch +Patch314: 0314-conf-increase-MaxCrashReportsSize-to-5GiB.patch +#Patch315: 0315-testsuite-abrt-core-dump-file-size-limits.patch +#Patch316: 0316-testsuite-the-prepare-fn-resets-socket-problem-timeo.patch +Patch317: 0317-Resolves-bz1647841.patch +Patch318: 0318-testsuite-move-examples-to-tests.patch +Patch319: 0319-koops-Filter-kernel-oopses-based-on-logged-hostname.patch +#Patch320: 0320-spec-add-hostname-BR-for-tests.patch +Patch321: 0321-daemon-Fix-double-closed-fd-race-condition.patch +Patch322: 0322-hooks-ccpp-Honor-CreateCoreBacktrace.patch +# git format-patch 2.1.11-53.el7 -N --start-number 323 --topo-order +Patch323: 0323-plugins-Catch-unhandled-exception-in-a-a-g-machine-i.patch +Patch324: 0324-daemon-avoid-infinite-crash-loops.patch +# git format-patch 2.1.11-56.el7 -N --start-number=325 --topo-order + + +# autogen.sh is need to regenerate all the Makefile files +Patch1000: 1000-Add-autogen.sh.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: hostname +BuildRequires: gtk3-devel +BuildRequires: rpm-devel >= 4.6 +BuildRequires: desktop-file-utils +BuildRequires: libnotify-devel +BuildRequires: dbus-glib-devel +#why? BuildRequires: file-devel +BuildRequires: python-devel +BuildRequires: gettext +BuildRequires: libxml2-devel +BuildRequires: intltool +BuildRequires: libtool +BuildRequires: nss-devel +BuildRequires: asciidoc +BuildRequires: doxygen +BuildRequires: xmlto +BuildRequires: libreport-devel >= %{libreport_ver} +BuildRequires: satyr-devel >= %{satyr_ver} +BuildRequires: systemd-python +BuildRequires: augeas +BuildRequires: libselinux-devel +Requires: abrt-python = %{version}-%{release} +Requires: libreport >= %{libreport_ver} +Requires: satyr >= %{satyr_ver} +Requires: sos >= 3.6 + +%if %{with systemd} +Requires: systemd-units +%endif +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires: %{name}-libs = %{version}-%{release} +Requires: %{name}-python = %{version}-%{release} +Requires(pre): shadow-utils +Requires: python-augeas +Requires: python-dbus +%ifarch aarch64 i686 x86_64 +Requires: dmidecode +%endif +Requires: libreport-plugin-ureport >= %{libreport_ver} +%if 0%{?rhel} +Requires: libreport-plugin-rhtsupport +%endif + +# 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 +to create a bug report with all information needed by maintainer to fix it. +It uses plugin system to extend its functionality. + +%package libs +Summary: Libraries for %{name} +Group: System Environment/Libraries + +%description libs +Libraries for %{name}. + +%package devel +Summary: Development libraries for %{name} +Group: Development/Libraries +Requires: abrt-libs = %{version}-%{release} + +%description devel +Development libraries and headers for %{name}. + +%package gui-libs +Summary: Libraries for %{name}-gui +Group: System Environment/Libraries + +%description gui-libs +Libraries for %{name}-gui. + +%package gui-devel +Summary: Development libraries for %{name}-gui +Group: Development/Libraries +Requires: abrt-gui-libs = %{version}-%{release} + +%description gui-devel +Development libraries and headers for %{name}-gui. + +%package gui +Summary: %{name}'s gui +Group: User Interface/Desktops +Requires: %{name} = %{version}-%{release} +Requires: %{name}-dbus = %{version}-%{release} +Requires: gnome-abrt +BuildRequires: libreport-gtk-devel >= %{libreport_ver} +BuildRequires: libICE-devel +BuildRequires: libSM-devel +# we used to have abrt-applet, now abrt-gui includes it: +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. + +%package addon-ccpp +Summary: %{name}'s C/C++ addon +Group: System Environment/Libraries +Requires: cpio +Requires: gdb >= 7.6.1-63 +Requires: elfutils +%if 0%{!?rhel:1} +# abrt-action-perform-ccpp-analysis wants to run analyze_RetraceServer: +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++ +analyzer plugin. + +%package addon-upload-watch +Summary: %{name}'s upload addon +Group: System Environment/Libraries +Requires: %{name} = %{version}-%{release} +Requires: abrt-libs = %{version}-%{release} + +%description addon-upload-watch +This package contains hook for uploaded problems. + +%package retrace-client +Summary: %{name}'s retrace client +Group: System Environment/Libraries +Requires: %{name} = %{version}-%{release} +Requires: xz +Requires: tar + +%description retrace-client +This package contains the client application for Retrace server +which is able to analyze C/C++ crashes remotely. + +%package addon-kerneloops +Summary: %{name}'s kerneloops addon +Group: System Environment/Libraries +Requires: curl +Requires: %{name} = %{version}-%{release} +Requires: abrt-libs = %{version}-%{release} +%if 0%{!?rhel:1} +Requires: libreport-plugin-kerneloops >= %{libreport_ver} +%endif + +%description addon-kerneloops +This package contains plugin for collecting kernel crash information from +system log. + +%package addon-xorg +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 +log. + +%package addon-vmcore +Summary: %{name}'s vmcore addon +Group: System Environment/Libraries +Requires: %{name} = %{version}-%{release} +Requires: abrt-addon-kerneloops +Requires: kexec-tools +Requires: abrt-python = %{version}-%{release} +Requires: python-augeas +Requires: util-linux + +%description addon-vmcore +This package contains plugin for collecting kernel crash information from +vmcore files. + +%package addon-pstoreoops +Summary: %{name}'s pstore oops addon +Group: System Environment/Libraries +Requires: %{name} = %{version}-%{release} +Requires: abrt-libs = %{version}-%{release} +Requires: abrt-addon-kerneloops +Obsoletes: abrt-addon-uefioops < 2.1.7 + +%description addon-pstoreoops +This package contains plugin for collecting kernel oopses from pstore storage. + +%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 +uncaught exception in python programs. + +%package tui +Summary: %{name}'s command line interface +Group: User Interface/Desktops +Requires: %{name} = %{version}-%{release} +Requires: libreport-cli >= %{libreport_ver} +Requires: abrt-libs = %{version}-%{release} +Requires: %{name}-dbus = %{version}-%{release} + +%description tui +This package contains a simple command line client for processing abrt reports +in command line environment. + +%package cli +Summary: Virtual package to make easy default installation on non-graphical environments +Group: Applications/System +Requires: %{name} = %{version}-%{release} +Requires: abrt-tui +Requires: abrt-addon-kerneloops +Requires: abrt-addon-pstoreoops +Requires: abrt-addon-vmcore +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: libreport-plugin-bugzilla >= %{libreport_ver} +Requires: libreport-plugin-logger >= %{libreport_ver} +Requires: libreport-plugin-ureport >= %{libreport_ver} +%endif + +%description cli +Virtual package to install all necessary packages for usage from command line +environment. + +%package desktop +Summary: Virtual package to make easy default installation on desktop environments +Group: User Interface/Desktops +# This package gets installed when anything requests bug-buddy - +# happens when users upgrade Fn to Fn+1; +# or if user just wants "typical desktop installation". +# Installing abrt-desktop should result in the abrt which works without +# any tweaking in abrt.conf (IOW: all plugins mentioned there must be installed) +Requires: %{name} = %{version}-%{release} +Requires: abrt-addon-kerneloops +Requires: abrt-addon-pstoreoops +Requires: abrt-addon-vmcore +Requires: abrt-addon-ccpp +Requires: abrt-addon-python +Requires: abrt-addon-xorg +# Default config of addon-ccpp requires gdb +Requires: gdb >= 7.6.1-63 +Requires: elfutils +Requires: abrt-gui +Requires: gnome-abrt +%if 0%{?rhel} +Requires: libreport-rhel >= %{libreport_ver} +Requires: libreport-plugin-rhtsupport >= %{libreport_ver} +%else +Requires: abrt-retrace-client +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 = 2.28.0 + +%description desktop +Virtual package to install all necessary packages for usage from desktop +environment. + +%package dbus +Summary: ABRT DBus service +Group: Applications/System +Requires: %{name} = %{version}-%{release} +BuildRequires: polkit-devel +Requires: abrt-libs = %{version}-%{release} + +%description dbus +ABRT DBus service which provides org.freedesktop.problems API on dbus and +uses PolicyKit to authorize to access the problem data. + + +%package python +Summary: ABRT Python API +Group: System Environment/Libraries +Requires: %{name} = %{version}-%{release} +Requires: %{name}-libs = %{version}-%{release} +Requires: %{name}-dbus = %{version}-%{release} +Requires: pygobject2 +Requires: dbus-python +Requires: libreport-python +BuildRequires: python-nose +BuildRequires: python-sphinx + +%description python +High-level API for querying, creating and manipulating +problems handled by ABRT in Python. + +%package python-doc +Summary: ABRT Python API Documentation +Group: Documentation +BuildArch: noarch +BuildRequires: python2-devel +Requires: %{name} = %{version}-%{release} +Requires: %{name}-python = %{version}-%{release} + +%description python-doc +Examples and documentation for ABRT Python API. + +%package console-notification +Summary: ABRT console notification script +Group: Applications/System +Requires: %{name} = %{version}-%{release} +Requires: %{name}-cli = %{version}-%{release} + +%description console-notification +A small script which prints a count of detected problems when someone logs in +to the shell + +%prep +# 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 +./autogen.sh +autoconf +# -Wno-error=deprecated-declarations because there are some warning about +# deprecated gtk3 functions because of gtk3 rebase +CFLAGS="%{optflags} -Werror -Wno-error=deprecated-declarations" %configure --enable-doxygen-docs \ + --disable-silent-rules \ + --without-bodhi \ +%ifnarch %{arm} + --enable-native-unwinder \ +%endif + --enable-dump-time-unwind \ + --enable-suggest-autoreporting \ + --enable-authenticated-autoreporting +make %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} \ + dbusabrtdocdir=%{_defaultdocdir}/%{name}-dbus-%{version}/html/ \ + example_pythondir=%{_defaultdocdir}/%{name}-python-%{version}/examples + +%find_lang %{name} + +# remove all .la and .a files +find $RPM_BUILD_ROOT -name '*.la' -or -name '*.a' | xargs rm -f +mkdir -p ${RPM_BUILD_ROOT}/%{_initrddir} +mkdir -p $RPM_BUILD_ROOT/var/cache/abrt-di +mkdir -p $RPM_BUILD_ROOT/var/run/abrt +mkdir -p $RPM_BUILD_ROOT/var/spool/abrt +mkdir -p $RPM_BUILD_ROOT/var/spool/abrt-upload + +desktop-file-install \ + --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ + src/applet/abrt-applet.desktop + +ln -sf %{_datadir}/applications/abrt-applet.desktop ${RPM_BUILD_ROOT}%{_sysconfdir}/xdg/autostart/ + +# After everything is installed, remove info dir +rm -f %{buildroot}%{_infodir}/dir + +%clean +rm -rf $RPM_BUILD_ROOT + +%check +make check || { + # find and print the logs of failed test + # do not cat tests/testsuite.log because it contains a lot of bloat + find tests/testsuite.dir -name "testsuite.log" -print -exec cat '{}' \; + exit 1 +} + +%pre +#uidgid pair 173:173 reserved in setup rhbz#670231 +%define abrt_gid_uid 173 +getent group abrt >/dev/null || groupadd -f -g %{abrt_gid_uid} --system abrt +getent passwd abrt >/dev/null || useradd --system -g abrt -u %{abrt_gid_uid} -d /etc/abrt -s /sbin/nologin abrt + +OLD_LOCATION="/var/tmp/abrt" +# $1 == 1 if install; 2 if upgrade +if [ "$1" -eq 2 ] +then + test -d "$OLD_LOCATION" || exit 0 + + # remove old dump directories + for DD in `find "$OLD_LOCATION" -maxdepth 1 -type d` + do + # in order to not remove user stuff remove only directories containing 'time' file + if [ -f "$DD/time" ]; then + rm -rf $DD + fi + done +fi + +# doesn't mather if it fails or not for any reason +if which restorecon 1>/dev/null 2>&1; then + restorecon -R "$NEW_LOCATION" 1>/dev/null 2>&1 || true +fi +exit 0 + +%post +# $1 == 1 if install; 2 if upgrade +%systemd_post abrtd.service + +%post addon-ccpp +# this is required for transition from 1.1.x to 2.x +# because /cache/abrt-di/* was created under root with root:root +# so 2.x fails when it tries to extract debuginfo there.. +chown -R abrt:abrt %{_localstatedir}/cache/abrt-di +%systemd_post abrt-ccpp.service + +%post addon-kerneloops +%systemd_post abrt-oops.service + +%post addon-xorg +%systemd_post abrt-xorg.service + +%post addon-vmcore +%systemd_post abrt-vmcore.service + +%post addon-pstoreoops +%systemd_post abrt-pstoreoops.service + +%post addon-upload-watch +%systemd_post abrt-upload-watch.service + +%preun +%systemd_preun abrtd.service + +%preun addon-ccpp +%systemd_preun abrt-ccpp.service + +%preun addon-kerneloops +%systemd_preun abrt-oops.service + +%preun addon-xorg +%systemd_preun abrt-xorg.service + +%preun addon-vmcore +%systemd_preun abrt-vmcore.service + +%preun addon-pstoreoops +%systemd_preun abrt-pstoreoops.service + +%preun addon-upload-watch +%systemd_preun abrt-upload-watch.service + +%postun +%systemd_postun_with_restart abrtd.service + +%postun addon-ccpp +%systemd_postun_with_restart abrt-ccpp.service + +%postun addon-kerneloops +%systemd_postun_with_restart abrt-oops.service + +%postun addon-xorg +%systemd_postun_with_restart abrt-xorg.service + +%postun addon-vmcore +%systemd_postun_with_restart abrt-vmcore.service + +%postun addon-pstoreoops +%systemd_postun_with_restart abrt-pstoreoops.service + +%postun addon-upload-watch +%systemd_postun_with_restart abrt-upload-watch.service + +%post gui +# update icon cache +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : + +%post libs -p /sbin/ldconfig + +%postun libs -p /sbin/ldconfig + +%post gui-libs -p /sbin/ldconfig + +%postun gui-libs -p /sbin/ldconfig + +%postun gui +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +service abrtd condrestart >/dev/null 2>&1 || : + +%posttrans addon-ccpp +service abrt-ccpp condrestart >/dev/null 2>&1 || : + +%posttrans addon-kerneloops +service abrt-oops condrestart >/dev/null 2>&1 || : + +%posttrans addon-xorg +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 || : + +%posttrans addon-upload-watch +service abrt-upload-watch condrestart >/dev/null 2>&1 || : + +%posttrans gui +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + +%files -f %{name}.lang +%defattr(-,root,root,-) +%doc README COPYING +%if %{with systemd} +%{_unitdir}/abrtd.service +%{_tmpfilesdir}/abrt.conf +%else +%{_initrddir}/abrtd +%endif +%{_sbindir}/abrtd +%{_sbindir}/abrt-server +%{_sbindir}/abrt-auto-reporting +%{_libexecdir}/abrt-handle-event +%{_libexecdir}/abrt-action-ureport +%{_libexecdir}/abrt-action-generate-machine-id +%{_bindir}/abrt-handle-upload +%{_bindir}/abrt-action-notify +%{_bindir}/abrt-action-save-package-data +%{_bindir}/abrt-watch-log +%{_bindir}/abrt-action-analyze-xorg +%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(0751, root, abrt) %{_localstatedir}/spool/%{name} +%dir %attr(0700, abrt, abrt) %{_localstatedir}/spool/%{name}-upload +# abrtd runs as root +%dir %attr(0755, root, root) %{_localstatedir}/run/%{name} +%ghost %attr(0666, -, -) %{_localstatedir}/run/%{name}/abrt.socket +%ghost %attr(0644, -, -) %{_localstatedir}/run/%{name}/abrtd.pid + +%dir %{_sysconfdir}/%{name} +%dir %{_sysconfdir}/%{name}/plugins +%dir %{_datadir}/%{name} +%dir %{_datadir}/%{name}/conf.d +%dir %{_datadir}/%{name}/conf.d/plugins +%{_mandir}/man1/abrt-handle-upload.1.gz +%{_mandir}/man1/abrt-server.1.gz +%{_mandir}/man1/abrt-action-save-package-data.1.gz +%{_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,-) +# 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 +%{_includedir}/abrt/problem_api.h +%{_libdir}/libabrt.so +%{_libdir}/pkgconfig/abrt.pc + +%files gui-libs +%defattr(-,root,root,-) +%{_libdir}/libabrt_gui.so.* + +%files gui-devel +%defattr(-,root,root,-) +%{_includedir}/abrt/abrt-config-widget.h +%{_includedir}/abrt/system-config-abrt.h +%{_libdir}/libabrt_gui.so +%{_libdir}/pkgconfig/abrt_gui.pc + +%files gui +%defattr(-,root,root,-) +%dir %{_datadir}/%{name} +# all glade, gtkbuilder and py files for gui +%{_datadir}/icons/hicolor/*/apps/* +%{_datadir}/icons/hicolor/*/status/* +%{_datadir}/%{name}/icons/hicolor/*/status/* +%{_datadir}/%{name}/ui/* +%{_bindir}/abrt-applet +%{_bindir}/system-config-abrt +#%%{_bindir}/test-report +%{_datadir}/applications/abrt-applet.desktop +%config(noreplace) %{_sysconfdir}/xdg/autostart/abrt-applet.desktop +%{_mandir}/man1/abrt-applet.1* +%{_mandir}/man1/system-config-abrt.1* + +%files addon-ccpp +%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 +%else +%{_initrddir}/abrt-ccpp +%endif +%{_libexecdir}/abrt-hook-ccpp +%{_libexecdir}/abrt-gdb-exploitable +%attr(6755, abrt, abrt) %{_libexecdir}/abrt-action-install-debuginfo-to-abrt-cache +%{_bindir}/abrt-action-analyze-c +%{_bindir}/abrt-action-trim-files +%{_bindir}/abrt-action-analyze-core +%{_bindir}/abrt-action-analyze-vulnerability +%{_bindir}/abrt-action-install-debuginfo +%{_bindir}/abrt-action-generate-backtrace +%{_bindir}/abrt-action-generate-core-backtrace +%{_bindir}/abrt-action-analyze-backtrace +%{_bindir}/abrt-action-list-dsos +%{_bindir}/abrt-action-perform-ccpp-analysis +%{_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 +%{_datadir}/libreport/events/collect_GConf.xml +%{_datadir}/libreport/events/collect_vimrc_user.xml +%{_datadir}/libreport/events/collect_vimrc_system.xml +%{_datadir}/libreport/events/post_report.xml +%{_mandir}/man*/abrt-action-analyze-c.* +%{_mandir}/man*/abrt-action-trim-files.* +%{_mandir}/man*/abrt-action-generate-backtrace.* +%{_mandir}/man*/abrt-action-generate-core-backtrace.* +%{_mandir}/man*/abrt-action-analyze-backtrace.* +%{_mandir}/man*/abrt-action-list-dsos.* +%{_mandir}/man*/abrt-install-ccpp-hook.* +%{_mandir}/man*/abrt-action-install-debuginfo.* +%{_mandir}/man*/abrt-action-analyze-ccpp-local.* +%{_mandir}/man*/abrt-action-analyze-core.* +%{_mandir}/man*/abrt-action-analyze-vulnerability.* +%{_mandir}/man*/abrt-action-perform-ccpp-analysis.* + +%files addon-upload-watch +%defattr(-,root,root,-) +%{_sbindir}/abrt-upload-watch +%if %{with systemd} +%{_unitdir}/abrt-upload-watch.service +%else +%{_initrddir}/abrt-upload-watch +%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 +%config(noreplace) %{_sysconfdir}/%{name}/plugins/oops.conf +%{_datadir}/%{name}/conf.d/plugins/oops.conf +%{_mandir}/man5/koops_event.conf.5.gz +%if %{with systemd} +%{_unitdir}/abrt-oops.service +%else +%{_initrddir}/abrt-oops +%endif +%{_bindir}/abrt-dump-oops +%{_bindir}/abrt-action-analyze-oops +%{_bindir}/abrt-action-save-kernel-data +%{_mandir}/man1/abrt-dump-oops.1* +%{_mandir}/man1/abrt-action-analyze-oops.1* +%{_mandir}/man1/abrt-action-save-kernel-data.1* +%{_mandir}/man5/abrt-oops.conf.5* + +%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 +%{_initrddir}/abrt-xorg +%endif +%{_bindir}/abrt-dump-xorg +%{_mandir}/man1/abrt-dump-xorg.1* + +%files addon-vmcore +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/libreport/events.d/vmcore_event.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 +%else +%{_initrddir}/abrt-vmcore +%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,-) +%if %{with systemd} +%{_unitdir}/abrt-pstoreoops.service +%else +%{_initrddir}/abrt-pstoreoops +%endif +%{_sbindir}/abrt-harvest-pstoreoops +%{_bindir}/abrt-merge-pstoreoops +%{_mandir}/man1/abrt-harvest-pstoreoops.1* +%{_mandir}/man1/abrt-merge-pstoreoops.1* + +%files addon-python +%defattr(-,root,root,-) +%config(noreplace) %{_sysconfdir}/%{name}/plugins/python.conf +%{_datadir}/%{name}/conf.d/plugins/python.conf +%{_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* +%{python_sitearch}/abrt.pth + +%files cli +%defattr(-,root,root,-) + +%files tui +%defattr(-,root,root,-) +%{_bindir}/abrt-cli +%{_mandir}/man1/abrt-cli.1.gz + +%files desktop +%defattr(-,root,root,-) + +%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.oops.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/ +%{_defaultdocdir}/%{name}-dbus-%{version}/html/*.html +%{_defaultdocdir}/%{name}-dbus-%{version}/html/*.css + +%files python +%{python_sitearch}/problem/ +%{_mandir}/man5/abrt-python.5.gz + +%files python-doc +%{python_sitelib}/problem_examples + +%files console-notification +%config(noreplace) %{_sysconfdir}/profile.d/abrt-console-notification.sh + +%changelog +* Mon Aug 19 2019 Ernestas Kulik - 2.1.11-57 +- Drop patch for test suite + +* Tue Aug 13 2019 Ernestas Kulik - 2.1.11-56 +- Add patches for #1688368 + +* Wed Mar 20 2019 Ernestas Kulik - 2.1.11-55 +- Add patch for #1677476 + +* Thu Jan 3 2019 Martin Kutlak - 2.1.11-54 +- testsuite: move examples to 'tests' +- testsuite: Fix failing tests +- Add autogen.sh + +* Tue Dec 18 2018 Martin Kutlak - 2.1.11-53 +- cli: load config file at the beginning +- ccpp: fast dumping and abrt core limit +- conf: increase MaxCrashReportsSize to 5GiB +- vmcore: /var/tmp/abrt is no longer a dump location +- koops: Filter kernel oopses based on logged hostname +- daemon: Fix double closed fd race condition +- Related: #1618818, #1647841, #1613236, #1613182, #1655241 + +* Mon Aug 20 2018 Matej Habrnal - 2.1.11-52 +- plugin "general" from sos has been split into two new plugins +- Related: #1608444 + +* Mon Jun 25 2018 Matej Marusak - 2.1.11-51 +- a-a-s-p-data: fix segfault if GPGKeysDir isn't configured +- spec: turn on --enable-native-unwinder aarch64 +- plugins: a-a-g-machine-id use dmidecode command +- spec: use dmidecode instead of python-dmidecode +- Related: #1566707, #1566707, #1260074, #1591141 + +* Thu Feb 8 2018 Martin Kutlak - 2.1.11-50 +- vmcore: fix analyzer regression +- Related: #1543323 + +* Thu Oct 26 2017 Martin Kutlak - 2.1.11-49 +- Translation updates +- Stop creating uReports for unpackaged executables +- koops: add detailed taint flag description for kernel oopses +- koops: fix kernel oops and fatal MCE recognition +- python: provide more information about Python exceptions +- vmcore: fix replication of vmcore files +- Related: #1271213, #1460224, #1374648, #1361116, #1228344, +- Related: #1395285, #1214730, #1446410, #1319828, #1501718 + +* Tue May 30 2017 Matej Habrnal - 2.1.11-48 +- Translation updates +- Related: #1449488 + +* Tue Feb 21 2017 Matej Habrnal - 2.1.11-47 +- add %h parameter into abrt-hook-ccpp +- Related: #1364899 + +* Wed Feb 8 2017 Matej Habrnal - 2.1.11-46 +- remove not implemented option AttemptHardlink in vmcore.conf +- introduce unsafe reporting for not-reporable problems +- rewrite skip_pfx() function to work with journal msgs +- don't expect kernel's version '2.6.*' or '3.*.*' +- Related: #1416586, #1257159, #1328264, #1378469 + +* Thu Sep 1 2016 Matej Habrnal - 2.1.11-45 +- Translation updates +- Related: #1304240 + +* Thu Aug 18 2016 Matej Habrnal - 2.1.11-44 +- daemon: send base names from abrt-server to abrtd +- Resolves: #1132459 + +* Thu Aug 18 2016 Matej Habrnal - 2.1.11-43 +- check_recent_crash_file do not produce error_msg +- Resolves: #1337186 + +* Mon Aug 01 2016 Matej Habrnal - 2.1.11-42 +- trigger dump location cleanup after detection +- Resolves: #1132459 + +* Tue Jun 14 2016 Matej Habrnal - 2.1.11-41 +- vmcore: fix finding partitions by UUID and LABEL +- Related: rhbz#1147053 + +* Thu May 26 2016 Matej Habrnal - 2.1.11-40 +- ccpp: unify log message of ignored crashes +- Resolves: #1337186 + +* Tue May 03 2016 Matej Habrnal - 2.1.11-39 +- python: fix check for absolute path +- console-notifications: add timeout +- vmcore: generate 'reason' file in all cases +- Fix memory leaks in abrt-dbus +- Resolves: #1250337, #1166633, #1249101, #1319704 + +* Thu Apr 14 2016 Matej Habrnal - 2.1.11-38 +- ccpp: add xfunc_die() if cannot get executable +- Resolves: #1277849 + +* Thu Apr 14 2016 Matej Habrnal - 2.1.11-37 +- ccpp: exit with error if cannot get executable +- Resolves: #1277849 + +* Thu Apr 14 2016 Matej Habrnal - 2.1.11-36 +- lib: prevent from creating non-root sub-dirs in dump dir +- Save Vendor and GPG Fingerprint +- augeas: augtool save /files/etc/abrt/plugins/oops.conf/DropNotReportableOopses +- ccpp: add AllowedUsers and AllowedGroups feature +- ccpp: add IgnoredPath option +- lib: hooklib: make signal_is_fatal() public +- vmcore: catch IOErrors and OSErrors +- translations: update zanata configuration +- Resolves: #1311100, #1277848, #1277849, #1175679 + +* Fri Oct 30 2015 Jakub Filak - 2.1.11-35 +- make /var/spool/abrt owned by root +- remove 'r' from /var/spool/abrt for other users +- abrt-action-install-debug-info: use secure temporary directory +- stop saving abrt's core files to /var/spool/abrt if DebugLevel < 1 +- Fixes for: CVE-2015-5273 and CVE-2015-5287 +- Resolves: #1266853 + +* Fri Oct 16 2015 Jakub Filak - 2.1.11-34 +- sos: use 'services' instead of 'startup' +- Resolves: #1272005 + +* Thu Sep 17 2015 Richard Marko - 2.1.11-33 +- abrt-auto-reporting documentation +- ccpp: Use global PID +- ccpp: correct comments mentioning TID +- Related: #1252590, #1261036, #1223805 + +* Mon Aug 31 2015 Richard Marko - 2.1.11-32 +- Create UUID from core backtrace if coredump is missing +- Related: #1210601 + +* Wed Aug 19 2015 Richard Marko - 2.1.11-31 +- Only analyze vulnerabilities when coredump present +- Only generate core_backtrace if it's not already present. +- Related: #1210601 + +* Fri Aug 14 2015 Richard Marko - 2.1.11-30 +- Warn against disabling private reports in abrt.conf +- Related: #1253166 + +* Thu Aug 13 2015 Richard Marko - 2.1.11-29 +- ccpp: use global TID +- ccpp: fix comment related to 'MakeCompatCore' option in CCpp.conf +- cli: fix testing of DBus API return codes +- dbus-api: unify reporting of errors +- Related: #1210601, #1252419, #1224984 + +* Thu Jul 30 2015 Richard Marko - 2.1.11-28 +- doc: fix related to conditional compilation of man page +- spec: add dbus dependency for abrt-cli and abrt-python +- Related: #1191572, #1245527 + +* Wed Jul 29 2015 Richard Marko - 2.1.11-27 +- abrt-merge-pstoreoops: merge files in descending order +- abrt-auto-reporting: fix related to conditional compilation +- Update translations +- Related: #1233662, #1191572, #1181248 + +* Fri Jul 17 2015 Richard Marko - 2.1.11-26 +- reset ownership after saving core_backtrace +- Related: #1210601 + +* Fri Jul 17 2015 Richard Marko - 2.1.11-25 +- save core_backtrace from hook +- Related: #1210601 + +* Fri Jul 17 2015 Richard Marko - 2.1.11-24 +- support generating backtrace in core hook +- Resolves: #1210601 + +* Thu Jul 09 2015 Richard Marko - 2.1.11-23 +- abrt-auto-reporting fixes +- include processor information in sosreport +- abrt-cli uses abrt-dbus to get the detected problems +- Related: #1191572, #1221118, #1224984 + +* Thu May 21 2015 Jakub Filak - 2.1.11-22 +- do not open the build_ids file as the user abrt +- do not unlink failed and big user core files +- Related: #1212820, #1216974 + +* Wed May 13 2015 Jakub Filak - 2.1.11-21 +- validate all D-Bus method arguments +- Related: #1214612 + +* Tue May 05 2015 Jakub Filak - 2.1.11-20 +- remove the old dump directories during upgrade +- abrt-action-install-debuginfo-to-abrt-cache: sanitize arguments and umask +- fix race conditions and directory traversal issues in abrt-dbus +- use /var/spool/abrt instead of /var/tmp/abrt +- make the problem directories owned by root and the group abrt +- validate uploaded problem directories in abrt-handle-upload +- don't override files with user core dump files +- fix symbolic link and race condition flaws +- Resolves: #1211971, #1212820, #1212864, #1212870 +- Resolves: #1214454, #1214612, #1216974, #1238724 + +* Fri Jan 09 2015 Jakub Filak - 2.1.11-19 +- abrt-auto-reporting: add ureport authentication command line arguments +- add python-augeas to the requirements +- mark all strings for translations +- translation updates +- Related: #1087880, #1174833 + +* Thu Nov 20 2014 Jakub Filak - 2.1.11-18 +- allow gdb to auto-load scripts from /var/cache/abrt-di +- Resolves: #1128637 + +* Fri Oct 31 2014 Jakub Filak - 2.1.11-17 +- Translation updates +- machineid is a copy of /etc/machine-id +- Related: #1139552 + +* Tue Oct 21 2014 Jakub Filak - 2.1.11-16 +- applet: ensure writable directory before reporting +- Resolves: #1084027 + +* Mon Oct 13 2014 Jakub Filak - 2.1.11-15 +- console-notifications: skip non-interactive shells +- applet: show component instead of duphash in the notification +- Related: #1084031, #1150169 + +* Thu Oct 09 2014 Jakub Filak - 2.1.11-14 +- ureport: attach contact email +- mce: separate mce analysis from Kernel oops analysis +- console-notifications: use return instead of exit +- Resolves: #1150389, #1150169 +- Related: #1076820 + +* Fri Oct 03 2014 Jakub Filak - 2.1.11-13 +- Translation updates +- localization fixes +- applet: confirm ignoring of notifications +- cli: batch reporting in abrt-cli +- cli: add option remove crash dirs after reporting +- cli: robustize abrt-console-notification.sh +- cli: make consistent commands in abrt-cli +- applet: chown each notified problem before reporting it +- dbus: fixed abrt-dbus memory leaks +- plugins: add abrt-action-generate-machine-id +- spec: add abrt-action-generate-machine-id +- spec: remove dependency on crash from abrt-addon-vmcore +- spec: hook abrt-oops.conf.5 +- spec: don't use native unwinder on arm arch +- spec: remove stray space from %%description +- spec: add missing requires for python api +- spec: add dependency on abrt-python +- python: support exceptions without traceback +- spec: hook Kernel oops configuration files +- koops: add an option controlling MCE detection +- gdb: disable loading of auto-loaded files +- vmcore: start the service after kdump service +- Resolves: #1066482, #1084031, #1067545, #1084027, #1087880, #1087777 +- Resolves: #1015473, #1139001, #1076820, #1139552, #1128637, #1066501 +- Resolves: #1086642 + + +* 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 + +* Mon Nov 18 2013 Jakub Filak 2.1.7-4 +- Enable autoreporting +- Resolves: #1031572 + +* Tue Nov 12 2013 Jakub Filak 2.1.7-3 +- remove Fedora strings +- Resolves: #1029508 + +* Thu Oct 10 2013 Jakub Filak 2.1.7-2 +- add python-doc package + +* Wed Sep 11 2013 Jakub Filak 2.1.7-1 +- fix debuginfo installer expecting user input from a pipe - closes #696 +- add environment variable whitelist to debuginfo install wrapper - closes #692 +- add repo_pattern argument as a custom repository filter - closes #688 +- abrt-cli list: replace "@" prefix by "id " prefix +- fix a crash in 'abrt-cli info' when short id isn't found +- Use common string-to-sha1_hash functions. #694 +- doc: update OpenGPGCheck in a-a-save-package-data rhbz#997922 +- abrt-cli report: accept sha1 hashes of directory names. #693 +- abrt-dump-oops: emit a message if throttling for a significant period of time +- abrt-gdb-exploitable: print current instruction +- spec: posttrans scriptlet regenerating core_backtraces +- abrt-handle-event: add check for missing crash thread +- provide tmpfiles.d configuration +- abrt-cli list: use sha1 hash as short ids instead of @N thing. rhbz#906733 +- vmcore: fail gracefully if dump_dir is not accessible +- spec: vmcore: require kexec-tools +- vmcore: use re.MULTILINE instead of numerical value +- vmcore: don't fail if /etc/kdump.conf is not readable +- abrt-cli info: add "-s SIZE" option. closes #689 +- fix noninteractive mode in debuginfo installer - rhbz#737066 +- fixed the gpg keys loading - closes #686 +- Fix type of OPT_BOOL's referenced flag variable - it must be int, not bool! +- adds a kdump.conf parser to get the correct dump dir location, closes #640 +- xorg_event.conf: use abrt-action-list-dsos to create dso_list +- abrt-action-list-dsos: extend it to be able to parse Xorg backtrace. +- don't require debuginfo for vmcore analysis rhbz#768389 +- specfile: make addon-pstoreoops obsolete addon-uefioops +- abrt-dump-oops: add -t option which slows down problem creation. rhbz#902398. +- rename uefioops to pstoreoops rhbz#949721 +- spec: create type element for problem dirs where it doesn't exist - rhbz#958968 +- introduce abrt-upload-watch +- fix ccpp hook to create the type element - closes #682 +- specfile: use systemd-rpm macros. rhbz#850019 +- abrt-harvest-vmcore: notify new path - #657 +- abrt-dump-oops: remove redundant g_list_length() call, make messages clearer +- updated translation - rhbz#860555 +- updated transifex url +- GUI config: add Close/Defaults button +- GUI config: hide option descriptions in tool tips +- GUI config: add Silent shortened reporting support +- applet: silent shortened reporting +- applet: less misleading label for Ignore button +- abrt-handle-upload: switch from shell to python; send socket notification. #657 +- spec: add build requires for XSMP depencies +- applet: update seen list when X Session dies +- improved the error messages in abrt-server - closes #679 +- fix typo in abrt-config-widget.ui +- spec: add new packages abrt-gui-libs and abrt-gui-devel +- delete desktop file for system-config-abrt +- expose abrt configuration GUI in public API +- rewrite abrt-harvest-uefioops to python - closes #678 +- spec: abrt-python is no longer noarch - related #677 +- created python binding for notify_new_path - closes #677 +- spec: install applet's desktop file to system dir +- applet: configure notification source +- rewrite shell script for moving vmcores into python closes #676 +- abrtd: ensure that the dump location directory exists +- a-a-ureport: generate core_backtrace only for CCpp problems +- do not store potentially big data in /tmp +- abrt-dbus: send new problem notify signal to socket +- abrtd: remove "post-create" machinery. Related to #657 +- Avoid leaving stale rpmdb locks behind (rhbz#918184) +- abrtd: improve parsing of pidfile in create_pidfile() +- abrt-dump-{oops,xorg}: send new problem notify signal to socket +- abrtd: disable inotify watch on DUMP_LOC +- abrt-hook-ccpp: send "POST /creation_notification" after creating problem dir +- Stop dying in check_free_space(); rename it to low_free_space() +- abrt-server: make create_problem_dir() run "post-create" +- abrt-handle-event: create DUMP_LOC/post-create.lock when running "post-create" +- abrt-server: add support for "POST /creation_notification" +- abrt-handle-event: free more of allocated data +- Resolves: #880694, #895745, #906733, #949721, #953927, #960549, #961520, #967644, #990208, #993591, #993592 + +* Tue Aug 06 2013 Jakub Filak 2.1.6-3 +- try to generate core_backtrace only for CCpp problems +- Resolves: #993630 + +* Tue Jul 30 2013 Jakub Filak 2.1.6-4 +- do not require abrt-retrace-client + +* Mon Jul 29 2013 Jakub Filak 2.1.6-3 +- use RHTSupport even in report-cli events + +* Mon Jul 29 2013 Jakub Filak 2.1.6-2 +- disable gcc unused-typedef warning for GLib +- use right dependencies for RHEL + +* Fri Jul 26 2013 Jakub Filak 2.1.6-1 +- replace functions deprecated in Gtk-3.10 with their substitutes +- integrate with satyr, drop btparser +- use absolute path in python shebang rhzb#987010 +- abrt-action-save-package-data: properly close rpm database. Closes #674. +- abrt-action-save-package-data: fix handling of ProcessUnpackaged on scripts +- abrt-action-save-package-data manpage: typo fix +- change /var/spool/abrt/ to /var/tmp/abrt in doc rhbz#912750 +- Fix RPMdiff warnings about abrtd and abrt-action-install-debuginfo-to-abrt-cache +- specfile: add dependency on abrt-libs to abrt-addon-uefioops +- stop using the hardcoded event list, use workflows instead rhbz#866027 +- retrace-client: build correct release for Fedora Rawhide +- spec: drop unnecessary Obsoletes and Provides +- correct FSF address in python exception hook +- add missing manual pages for binaries and scripts +- fix rpmlint issues in the spec file +- move event option XML files to /usr/share/libreport/ +- abrt-hook-ccpp: always fall back to creating user core. +- dbus: add GetForeignProblems method +- the system tray icon opens recently detected problem +- add gdb python plugin which analyzes coredump for vulnerability +- applet: stop saving configuration at exit +- introduce system-config-abrt +- abrt-cli status: make the output more natural +- Fix wrong path in shell include +- abrt-dump-xorg: save "type=xorg" along with "analyzer=xorg" +- Update python hook to use fixed socket interface +- abrt-server: updates/fixes for future rasdaemon needs +- Resolves: #988165 + +* Fri Jun 14 2013 Jakub Filak 2.1.5-1 +- abrt-retrace-client requires tar closes #635 +- abrt-tui requires abrt closes #633 +- a-d-oops: obtain kernel version from the oops +- a-a-p-ccpp-analysis: import all used attributes +- vmcore: provide all problem elements necessary for the reporting +- a-d-oops: add 'update' command line argument +- a-a-g-core-backtrace: don't crash if kernel file doesn't exist +- a-a-a-vmcore: save kernel version in 'kernel' file +- abrt-cli: make status help message more precise +- abrt-cli status: don't include reported problems into count +- abrt-cli list: implement --since and --until +- abrt-python: open dirs read-only if possible +- dbus: ChownProblemDir method really changes the owner +- python: disable events in collision with anaconda +- abrt-python requires pygobject2 +- systemd units: start services only if it make sense +- abrt-harvest-uefioops.in: test for abrtd after testing for pstore, not before +- make abrt-uefioops.service conditional on /sys/fs/pstore being populated +- dbus: fix SetElement failing when shrinking an item +- spec: fix unowned directories +- abrt-python: whole python API path in POTFILES.skip +- abrt-python: fix dbus compatibility on RHEL6 +- abrt-python: check if gid equals current users gid +- abrt-python: fix tests compatibility with python 2.6 +- abrt-python: pass DD_OPEN_READONLY only if available +- abrt-python: fix deprecation warnings +- console notification shouldn't ask confirmation - closes #652 +- Short BT deduplication false positives workaround +- Only problems of same type can be duplicates +- abrt-python: fix bug in problem.get +- abrt-python: pep8 cleanup +- koops parse: support frame prefix +- don't show non critical errors in console notification +- Resolves: #958961, #974670 + +* Mon May 06 2013 Jakub Filak 2.1.4-3 +- don't show non critical errors in console notification +- use last_occurrence with --since + +* Fri May 03 2013 Jakub Filak 2.1.4-2 +- start abrtd.service after livecd +- udpate translation +- add addon-uefioops +- Resolves: #928753 + +* Tue Apr 30 2013 Jakub Filak 2.1.4-1 +- build abrtd and setuided executables with full relro rhbz#812284 +- added a console notification script to profile.d closes #641 +- return the right exit code for user cancellation +- add more examples to Problem API doc +- updated translation Related: #951416 +- Replace "THANKYOU" with EXIT_STOP_EVENT_RUN exit code (70) +- abrt-action-ureport: rewrite in python, improve messages +- abrt-cli: added 'status' command +- abrt-cli: make "report -v[vv]" export correct $ABRT_VERBOSE value +- bodhi, retrace: support /etc/os-release +- abrt-action-generate-core-backtrace: be a bit more verbose +- abrt-dump-oops: add "Machine Check Exception" to the list of watched strings rhbz#812537 +- abrt-action-install-debuginfo: do not assume os.execvp never returns +- abrtd: mark unprocessed dump directories as not-reportable +- abrtd: update last occurrence dump dir file +- spec: remove the commented macros rhbz#864851 +- spec: added the versioned abrt-libs requires to silence rpmdiff rhbz#881123 +- spec: create a new subpackage for the console notification #641 +- spec: add deps. required for reporting to abrt-cli pkg +- spec: inc required version of libreport + +* Mon Apr 08 2013 Jakub Filak 2.1.3-2 +- Require correct version of libreport +- Add dependecies required for reporting to abrt-cli package +- Resolves: #947651 + +* Wed Mar 27 2013 Jakub Filak 2.1.3-1 +- record runlevel +- Integration with satyr +- dbus: check correct errno after dump_dir_is_accessible_by_uid() +- require libreport workflow package acc. to OS type +- remove the abrt-gui closes #629 +- retrace-client: do not allow space in os_release_id; closes #625 +- Remove all smolt-related files and code bits +- abrtd: recreate Dump Location directory if it is delete + +* Mon Mar 25 2013 Jakub Filak 2.1.2-4 +- Check if restorecon cmd exists and run it only if it does +- Resolves: #926934 + +* Fri Mar 22 2013 Jakub Filak 2.1.2-3 +- Fix problems with spaces in retrace-client + +* Fri Mar 22 2013 Jakub Filak 2.1.2-2 +- Require correct version of libreport +- Add a patch for abrtd which ensures that the dump location always exists +- disable shortened and auto reporting in RHEL +- Resolves: #918040, #918041 + +* Tue Mar 19 2013 Jakub Filak 2.1.2-1 +- Improve log messages +- Update translation +- Introduce helpers for management of list of ignored problems +- applet: show a confirmation notify bubble for reported problems in ShortenedReporting mode +- applet: mark problems as ignored and don't notify ignored problems +- applet: remove confusing "Show" button +- applet: pass problem's id to the gui app +- abrt-ccpp: try to read hs_err.log from crash's CWD +- abrt-action-perform-ccpp-analysis: Complain if analyze_RetraceServer can't run. Closes 619 +- abrt-gui: change URL to point to most recent doc +- add abrt-action-analyze-ccpp-local to ccpp-addon related to rhbz#759443 +- analyze-ccpp don't suid to abrt when run as root, related rhbz#759443 +- abrtd: prohibit DumpLocation == WatchCrashdumpArchiveDir. Closes rhbz#854668 +- abrtd: don't blame interpreter, blame the running script #609 +- a-a-ureport: don't fail on missing counter file +- a-a-ureport: allow to send ureport more than once +- dbus doc: install abrt-dbus documentation files to the correct places +- dbus doc: extend the documentation of DBus API +- dbus doc: make xml interface parseable by qtdbusxml2cpp +- dbus: add basics to a new problem +- abrt-harvest-vmcore: don't copy dir from var/spool if copy already exists +- fix path in the collect_xsession_errors event +- retrace-client: print dots instead of repeated status message +- move abrt.pth to arch specific location rhbz#912540 +- Make forking code paths more robust. +- add more logging to catch "stuck core-backtrace" problem; reduce gdb looping +- Resolves: #879160, #854668, #885044, #903005, #905412, #909968, #912540 + +* Tue Mar 05 2013 Jakub Filak 2.1.1-2 +- remove ureport events from the reporting workflow in RHEL + +* Fri Feb 08 2013 Jakub Filak 2.1.1-1 +- add SETGID bit to abrt-action-install-debuginfo-to-abrt-cache +- add abrt-desktop depency on libreport-fedora +- abrt-dump-{oops,xorg}: limit amount of created dirs, add cooldown sleep if exceeded +- abrt-watch-log: handle a case when child doesn't process its input +- abrt-watch-log: fix a bug in mmap error check +- abrt-action-analyze-xorg: fix the case with DIR != "." +- Resolves: #908256 + +* Mon Feb 04 2013 Jakub Filak 2.1.0-1 +- pkg-config: export defaultdumplocation variable +- configure: set default dump location to /var/tmp/abrt +- abrtd: sanitize mode and ovner of all elements +- updated translation +- abrtd-inotify-flood test: expend it to check for another inotify-related bug +- gnome-abrt is default GUI +- applet: on requrest open gnome-abrt instead of abrt-gui +- Make it so that g_io_channel_read_chars(channel_inotify) does not buffer data. +- multilib fixes +- daemon: unify accessibility check before delete with dbus +- dbus: move dir accessibility check from abrt to libreport +- dbus: user dd_chown instead of own impl. +- allow default dump directory to be configured through cmd line args +- introduce abrt-python +- reporter-bz: post a comment to dup bug, if we found a dup. version 2. +- replace left over magic dd modes by macro +- synchronize default dump dir mode with libreport +- replace all occurrences of hardcoded dump location by a variable +- harvest-vmcore: read dump dir path from configuration +- use lchown when chowning files over dbus +- use lchown when chowning newly created problem directory +- verify-that-report-edits test: fix to account for new CLI interface +- koops: add all x86 TRAP prefixes to list of suspicious strings +- koops: put all suspicious strings to global variable +- applet: extend comment. No code changes +- applet: introduce shortened reporting +- abrt-applet: handle SIGTERM and perform nice termination +- abrt-applet: update the seen list on every possible action +- applet: don't notify outdated new problems +- Add and use "report-cli" event instead of removed "report-cli -r" option +- fixed the relro flags rhbz#812284 +- applet: unref unused GIOChannel +- Resolves: #892230, #895742 + +* Thu Dec 20 2012 Jiri Moskovcak 2.0.20-1 +- New version 2.0.20 +- Fix typo: usefull->useful +- koops: generate core backtrace if missing +- udpated po files +- Cosmetic fixes in abrtd-inotify-flood test +- Hook up abrtd-inotify-flood to test infrastructure +- Add a testcase for inotify flood +- replace 'Start Autoreport' btn by a popup dialog +- dbus: NewProblem returns full path as problem_id +- abrt-action-analyze-xorg: fix /usr/include/paths.h -> paths.h +- abrtd: set inotify fd to non-blocking mode; ignore 0-sized inotify reads. Closes rhbz#873815 +- s/ABRT dump/problem directory/g +- abrt-applet: don't leak component name +- abrt-applet: alerts only not reported problems +- build system: Remove leftover of abrt-action-analyze-xorg shell script +- Rewrite abrt-action-analyze-xorg in C (partially) +- rework abrt-gui>Help>'Report problem with ABRT' +- abrt-action-analyze-oops: fix help text - we have no -s option +- Help text fix - using "problem directory" consistently +- abrt-dump-oops: add list of tainted modules to NOT_REPORTABLE string. Closes trac#821 +- a-a-p-c-a: use ask_yes_no_yesforever() fn from reportclient +- abrt-dump-oops: save /proc/modules contents. Partially closes trac#821 +- add ureporter wrapper sending ureport only once per problem dir +- introduce Desktop Session Autoreporting +- add Autoreporting configuration options +- abrt-action-analyze-xorg: robustify 'test "a" = "b"' against bugs +- Collect ~/.xsession_errors from its new path, if it is there. Closes trac#791 +- reflect recent libreport API changes .trac#822 +- Indentation fix. No code changes. +- minor fix to previous commit realted to .trac#541 +- don't use gtk_main* when using gtk_application .trac#890 +- minor fix to quit button +- Make "Open problem data" open the expert mode GUI +- Teach kernel oops hash to ignore "" / "" prefixes. Closes rhbz#875852 +- introduce DeleteElement D-Bus method +- introduce SetElement D-Bus method +- allow only one instance of gui trac#541 +- runtests/bugzilla-comment-format: fix false positive AGAIN +- update translations +- a-a-p-c-a: use correct name in gettext initialization +- Fix build system so that make rpm works again +- runtests/bugzilla-comment-format: fix false positive +- Improve xorg post-create. closes trac#838 +- Update po files +- fix problem occurrence counter updating algorithm +- abrt-dbus: immediately return an error if not-existing problem is requested +- bugzilla-comment-format: new test +- a-a-p-c-a: use event python API instead of abrt-handle-event +- doc: add dbus problems service specification + +* Mon Nov 26 2012 Jakub Filak 2.0.19-2 +- update translations +- Resolves: #880201 + +* Wed Nov 14 2012 Jakub Filak 2.0.19-1 +- call g_type_init() only in GLib version < 2.35 +- plugins/*_event.conf: use reporter-bz -F FMTFILE as appropriate +- repeat unchaged retrace status message only in verbose mode +- check the correct return value of yesforever answer +- abrt-handle-event: forward event process requests to parent +- don't leak optional retrace path and kernel tainted string +- enhance koops tainted flag parser +- Use "comment" element instead of "description" +- Resolves: #873488 + +* Thu Nov 01 2012 Jakub Filak 2.0.18-1 +- bugzilla-dupe-search: fix os_release to contain the same OS version as bug 755535 +- Do not stop reporting when GConf entry is not found. Closes rhbz#869833 +- Fix false positive caused by English language fix +- pyhook: import inspect lazily +- Resolves: #869833 + +* Wed Oct 24 2012 Jakub Filak 2.0.17-2 +- remove ABRT1.0-to-ABRT2.0 upgrade script from spec file + +* Wed Oct 24 2012 Jakub Filak 2.0.17-1 +- provide a problem item containing versions of binaries listed in Xorg backtrace + Adresses #867694 comment 1 +- import rpm lazily +- Resolves: #864324 + +* Wed Oct 17 2012 Jakub Filak 2.0.16-1 +- xorg_event: make post-create save dmesg, drop problems w/ binary modules + Partially addresses: #856790 +- collect_xsession_errors should not fail if !xsession-errors + Resolves: #866698 + +* Thu Oct 11 2012 Jakub Filak 2.0.15-1 +- add collect_* event to reporting chains for CCpp/Python/Kernel +- core-backtrace: make sure kernel version does not contain spaces +- core-backtrace: also include '?' flag for kerneloops +- don't check EXECUTABLE if it isn't present in list +- retrace-client: check whether all included files are regular +- abrt_exception_handler.py: save 'environ' element +- add Makefile target release-fix +- Make it possible for developer to disable crash processing for specific apps. Closes rhbz#848786 +- s/Dump directory/Problem directory/ +- Resolves: #864014, #864331, #848786 + +* Sun Oct 07 2012 Jakub Filak 2.0.14-2 +- added forgotten Requires + +* Fri Oct 05 2012 Jakub Filak 2.0.14-1 +- abrt-dump-oops: save /sys/kernel/debug/suspend_stats. Closes rhbz#787749 +- abrt-hook-ccpp: save /proc/sys/crypto/fips_enabled value if it isn't "0". Closes rhbz#747870 +- abrt-dump-oops: save /proc/sys/crypto/fips_enabled value if it isn't "0". Closes rhbz#747870 +- abrt-action-analyze-oops: fail if we end up hashing "" (empty string). Closes rhbz#862013 +- retrace-client: respect chrooted os_release in pkgcheck +- Added oops_recursive_locking1.right to Makefile.am +- fix koops-parser.at, remove bastardized copy of oops_recursive_locking1.test +- add new oops example (currently fails, the fix is coming up) +- fix oops jiffies time stamp counter removal code +- trivia: s/dump/problem directory; fix false positive in oops-with-jiffies.right +- testsuite: added f18 kickstart +- open files for appned not for write rhbz#854266 +- added more info about locking - rewrote with vda's comments rhbz#859724 +- ccpp_event.conf: ignore crashes with nonzero TracerPid. Closes rhbz#812350 +- show more info when abrtd can't acquire lock on pid, related to rhbz#859724 +- abrt-hook-ccpp: save "proc_pid_status" element +- use FILENAME_ABRT_VERSION instead of string literal +- Fix pyhook test to reflect changes made in write_dump +- trac#333: Add code generating dso_list to the python hook +- spec: tui should require libreport-cli rhbz#859770 +- trac#682: emit Crash DBus signal on org.freedesktop.problems bus +- spec: added deps on elfutils rhbz#859674 +- Resolves: #859674, #859770, #859724, #812350, #854266, #862013, #747870, #787749 + +* Fri Sep 21 2012 Jiri Moskovcak 2.0.13-1 +- + +* Tue Aug 21 2012 Jakub Filak 2.0.12-1 +- move abrtd.pid to /var/run/abrt/abrtd.pid +- abrt-harvest-vmcore: add CopyVMcore config option to copy vmcores. Closes 448, rhbz#811733, rhbz#844679 +- update po files rhzb#800784 +- applet: fix a SEGV caused by notify_init() not being called +- minor fix to pkg-config file +- ignore results of setregid() and setreuid() after glibc update +- hopefully fixed ugly applet icon rhbz#797078 +- add update of abrt server database to event chains +- Resolves: #761431, #811733, #844679, #797078 + +* Fri Aug 10 2012 Jakub Filak 2.0.11-2 +- fix abrt-dbus crash if no element is found in GetInfo() +- set sending-sensitive-data option to 'yes' for analyze_RetraceServer event + +* Thu Aug 02 2012 Jiri Moskovcak 2.0.11-1 +- new upstream release +- Resolves: #622773, #741222, #823299, #825116, #826058, #826800, #831333, #832085, #838842 + +* Tue May 22 2012 Jiri Moskovcak 2.0.10-4 +- abrt-desktop should require abrt-retrace-client +- Resolves: #823812 + +* Thu May 10 2012 Jiri Moskovcak 2.0.10-3 +- enable plugins unconditionally rhbz#819113 + +* Wed Apr 18 2012 Jiri Moskovcak +- fixed freeze in crashing python apps rhbz#808562 +- Resolves: #808562 + +* Wed Apr 18 2012 Jiri Moskovcak 2.0.10-2 +- minor rhel7 build fixes + +* Mon Apr 02 2012 Jiri Moskovcak 2.0.10-1 +- new upstream release +- fixed problem with empty problem directory rhzb#808131 +- fixed exception in a-a-a-core when eu-unstrip output is broken +- Resolves: #808131, #804309 + +* Mon Mar 19 2012 Jiri Moskovcak 2.0.7-7 +- fixed problems with rhel gpg keys rhbz#800419 + +* Thu Feb 02 2012 Jiri Moskovcak - 2.0.7-6 +- abrt-desktop shouldn't require bodhi on rhel (2nd try) + +* Wed Feb 01 2012 Jiri Moskovcak - 2.0.7-5 +- abrt-desktop shouldn't require bodhi on rhel + +* Thu Jan 12 2012 Fedora Release Engineering - 2.0.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Jan 03 2012 Jiri Moskovcak 2.0.7-3 +- build fixes + +* Thu Dec 08 2011 Jiri Moskovcak 2.0.7-2 +- added man page +- fixed weird number formatting + +* Wed Dec 07 2011 Jiri Moskovcak 2.0.7-1 +- new version +- disabled kerneloops.org +- abrt-ccpp hook fixes +- catch indentation errors in python rhbz#578969 +- fixed make check +- fixed retrace-client to work with rawhide +- require abrtd service in other services rhbz#752014 +- fixed problems with dupes rhbz#701717 +- keep abrt services enabled when updating F15->F16 +- Resolves: 752014 749891 749603 744887 730422 665210 639068 625445 701717 752014 578969 732876 757683 753183 756146 749100 + +* Fri Nov 04 2011 Jiri Moskovcak 2.0.6-1 +- new version +- Resolves: #701171 #712508 #726033 #728194 #728314 #730107 #733389 #738602 +- Resolves: #741242 #749365 #700252 #734298 #736016 #738324 #748457 #692274 +- Resolves: #711986 #723219 #749891 #712602 #744887 #749603 #625445 #665210 +- Resolves: #737991 #639068 #578969 #636000 #631856 + +* Fri Oct 07 2011 Nikola Pajkovsky - 2.0.4.981-3 +- don't file kernel bugs if "tainted: B" is set. +- don't file bugs about BIOS bugs. +- incorrect TAINTED description in bugs. +- Resoves: #718097 #708534 724838 + +* Mon Oct 3 2011 Jiri Moskovcak - 2.0.4-981-2 +- added abrt-retrace-client as a dependency + +* Thu Sep 22 2011 Jiri Moskovcak - 2.0.4.981-1 +- updated translation +- don't allow to skip the analyze step +- don't send ~ backups +- added hint to report only in English +- renamed abrt-action-kerneloops -> reporter-kerneloops +- explain option bugtracker and logger +- gui added padding to main window +- better message when gdb time outs +- added support for catching vmcores +- added version to Logger output +- [RFE] abrt should have an easy way to include smolt-profile +- Resolves: #694828 #694833 #704958 #735071 #731189 #739182 #704452 #734037 #606123 #631822 + +* Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-5 +- minor spec file fix + +* Tue Sep 13 2011 Jiri Moskovcak - 2.0.4-4 +- fixed sigsegv in a-a-save-package-data rhbz#737961 +- fixed privs for /var/run/abrt rhbz#725974 +- fixed segv in free space check +- Resolves: #737961 #725974 + +* Tue Aug 30 2011 Jiri Moskovcak - 2.0.4-3 +- fixed abrt1-abrt2 update + +* Fri Aug 19 2011 Jiri Moskovcak - 2.0.4-2 +- enable bugzilla for kerneloops rhbz#725970 +- Resolves: #725970 + +* Thu Jul 21 2011 Jiri Moskovcak - 2.0.4-1 +- new upstream version +- resolves wrong provs/obsolete rhbz#723376 +- split main UI into two panes +- debuginfo-install script asks before downloading +- Resolves: #723376 + +* Mon Jun 20 2011 Jiri Moskovcak - 2.0.3-1 +- new upstream release + +* Fri May 20 2011 Jiri Moskovcak - 2.0.2-6 +- make abrt-ccpp and abrt-oops start on boot + +* Fri May 13 2011 Karel Klíč - 2.0.2-5 +- Do not force service startup in %%posttrans, as it breaks live media + creation (rhbz#704415) + +* Sun May 08 2011 Jiri Moskovcak 2.0.2-4 +- fixed prgname, fixes problem where Gnome3 shows lowres icons instead + nice highres ones + +* Fri May 06 2011 Christopher Aillon - 2.0.2-3 +- Update icon cache scriptlet per packaging guidelines + +* Fri May 06 2011 Jiri Moskovcak 2.0.2-2 +- flush messages in retrace client + +* Thu May 05 2011 Jiri Moskovcak 2.0.2-1 +- updated translation +- new icons (thanks to Lapo Calamandrei) +- changed address of retrace01 to retrace +- fixed problem with not trusted ssl certificate #695977 +- #692713 Dialogue Box Buttons Wrong Way Around +- #695452 abrt crashing when trying to generate backtrace +- #698458 RFE: report separators between reports in abrt.log +- #699098 999 futile attempts to delete excess debuginfo +- #691881 GUI doesn't sort by last occurrence by default, and doesn't remember that sort order if you set it and restart the app +- #698418 Can't access '/var/spool/abrt/ccpp-2011-04-18-11:53:22-2661': Permission denied +- #698934 abrt-applet segfault on abrtd restart +- #695450 Retrace client - show meaningful message on failure +- #616407 RFE: Change abrt to catch TRAP signal crashes +- #584352 running service abrtd a non-root user doesn't show error +- retrace client: fail on servers with problematic SSL certificates (kklic@redhat.com) +- retrace-client: Load system-wide certificates. Move NSS init/shutdown to main, as it shouldn't be run multiple times. (kklic@redhat.com) +- abrt-cli: update manpage. Closes #243 (dvlasenk@redhat.com) +- move abrt-handle-crashdump to abrt-cli package. No code changes (dvlasenk@redhat.com) +- add abrt-action-print manpage. Closes #238 (dvlasenk@redhat.com) +- add abrt-action-trim-files manpage. Closes #241 (dvlasenk@redhat.com) +- added abrt-action-generate-backtrace manpage (dvlasenk@redhat.com) +- add abrt-action-analyze-backtrace manpage. Closes #227 (dvlasenk@redhat.com) +- retrace server: do not create zombie workers (mtoman@redhat.com) +- btparser: Remove top frame with address 0x0000 (jump to NULL) during normalization to avoid incorrect backtrace ratings (rhbz#639049) (kklic@redhat.com) +- abrt-gui: better list refreshing. Closes #251 (dvlasenk@redhat.com) +- fix for spurious "Lock file 'DIR/.lock' is locked by process PID" message (dvlasenk@redhat.com) +- Asciidoc manpage support; abrt-action-mailx manpage (kklic@redhat.com) +- list-dsos: don't list the same library multiple times (jmoskovc@redhat.com) +- call abrt-action-trim-files from abrt-action-install-debuginfo (dvlasenk@redhat.com) +- list-dsos: added package install time trac#123 (jmoskovc@redhat.com) +- retrace client: handle messages in HTTP body (mtoman@redhat.com) +- retrace server: remove chroot on failure (mtoman@redhat.com) +- spec: use versioned deps on libreport (jmoskovc@redhat.com) +- generate abrt version from git (npajkovs@redhat.com) +- abrt-action-trim-files needs to be suided rhbz#699098 (jmoskovc@redhat.com) +- gui: suppress printing dumpdir access errors (bz#698418) (mlichvar@redhat.com) +- Do not leave dump dir locked by abrt-action-generate-backtrace. (kklic@redhat.com) +- wizard: expand explanatory text on 1st screen. Closes 201 (dvlasenk@redhat.com) +- gui: fixed the OK and CANCEL buttons order in event config dialog (jmoskovc@redhat.com) +- Make abrt-action-list-dsos.py take -m maps -o dsos params; and abrt-action-analyze-core.py to take -o build_ids param (dvlasenk@redhat.com) +- abrt-action-install-debuginfo.py: don't die on some Yum exceptions. closes bz#681281 (dvlasenk@redhat.com) + +* Thu Apr 21 2011 Jiri Moskovcak 2.0.1-2 +- don't allow reporting of backtrace with rating = 0 rhbz#672023 +- use versioned deps on libreport + +* Wed Apr 20 2011 Jiri Moskovcak 2.0.1-1 +- updated to 2.0.1 +- updated translation +- allowed reporting oops to bugzilla +- added warning when the plugin settings are wrong +- added help text in plugins settings +- the plugin settings dialog is translatable +- improved dir rescanning logic in abrt-gui +- fixed icons for child dialogs +- retrace-client: human readable messages instead of http codes +- save envirnment variables when app crashes +- fixed gpg/pgp check +- revert to the old icon + +* Fri Apr 15 2011 Jiri Moskovcak 2.0.0-5 +- fixed problem with abrt-action-debuginfo-install rhbz#692064 + +* Thu Mar 31 2011 Jiri Moskovcak 2.0.0-4 +- fixed prgname in wizard rhbz#692442 + +* Wed Mar 30 2011 Jiri Moskovcak 2.0.0-3 +- fixed notification persistence in gnome3 (again) +- fixed wrong group:user on /var/cache/abrt-di afte rupdate from abrt 1.x #692064 +- added mono-core to blacklist + +* Tue Mar 29 2011 Jiri Moskovcak 2.0.0-2 +- use %%ghost on files in /var/run and /var/lock rhbz#656542 +- fixed notification persistence in gnome3 +- added analyze selector to CLI +- refuse reporting to bz without backtrace or hash +- use g_set_prgname to set the prgname of abrt-gui trac#180 + +* Wed Mar 16 2011 Jiri Moskovcak 2.0.0-1 +- update to the latest upstream version +- many improvements +- FIXME: add closed bugzillas + +* Fri Feb 18 2011 Jiri Moskovcak 1.1.17-2 +- removed gnome-python2-vfs dependency + +* Mon Feb 07 2011 Fedora Release Engineering - 1.1.17-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sat Feb 05 2011 Jiri Moskovcak 1.1.17-1 +- rewritten abrt-debuginfo-install script to use the yum API +- GUI: added search box to backtrace view rhbz#612017 (jmoskovc@redhat.com) +- fixed some gui warnings rhbz#671488 (jmoskovc@redhat.com) +- btparser/dupechecker improvements: + - Better handling of glibc architecture-specific functions (kklic@redhat.com) + - support format of thread header: "Thread 8 (LWP 6357):" (kklic@redhat.com) + +* Fri Feb 04 2011 Jiri Moskovcak 1.1.16-1 +- rhtsupport: added list of attachments to comment rhbz#668875 +- rhtsupport: stop consuming non-standard header rhbz#670492 +- Resolves: #670492, #668875 + +* Wed Jan 19 2011 Jiri Moskovcak 1.1.15-2 +- add a gui/uid to useradd/groupadd command (reserved in setup rhbz#670231) +- Resolves: #650975 + +* Wed Jan 19 2011 Jiri Moskovcak 1.1.15-1 +- removed unused files (jmoskovc@redhat.com) +- update po files (jmoskovc@redhat.com) +- removed some unused files (jmoskovc@redhat.com) +- pass old pattern to ccpp hook and use it (dvlasenk@redhat.com) +- GUI: added warning when gnome-keyring can't be accessed rhbz#576866 (jmoskovc@redhat.com) +- 666893 - Unable to make sense of XML-RPC response from server (npajkovs@redhat.com) +- PyHook: ignore SystemExit exception rhbz#636913 (jmoskovc@redhat.com) +- 665405 - ABRT's usage of sos does not grab /var/log/messages (npajkovs@redhat.com) +- add a note in report if kernel is tainted (npajkovs@redhat.com) +- KerneloopsScanner.cpp: make a room for NULL byte (npajkovs@redhat.com) +- fix multicharacter warring (npajkovs@redhat.com) +- open help page instead of about rhbz#666267 + +* Wed Jan 19 2011 Jiri Moskovcak 1.1.14-3 +- fixed build with rpm 4.9 (thx panu pmatilai for the patch) + +* Wed Jan 19 2011 Matthias Clasen 1.1.14-2 +- Rebuild against new rpm + +* Wed Nov 17 2010 Jiri Moskovcak 1.1.14-1 +- made howto mandatory +- fixed segv in abrt-hook-ccpp rhbz#652338 +- added warning if kernel was tainted +- make the "install debuginfo" hint selectable rhbz#644343 +- wrap howto and comments rhbz#625237 +- wrap lines in the backtrace window rhbz#625232 +- changed '*' to '•' rhbz#625236 +- make the bt viewer not-editable rhbz#621871 +- removed unneeded patches + +* Wed Nov 10 2010 Jiri Moskovcak 1.1.13-3 +- Rebuild for libnotify-0.7 + +* Wed Aug 25 2010 Jochen Schmitt 1.1.13-2 +- Rebuild for python-2.7 + +* Tue Aug 10 2010 Jiri Moskovcak 1.1.13-1 +- updated translation +- added native systemd file rhbz#617316 (jmoskovc@redhat.com) +- added ar to LINGUAS (jmoskovc@redhat.com) +- made /etc/abrt/plugins/Bugzilla.conf world-readable again (jmoskovc@redhat.com) +- l10n: adding fa locale (lashar@fedoraproject.org) +- l10n: new Persian (lashar@fedoraproject.org) +- remove libzip code (npajkovs@redhat.com) +- add libxml-2.0 into configure (npajkovs@redhat.com) +- fixed typo in man page rhbz#610748 (jmoskovc@redhat.com) +- RHTSupport: GUI's SSLVerify checkbox had one missing bit of code (vda.linux@googlemail.com) +- abrt_curl: discard headers from HTTP redirection (vda.linux@googlemail.com) +- moved abrt.socket and abrtd.lock into /var/run/abrt making selinux happy (jmoskovc@redhat.com) +- Mention --info and --backtrace in the abrt-cli man page. (kklic@redhat.com) +- build fixes for gcc 4.5 (jmoskovc@redhat.com) +- abrt-hook-ccpp: small fixes prompted by testing on RHEL5 (vda.linux@googlemail.com) +- Added --info action to abrt-cli (mtoman@redhat.com) +- wire up SSLVerify in RHTSupport.conf to actually have the desired effect (vda.linux@googlemail.com) +- fixed tooltip localization rhbz#574693 (jmoskovc@redhat.com) +- dumpoops/KerneloopsScanner: add pid to crashdump name (vda.linux@googlemail.com) +- A message change suggested by dhensley (kklic@redhat.com) + +* Tue Jul 27 2010 David Malcolm - 1.1.10-4 +- rebuild + +* Tue Jul 27 2010 Jiri Moskovcak 1.1.10-3 +- blacklist /usr/bin/nspluginviewer + +* Mon Jul 26 2010 Jiri Moskovcak 1.1.10-2 +- minor build fixes + +* Mon Jul 26 2010 Jiri Moskovcak 1.1.10-1 +- blacklisted mono-core package +- die with an error message if the database plugin is not accessible when needed (kklic@redhat.com) +- change RHTSupport URL protocol from HTTP to HTTPS (dvlasenk@redhat.com) +- the Logger plugin returns a message as the result of Report() call instead of a file URL (kklic@redhat.com) +- Cut off prelink suffixes from executable name if any (mtoman@redhat.com) +- CCpp: abrt-debuginfo-install output lines can be long, accomodate them (dvlasenk@redhat.com) +- do not pop up message on crash if the same crash is the same (dvlasenk@redhat.com) +- fedora bugs do not depend on rhel bugs (npajkovs@redhat.com) +- GUI: fixed problem with no gkeyring and just one reporter enabled rhbz#612457 (jmoskovc@redhat.com) +- added a document about interpreted language integration (kklic@redhat.com) +- moved devel header files to inc/ and included them in -devel package (jmoskovc@redhat.com, npajkovs@redhat.com) +- renamed abrt-utils.pc to abrt.pc (jmoskovc@redhat.com) +- string updates based on a UI text review (kklic@redhat.com) +- rhtsupport obsoletes the old rh plugins (jmoskovc@redhat.com) +- list allowed items in RHTSupport.conf (kklic@redhat.com) +- GUI: fixed package name in warning message when the packge is kernel rhbz#612191 (jmoskovc@redhat.com) +- remove rating for python crashes (jmoskovc@redhat.com) +- CCpp: give zero rating to an empty backtrace (jmoskovc@redhat.com) +- GUI: allow sending crashes without rating (jmoskovc@redhat.com) +- RHTSupport: set default URL to api.access.redhat.com/rs (dvlasenk@redhat.com) +- abort initialization on abrt.conf parsing errors (dvlasenk@redhat.com) +- changing NoSSLVerify to SSLVerify in bugzilla plugin (mtoman@redhat.com) +- added rating to python crashes +- show hostname in cli (kklic@redhat.com) +- updated po files (jmoskovc@redhat.com) +- added support for package specific actions rhbz#606917 (jmoskovc@redhat.com) +- renamed TicketUploader to ReportUploader (jmoskovc@redhat.com) +- bad hostnames on remote crashes (npajkovs@redhat.com) +- unlimited MaxCrashReportsSize (npajkovs@redhat.com) +- abrt_rh_support: improve error messages rhbz#608698 (vda.linux@googlemail.com) +- Added BacktraceRemotes option. (kklic@redhat.com) +- Allow remote crashes to not to belong to a package. Skip GPG check on remote crashes. (kklic@redhat.com) +- remove obsolete Catcut and rhfastcheck reporters (vda.linux@googlemail.com) +- make rhel bug point to correct place rhbz#578397 (npajkovs@redhat.com) +- Show comment and how to reproduce fields when reporing crashes in abrt-cli (kklic@redhat.com) +- Bash completion update (kklic@redhat.com) +- Rename --get-list to --list (kklic@redhat.com) +- Update man page (kklic@redhat.com) +- Options overhaul (kklic@redhat.com) +- abrt should not point to Fedora bugs but create new RHEL bug instead (npajkovs@redhat.com) +- Don't show global uuid in report (npajkovs@redhat.com) +- GUI: don't try to use action plugins as reporters (jmoskovc@redhat.com) +- Added WatchCrashdumpArchiveDir directive to abrt.conf and related code (vda.linux@googlemail.com) +- GUI: don't show the placehondler icon rhbz#605693 (jmoskovc@redhat.com) +- Make "Loaded foo.conf" message less confusing (vda.linux@googlemail.com) +- Fixed a flaw in strbuf_prepend_str (kklic@redhat.com) +- TicketUploader: do not add '\n' to text files in crashdump (vda.linux@googlemail.com) +- GUI: skip the plugin selection, if it's not needed (jmoskovc@redhat.com) +- Check conf file for syntax errors (kklic@redhat.com) +- move misplaced sanity checks in cron parser (vda.linux@googlemail.com) +- GUI: don't require the rating for all reporters (jmoskovc@redhat.com) +- GUI: fixed exception when there is no configure dialog for plugin rhbz#603745 (jmoskovc@redhat.com) +- Add a GUI config dialog for RHTSupport plugin (vda.linux@googlemail.com) +- abrt_curl: fix a problem with incorrect content-length on 32-bit arches (vda.linux@googlemail.com) +- sosreport: save the dump directly to crashdump directory (vda.linux@googlemail.com) +- plugin rename: rhticket -> RHTSupport (vda.linux@googlemail.com) +- Daemon socket for reporting crashes (karel@localhost.localdomain) +- GUI: fixed few typos (jmoskovc@redhat.com) + +* Wed Jul 21 2010 David Malcolm - 1.1.5-1.1 +- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild + +* Wed Jun 09 2010 Jiri Moskovcak 1.1.5-1 +- GUI: polished the reporter assistant (jmoskovc@redhat.com) +- Logger reporter: do not store useless info (vda.linux@googlemail.com) +- ccpp hook: add SaveBinaryImage option which saves of the crashed binary (vda.linux@googlemail.com) +- SPEC: added CFLAGS="-fno-strict-aliasing" to fix the rpmdiff warnings rhbz#599364 (jmoskovc@redhat.com) +- GUI: don't remove user comments when re-reporting the bug rhbz#601779 (jmoskovc@redhat.com) +- remove "(deleted)" from executable path rhbz#593037 (jmoskovc@redhat.com) +- CCpp analyzer: add 60 sec cap on gdb run time. (vda.linux@googlemail.com) +- add new file *hostname* into debugdump directory (npajkovs@redhat.com) +- rhticket: upload real tarball, not a bogus file (vda.linux@googlemail.com) +- abrt-hook-ccpp: eliminate race between process exit and compat coredump creation rhbz#584554 (vda.linux@googlemail.com) +- rhticket: actually do create ticket, using Gavin's lib code (vda.linux@googlemail.com) +- properly obsolete gnome-python2-bugbuddy rhbz#579748 (jmoskovc@redhat.com) +- GUI: remember comment and howto on backtrace refresh rhbz#545690 (jmoskovc@redhat.com) +- use header case in button label rhbz#565812 (jmoskovc@redhat.com) +- make log window resizable (vda.linux@googlemail.com) +- rename a few remaining /var/cache/abrt -> /var/spool/abrt (vda.linux@googlemail.com) + +* Wed May 26 2010 Jiri Moskovcak 1.1.4-1 +- added reporting wizard +- fixed few leaked fds +- fixed kerneloops --- cut here --- problem +- updated translations + +* Fri May 21 2010 Denys Vlasenko 1.1.3-1 +- More fixes for /var/cache/abrt -> /var/spool/abrt conversion + +* Fri May 21 2010 Jiri Moskovcak 1.1.2-3 +- fixed spec file to create /var/spool/abrt rhbz#593670 +- updated init script to reflect the pid file renaming + +* Wed May 19 2010 Jiri Moskovcak 1.1.2-1 +- updated translation +- obsolete gnome-python2-bugbuddy rhbz#579748 (jmoskovc@redhat.com) +- Report "INFO: possible recursive locking detected rhbz#582378 (vda.linux@googlemail.com) +- kill yumdownloader if abrt-debuginfo-install is terminated mid-flight (vda.linux@googlemail.com) +- do not create Python dumps if argv[0] is not absolute (vda.linux@googlemail.com) +- improve kerneloops hash (vda.linux@googlemail.com) +- Move /var/cache/abrt to /var/spool/abrt. rhbz#568101. (vda.linux@googlemail.com) +- bugzilla: better summary and decription messages (npajkovs@redhat.com) +- renamed daemon pid and lock file rhbz#588315 (jmoskovc@redhat.com) +- Daemon socket for reporting crashes (kklic@redhat.com) +- Move hooklib from src/Hooks to lib/Utils (kklic@redhat.com) + +* Thu May 13 2010 Jiri Moskovcak 1.1.1-1 +- updated translations +- removed avant-window-navigator from blacklist (jmoskovc@redhat.com) +- Abort debuginfo download if low on disk space (partially addresses #564451) (vda.linux@googlemail.com) +- fix bug 588945 - sparse core files performance hit (vda.linux@googlemail.com) +- Add BlackListedPaths option to abrt.conf. Fixes #582421 (vda.linux@googlemail.com) +- Do not die when /var/cache/abrt/*/uid does not contain a number (rhbz#580899) (kklic@redhat.com) +- rid of rewriting config in /etc/abrt/abrt.conf (npajkovs@redhat.com) +- fix bug 571411: backtrace attachment of the form /var/cache/abrt/foo-12345-67890/backtrace (vda.linux@googlemail.com) +- Do not echo password to terminal in abrt-cli (kklic@redhat.com) +- improved daemon error messages (kklic@redhat.com) + +* Mon May 03 2010 Jiri Moskovcak 1.1.0-1 +- updated transaltions +- added Hebrew into languages +- updated icons rhbz#587698 (jmoskovc@redhat.com) +- Bugzilla login/password emptiness check uses 'or' instead of 'and' (kklic@redhat.com) +- Show error message when abrtd service is run as non-root. rhbz#584352 (kklic@redhat.com) +- Rename EnableOpenGPG to OpenGPGCheck in the man page rhbz#584332 (kklic@redhat.com) +- Document ProcessUnpackaged in abrt.conf.5. Document default values. (kklic@redhat.com) +- Crash function is now detected even for threads without an abort frame (kklic@redhat.com) +- comment can be private (npajkovs@redhat.com) +- do not catch perl/python crashes when the script is not of known package origin (kklic@redhat.com) +- kerneloop is more informative when failed (npajkovs@redhat.com) +- add function name into summary(if it's found) (npajkovs@redhat.com) +- Change kerneloops message when it fails (npajkovs@redhat.com) + +* Fri Apr 30 2010 Karel Klic 1.0.9-3 +- fixed crash function detection (a part of duplication detection) + +* Wed Apr 14 2010 Jiri Moskovcak 1.0.9-2 +- fixed problem with localized yum messages rhbz#581804 +- better bugzilla summary (napjkovs@redhat.com) +- ignore interpreter (py,perl) crashes caused by unpackaged scripts (kklic@redhat.com) + +* Tue Apr 06 2010 Jiri Moskovcak 1.0.9-1 +- hooklib: fix excessive rounding down in free space calculation (bz#575644) (vda.linux@googlemail.com) +- gui: fix 551989 "crash detected in abrt-gui-1.0.0-1.fc12" and such (vda.linux@googlemail.com) +- trivial: fix 566806 "abrt-gui sometimes can't be closed" (vda.linux@googlemail.com) +- gui: fix the last case where gnome-keyring's find_items_sync() may throw DeniedError (vda.linux@googlemail.com) +- fixed some compilation problems on F13 (jmoskovc@redhat.com) +- updated translations (jmoskovc@redhat.com) +- minor fix to sosreport to make it work with latest sos rhbz#576861 (jmoskovc@redhat.com) + +* Wed Mar 31 2010 Jiri Moskovcak 1.0.9-0.201003312045.1 +- test day build +- updated translation +- minor fix to sosreport to make it work with latest sos rhbz#576861 (jmoskovc@redhat.com) +- GUI: total rewrite based on design from Mairin Duffy (jmoskovc@redhat.com) +- trivial: better HTTP/curl error reporting (vda.linux@googlemail.com) +- Use backtrace parser from abrtutils, new backtrace rating algorithm, store crash function if it's known (kklic@redhat.com) +- abrt-rate-backtrace is replaced by abrt-backtrace --rate (kklic@redhat.com) +- Ignore some temp files (kklic@redhat.com) +- PYHOOK: don't use sitecustomize.py rhbz#539497 (jmoskovc@redhat.com) +- rhfastcheck: a new reporter plugin based on Gavin's work (vda.linux@googlemail.com) +- rhticket: new reporter plugin (vda.linux@googlemail.com) +- GUI: fixed few window icons (jmoskovc@redhat.com) +- Allow user to select which reporter he wants to use to report a crash using CLI.(kklic@redhat.com) +- bz reporter: s/uuid/duphash; more understandable message; simplify result str generation; fix indentation (vda.linux@googlemail.com) +- GUI: fixed crash count column sorting rhbz#573139 (jmoskovc@redhat.com) +- Kerneloops: use 1st line of oops as REASON. Closes rhbz#574196. (vda.linux@googlemail.com) +- Kerneloops: fix a case when we file an oops w/o backtrace (vda.linux@googlemail.com) +- minor fix in abrt-debuginfo-install to make it work with yum >= 3.2.26 (jmoskovc@redhat.com) +- GUI: added action to applet to directly report last crash (jmoskovc@redhat.com) +- Never flag backtrace as binary file (fixes problem observed in bz#571411) (vda.linux@googlemail.com) +- improve syslog file detection. closes bz#565983 (vda.linux@googlemail.com) +- add arch, package and release in comment (npajkovs@redhat.com) +- add ProcessUnpackaged option to abrt.conf (vda.linux@googlemail.com) +- abrt-debuginfo-install: use -debuginfo repos which match enabled "usual" repos (vda.linux@googlemail.com) +- fix format security error (fcrozat@mandriva.com) +- icons repackaging (jmoskovc@redhat.com) +- partial fix for bz#565983 (vda.linux@googlemail.com) +- SPEC: Updated source URL (jmoskovc@redhat.com) +- removed unneeded patches +- and much more ... + +* Sat Mar 13 2010 Jiri Moskovcak 1.0.8-3 +- fixed kerneloops reporting rhbz#570081 +- fixed Source url +- fixed debuginfo-install to work on F13 + - improved debuginfo-install (vda.linux@googlemail.com) + - fix debuginfo-install to work with yum >= 3.2.26 (jmoskovc@redhat.com) + +* Wed Mar 3 2010 Denys Vlasenko 1.0.8-2 +- fix initscript even more (npajkovs@redhat.com) +- remove -R2 from yum command line + +* Mon Feb 22 2010 Jiri Moskovcak 1.0.8-1 +- fix initscript (npajkovs@redhat.com) +- Kerneloops: make hashing more likely to produce same hash on different oopses (vda.linux@googlemail.com) + +* Mon Feb 22 2010 Jiri Moskovcak 1.0.8-0.git-20100222 +- Kerneloops: make hashing more likely to produce same hash on different oopses (vda.linux@googlemail.com) +- make abrt work with the latest kernels (>= 2.6.33) (jmoskovc@redhat.com) +- lib/Utils/abrt_dbus: utf8-sanitize all strings in dbus messages (fixes #565876) (vda.linux@googlemail.com) + +* Fri Feb 12 2010 Jiri Moskovcak 1.0.7-1 +- enabled column sorting rhbz#541853 +- Load plugin settings also from ~/.abrt/*.conf (kklic@redhat.com) +- fix bz#541088 "abrt should not catch python excp EPIPE" (vda.linux@googlemail.com) +- fix bz#554242 "Cannot tab between input areas in report dialog" (vda.linux@googlemail.com) +- fix bz#563484 "abrt uses unnecessary disk space when getting debug info" (vda.linux@googlemail.com) +- Don't show empty 'Not loaded plugins' section - fix#2 rhbz#560971 (jmoskovc@redhat.com) +- fix big-endian build problem (vda.linux@googlemail.com) +- Fixes, displays package owners (kklic@redhat.com) +- GUI: fixed exception in plugin settings dialog rhbz#560851 (jmoskovc@redhat.com) +- GUI: respect system settings for toolbars rhbz#552161 (jmoskovc@redhat.com) +- python hook: move UUID generation to abrtd; generate REASON, add it to bz title (vda.linux@googlemail.com) +- make "reason" field less verbose; bz reporter: include it in "summary" (vda.linux@googlemail.com) +- added avant-window-navigator to blacklist per maintainer request (jmoskovc@redhat.com) +- CCpp analyzer: fix rhbz#552435 (bt rating misinterpreting # chars) (vda.linux@googlemail.com) +- Ask for login and password if missing from reporter plugin. (kklic@redhat.com) +- abrtd: fix handling of dupes (weren't deleting dup's directory); better logging (vda.linux@googlemail.com) +- abrtd: handle "perl -w /usr/bin/script" too (vda.linux@googlemail.com) +- Component-wise duplicates (kklic@redhat.com) +- abrtd: fix rhbz#560642 - don't die on bad plugin names (vda.linux@googlemail.com) +- Fixed parsing backtrace from rhbz#549293 (kklic@redhat.com) +- GUI: fixed scrolling in reporter dialog rhbz#559687 (jmoskovc@redhat.com) +- fixed button order in plugins windows rhbz#560961 (jmoskovc@redhat.com) +- GUI: fixed windows icons and titles rhbz#537240, rhbz#560964 (jmoskovc@redhat.com) +- Fix to successfully parse a backtrace from rhbz#550642 (kklic@redhat.com) +- cli: fix the problem of not showing oops text in editor (vda.linux@googlemail.com) +- GUI: fix rhbz#560971 "Don't show empty 'Not loaded plugins' section" (vda.linux@googlemail.com) + +* Tue Feb 2 2010 Jiri Moskovcak 1.0.6-1 +- print __glib_assert_msg (rhbz#549735); +- SPEC: added some requires to abrt-cli to make it work out-of-the-box (jmoskovc@redhat.com) +- abrt-hook-ccpp: fix rhbz#560612 "limit '18446744073709551615' is bogus" rhbz#560612(vda.linux@googlemail.com) +- APPLET: don't show the icon when abrtd is not running rhbz#557866 (jmoskovc@redhat.com) +- GUI: made report message labels wrap (jmoskovc@redhat.com) +- GUI: don't die if daemon doesn't send the gpg keys (jmoskovc@redhat.com) +- disabled the autoreporting of kerneloopses (jmoskovc@redhat.com) +- Kerneloops: fix BZ reporting of oopses (vda.linux@googlemail.com) +- GUI: wider report message dialog (jmoskovc@redhat.com) +- moved the gpg key list from abrt.conf to gpg_keys file (jmoskovc@redhat.com) +- Logger: create log file with mode 0600 (vda.linux@googlemail.com) +- GUI: fixed the rating logic, to prevent sending BT with rating < 3 (jmoskovc@redhat.com) +- Report GUI: made more fields copyable - closed rhbz#526209; tweaked wording (vda.linux@googlemail.com) +- GUI: fixed bug caused by failed gk-authorization (jmoskovc@redhat.com) + +* Fri Jan 29 2010 Jiri Moskovcak 1.0.5-1 +- moved the gpg key list from abrt.conf to gpg_keys file (jmoskovc@redhat.com) +- Logger: create log file with mode 0600 rhbz#559545 (vda.linux@googlemail.com) +- GUI: fixed the rating logic, to prevent sending BT with rating < 3 (jmoskovc@redhat.com) +- Report GUI: made more fields copyable - closed rhbz#526209; tweaked wording (vda.linux@googlemail.com) +- GUI: fixed bug caused by failed gk-authorization (jmoskovc@redhat.com) +- fix bug 559881 (kerneloops not shown in "new" GUI) (vda.linux@googlemail.com) +- GUI ReporterDialog: hide log button (vda.linux@googlemail.com) +- added valgrind and strace to blacklist (jmoskovc@redhat.com) +- SOSreport: do not leave stray files in /tmp (vda.linux@googlemail.com) +- Save the core where it belongs if ulimit -c is > 0 (jmoskovc@redhat.com) +- reenabled gpg check (jmoskovc@redhat.com) +- SOSreport: run it niced (vda.linux@googlemail.com) +- report GUI: rename buttons: Log -> Show log, Send -> Send report (vda.linux@googlemail.com) +- applet: reduce blinking timeout to 3 sec (vda.linux@googlemail.com) +- fix dbus autostart (vda.linux@googlemail.com) +- abrtd: set "Reported" status only if at least one reporter succeeded (vda.linux@googlemail.com) +- SQLite3: disable newline escaping, SQLite does not handle it (vda.linux@googlemail.com) +- SOSreport: make it avoid double runs; add forced regeneration; upd PLUGINS-HOWTO (vda.linux@googlemail.com) +- attribute SEGVs in perl to script's package, like we already do for python (vda.linux@googlemail.com) + +* Wed Jan 20 2010 Jiri Moskovcak 1.0.4-1 +- enabled sosreport +- fixes in ticketuploader +- GUI: redesign of reporter dialog (jmoskovc@redhat.com) +- Set the prgname to "Automatic Bug Reporting Tool" fixes rhbz#550357 (jmoskovc@redhat.com) +- CCpp analyzer: display __abort_msg in backtrace. closes rhbz#549735 (vda.linux@googlemail.com) +- s/os.exit/sys.exit - closes rhbz#556313 (vda.linux@googlemail.com) +- use repr() to print variable values in python hook rhbz#545070 (jmoskovc@redhat.com) +- gui: add logging infrastructure (vda.linux@googlemail.com) +- Added "Enabled = yes" to all plugin's config files (jmoskovc@redhat.com) +- *: disable plugin loading/unloading through GUI. Document keyring a bit (vda.linux@googlemail.com) +- fix memory leaks in catcut plugin (npajkovs@redhat.com) +- fix memory leaks in bugzilla (npajkovs@redhat.com) +- abrt-hook-python: sanitize input more; log to syslog (vda.linux@googlemail.com) +- Fixed /var/cache/abrt/ permissions (kklic@redhat.com) +- Kerneloops: we require commandline for every crash, save dummy one for oopses (vda.linux@googlemail.com) +- *: remove nss dependencies (vda.linux@googlemail.com) +- CCpp: use our own sha1 implementation (less pain with nss libs) (vda.linux@googlemail.com) +- DebugDump: more consistent logic in setting mode and uid:gid on dump dir (vda.linux@googlemail.com) +- fixes based on security review (vda.linux@googlemail.com) +- SOSreport/TicketUploader: use more restrictive file modes (vda.linux@googlemail.com) +- abrt-hook-python: add input sanitization and directory size guard (vda.linux@googlemail.com) +- RunApp: safer chdir. Overhauled "sparn a child and get its output" in general (vda.linux@googlemail.com) +- DebugDump: use more restrictive modes (vda.linux@googlemail.com) +- SQLite3: check for SQL injection (vda.linux@googlemail.com) +- replace plugin enabling via EnabledPlugins by par-plugin Enabled = yes/no (vda.linux@googlemail.com) +- abrt.spec: move "requires: gdb" to abrt-desktop (vda.linux@googlemail.com) +- ccpp: add a possibility to disable backtrace generation (vda.linux@googlemail.com) +- abrtd: limit the number of frames in backtrace to 3000 (vda.linux@googlemail.com) + +* Tue Jan 5 2010 Jiri Moskovcak 1.0.3-1 +- speed optimalization of abrt-debuginfo-install (jmoskovc@redhat.com) +- updated credits (jmoskovc@redhat.com) +- GUI: fixed crash when abrt-gui is run without X server rhbz#552039 (jmoskovc@redhat.com) +- abrt-backtrace manpage installed (kklic@redhat.com) +- cmdline and daemon checking is done by abrt-python-hook (kklic@redhat.com) +- moved get_cmdline() and daemon_is_ok() to abrtlib (kklic@redhat.com) +- large file support for whole abrt (kklic@redhat.com) +- made s_signal_caught volatile (vda.linux@googlemail.com) +- abrt-debuginfo-install: fixes for runs w/o cachedir (vda.linux@googlemail.com) +- remove unsafe log() from signal handler (vda.linux@googlemail.com) +- src/Hooks/CCpp.cpp: use and honour 'c' (core limit size). (vda.linux@googlemail.com) +- lib/Plugins/CCpp.cpp: save gdb error messages too (vda.linux@googlemail.com) +- prevent destructors from throwing exceptions; check curl_easy_init errors (vda.linux@googlemail.com) +- don't blame python for every crash in /usr/bin/python rhbz#533521 trac#109 (jmoskovc@redhat.com) +- GUI: autoscroll log window (jmoskovc@redhat.com) +- Kerneloops.conf: better comments (vda.linux@googlemail.com) +- applet: reduce blinking time to 30 seconds (vda.linux@googlemail.com) +- add paranoia checks on setuid/setgid (vda.linux@googlemail.com) +- more "obviously correct" code for secure opening of /dev/null (vda.linux@googlemail.com) +- get rid of ugly sleep call inside while() (vda.linux@googlemail.com) + +* Mon Dec 14 2009 Jiri Moskovcak 1.0.2-1 +- disabled GPG check again (jmoskovc@redhat.com) +- abrt-pyhook-helper rename (vda.linux@googlemail.com) +- abrt-cli: report success/failure of reporting. closes bug 71 (vda.linux@googlemail.com) +- less logging (vda.linux@googlemail.com) +- mkde abrt-gui --help and --version behave as expected. closes bug 85 (vda.linux@googlemail.com) +- dbus lib: fix parsing of 0-element arrays. Fixes bug 95 (vda.linux@googlemail.com) +- make "abrt-cli --delete randomuuid" report that deletion failed. closes bug 59 (vda.linux@googlemail.com) +- applet: make animation stop after 1 minute. (closes bug 108) (vda.linux@googlemail.com) +- show comment and how to reproduce fields, when BT rating > 3 (jmoskovc@redhat.com) +- Gui: make report status window's text wrap. Fixes bug 82 (vda.linux@googlemail.com) +- CCpp analyzer: added "info sharedlib" (https://fedorahosted.org/abrt/ticket/90) (vda.linux@googlemail.com) +- added link to bugzilla new account page to Bugzilla config dialog (jmoskovc@redhat.com) +- GUI: added log window (jmoskovc@redhat.com) + +* Tue Dec 8 2009 Jiri Moskovcak 1.0.1-1 +- PyHook: better logic for checking if abrtd is running rhbz#539987 (jmoskovc@redhat.com) +- re-enabled gpg sign checking (jmoskovc@redhat.com) +- PyHook: use repr() for displaying variables rhbz#545070 (jmoskovc@redhat.com) +- kerneloops: fix the linux kernel version identification (aarapov@redhat.com) +- gui review (rrakus@redhat.com) +- when we trim the dir, we must delete it from DB too rhbz#541854 (vda.linux@googlemail.com) +- improved dupe checking (kklic@redhat.com) +- GUI: handle cases when gui fails to start daemon on demand rhbz#543725 (jmoskovc@redhat.com) +- Add abrt group only if it is missing; fixes rhbz#543250 (kklic@redhat.com) +- GUI: more string fixes rhbz#543266 (jmoskovc@redhat.com) +- abrt.spec: straighten out relations between abrt-desktop and abrt-gui (vda.linux@googlemail.com) +- refuse to start if some required plugins are missing rhbz#518422 (vda.linux@googlemail.com) +- GUI: survive gnome-keyring access denial rhbz#543200 (jmoskovc@redhat.com) +- typo fixes rhbz#543266 (jmoskovc@redhat.com) +- abrt-debuginfo-install: better fix for incorrect passing double quotes (vda.linux@googlemail.com) +- APPLET: stop animation when it's not needed rhbz#542157 (jmoskovc@redhat.com) +- ccpp hook: reanme it, and add "crash storm protection" (see rhbz#542003) (vda.linux@googlemail.com) +- Hooks/CCpp.cpp: add MakeCompatCore = yes/no directive. Fixes rhbz#541707 (vda.linux@googlemail.com) +- SPEC: removed sqlite3 package, fixed some update problems (jmoskovc@redhat.com) +- Kerneloops are reported automaticky now when AutoReportUIDs = root is in Kerneloops.conf (npajkovs@redhat.com) +- remove word 'detected' from description rhbz#541459 (vda.linux@googlemail.com) +- src/Hooks/CCpp.cpp: do save abrtd's own coredumps, but carefully... (vda.linux@googlemail.com) +- CCpp.cpp: quote parameters if needed rhbz#540164 (vda.linux@googlemail.com) + +* Fri Nov 20 2009 Jiri Moskovcak 1.0.0-1 +- new version +- comment input wraps words rhbz#531276 +- fixed hiding password dialog rhbz#529583 +- easier kerneloops reporting rhbz#528395 +- made menu entry translatable rhbz#536878 (jmoskovc@redhat.com) +- GUI: don't read the g-k every time we want to use the setting (jmoskovc@redhat.com) +- GUI: survive if g-k access is denied rhbz#534171 (jmoskovc@redhat.com) +- include more info into oops (we were losing the stack dump) (vda.linux@googlemail.com) +- make BZ insert small text attachments inline; move text file detection code (vda.linux@googlemail.com) +- GUI: fixed text wrapping in comment field rhbz#531276 (jmoskovc@redhat.com) +- GUI: added cancel to send dialog rhbz#537238 (jmoskovc@redhat.com) +- include abrt version in bug descriptions (vda.linux@googlemail.com) +- ccpp hook: implemented ReadonlyLocalDebugInfoDirs directive (vda.linux@googlemail.com) +- GUI: added window icon rhbz#537240 (jmoskovc@redhat.com) +- add support for \" escaping in config file (vda.linux@googlemail.com) +- add experimental saving of /var/log/Xorg*.log for X crashes (vda.linux@googlemail.com) +- APPLET: changed icon from default gtk-warning to abrt specific, add animation (jmoskovc@redhat.com) +- don't show icon on abrtd start/stop rhbz#537630 (jmoskovc@redhat.com) +- /var/cache/abrt permissions 1775 -> 0775 in spec file (kklic@redhat.com) +- Daemon properly checks /var/cache/abrt attributes (kklic@redhat.com) +- abrt user group; used by abrt-pyhook-helper (kklic@redhat.com) +- pyhook-helper: uid taken from system instead of command line (kklic@redhat.com) +- KerneloopsSysLog: fix breakage in code which detects abrt marker (vda.linux@googlemail.com) +- GUI: added support for backtrace rating (jmoskovc@redhat.com) +- InformAllUsers support. enabled by default for Kerneloops. Tested wuth CCpp. (vda.linux@googlemail.com) +- abrtd: call res_init() if /etc/resolv.conf or friends were changed rhbz#533589 (vda.linux@googlemail.com) +- supress errors in python hook to not colide with the running script (jmoskovc@redhat.com) + +* Tue Nov 10 2009 Jiri Moskovcak 0.0.11-2 +- spec file fixes + +* Mon Nov 2 2009 Jiri Moskovcak 0.0.11-1 +- re-enabled kerneloops +- abrt-debuginfo-install: download packages one-by-one - better logging (vda.linux@googlemail.com) +- do not report empty fields (vda.linux@googlemail.com) +- Added abrt.png, fixed rhbz#531181 (jmoskovc@redhat.com) +- added option DebugInfoCacheMB to limit size of unpacked debuginfos (vda.linux@googlemail.com) +- fixed the problem with overwriting the default plugin settings (jmoskovc@redhat.com) +- disabled kerneloops in config file (jmoskovc@redhat.com) +- added dependency to gdb >= 7.0 (jmoskovc@redhat.com) +- better format of report text (vda.linux@googlemail.com) +- Python backtrace size limited to 1 MB (kklic@redhat.com) +- lib/Plugins/Bugzilla: better message at login failure (vda.linux@googlemail.com) +- build fixes, added plugin-logger to abrt-desktop (jmoskovc@redhat.com) +- blacklisted nspluginwrapper, because it causes too many useless reports (jmoskovc@redhat.com) +- GUI: Wrong settings window is not shown behind the reporter dialog rhbz#531119 (jmoskovc@redhat.com) +- Normal user can see kerneloops and report it Bugzilla memory leaks fix (npajkovs@redhat.com) +- dumpoops: add -s option to dump results to stdout (vda.linux@googlemail.com) +- removed kerneloops from abrt-desktop rhbz#528395 (jmoskovc@redhat.com) +- GUI: fixed exception when enabling plugin rhbz#530495 (jmoskovc@redhat.com) +- Improved abrt-cli (kklic@redhat.com) +- Added backtrace rating to CCpp analyzer (dnovotny@redhat.com) +- GUI improvements (jmoskovc@redhat.com) +- Added abrt-pyhook-helper (kklic@redhat.com) + +* Thu Oct 15 2009 Jiri Moskovcak 0.0.10-1 +- new version +- added more logging (vda.linux@googlemail.com) +- made polkit policy to be more permissive when installing debuginfo (jmoskovc@redhat.com) +- lib/Plugins/CCpp.cpp: add build-ids to backtrace (vda.linux@googlemail.com) +- lib/Plugins/CCpp.cpp: do not use temp file for gdb commands - use -ex CMD instead (vda.linux@googlemail.com) +- GUI: added refresh button, added sanity check to plugin settings (jmoskovc@redhat.com) +- Initial man page for abrt-cli (kklic@redhat.com) +- Added --version, -V, --help, -? options. Fixed crash caused by unknown option. (kklic@redhat.com) +- Date/time honors current system locale (kklic@redhat.com) +- fixed saving/reading user config (jmoskovc@redhat.com) +- SPEC: added gnome-python2-gnomekeyring to requirements (jmoskovc@redhat.com) +- GUI: call Report() with the latest pluginsettings (jmoskovc@redhat.com) +- Fix Bug 526220 - [abrt] crash detected in abrt-gui-0.0.9-2.fc12 (vda.linux@googlemail.com) +- removed unsecure reading/writting from ~HOME directory rhbz#522878 (jmoskovc@redhat.com) +- error checking added to archive creation (danny@rawhide.localdomain) +- try using pk-debuginfo-install before falling back to debuginfo-install (vda.linux@googlemail.com) +- abrt-gui: make "report" toolbar button work even if abrtd is not running (vda.linux@googlemail.com) +- set LIMIT_MESSAGE to 16k, typo fix and daemon now reads config information from dbus (npajkovs@redhat.com) +- add support for abrtd autostart (vda.linux@googlemail.com) +- GUI: reversed the dumplist, so the latest crashes are at the top (jmoskovc@redhat.com) +- rewrite FileTransfer to use library calls instead of commandline calls for compression (dnovotny@redhat.com) +- and many minor fixes .. + +* Wed Sep 23 2009 Jiri Moskovcak 0.0.9-2 +- added bug-buddy to provides rhbz#524934 + +* Tue Sep 22 2009 Jiri Moskovcak 0.0.9-1 +- new version +- comments and how to reproduce are stored now (npajkovs@redhat.com) +- reduce verbosity a bit (vda.linux@googlemail.com) +- GUI: fixed word wrap in Comment field rhbz#524349 (jmoskovc@redhat.com) +- remove last vestives of dbus-c++ from build system (vda.linux@googlemail.com) +- GUI: added popup menu, fixed behaviour when run with root privs (jmoskovc@redhat.com) +- add dbus signalization when quota exceeded (npajkovs@redhat.com) +- Added cleaning of attachment variable, so there should not be mixed attachmetn anymore. (zprikryl@redhat.com) +- fixed closing of debug dump in case of existing backtrace (zprikryl@redhat.com) +- remove C++ dbus glue in src/CLI; fix a bug in --report (vda.linux@googlemail.com) +- new polkit action for installing debuginfo, default "yes" (danny@rawhide.localdomain) +- Polkit moved to Utils (can be used both in daemon and plugins) (danny@rawhide.localdomain) +- oops... remove stray trailing '\' (vda.linux@googlemail.com) +- GUI: added missing tooltips (jmoskovc@redhat.com) +- PYHOOK: ignore KeyboardInterrupt exception (jmoskovc@redhat.com) +- added ticket uploader plugin (gavin@redhat.com) (zprikryl@redhat.com) +- GUI: added UI for global settings (just preview, not usable!) (jmoskovc@redhat.com) +- Add checker if bugzilla login and password are filled in. (npajkovs@redhat.com) +- Add new config option InstallDebuginfo into CCpp.conf (npajkovs@redhat.com) +- translation updates +- many other fixes + +* Fri Sep 4 2009 Jiri Moskovcak 0.0.8.5-1 +- new version +- APPLET: added about dialog, removed popup, if icon is not visible, fixed (trac#43) (jmoskovc@redhat.com) +- renamed abrt to abrtd, few minor spec file fixes (jmoskovc@redhat.com) +- Made abrt service start by deafult (jmoskovc@redhat.com) +- add gettext support for all plugins (npajkovs@redhat.com) +- APPLET: removed the warning bubble about not running abrt service (walters) +- APPLET: changed tooltip rhbz#520293 (jmoskovc@redhat.com) +- CommLayerServerDBus: rewrote to use dbus, not dbus-c++ (vda.linux@googlemail.com) +- fixed timeout on boot causing [ FAILED ] message (vda.linux@googlemail.com) +- and many other fixes + +* Wed Sep 02 2009 Colin Walters 0.0.8-2 +- Change Conflicts: kerneloops to be an Obsoletes so we do the right thing + on upgrades. Also add an Obsoletes: bug-buddy. + +* Wed Aug 26 2009 Jiri Moskovcak 0.0.8-1 +- new version +- resolved: Bug 518420 - ordinary user's abrt-applet shows up for root owned crashes (npajkovs) +- GUI: added support for gettext (+part of czech translation) (jmoskovc) +- added support for saving settings (zprikryl) +- fixed conf: comment in the middle of the line isn't supported anymore (zprikryl) +- BZ#518413 PATCH ... furious kerneloops reporting (aarapov) +- GUI: added first part of support for gettext (jmoskovc) +- add new parameter to FileTransfer plugin (dnovotny) +- added support for updating abrt's table (zprikryl) +- added check for cc-list and reporter. +1 is created iff reporter is somebody else and current user isn't in cc list. (zprikryl) +- GUI: few improvements, to be more userfriendly (jmoskovc) +- LOGGER: return valid uri of the log file on succes (jmoskovc) +- GUI: bring the GUI up to front instead of just blinking in taskbar (trac#60, rhbz#512390) (jmoskovc) +- Try to execute $bindir/abrt-gui, then fall back to $PATH search. Closes bug 65 (vda.linux) +- APPLET: added popup menu (trac#37, rhbz#518386) (jmoskovc) +- Improved report results (zprikryl) +- Fixed sigsegv (#rhbz 518609) (zprikryl) +- GUI: removed dependency on libsexy if gtk2 >= 2.17 (jmoskovc) +- fixed signature check (zprikryl) +- KerneloopsSysLog: check line length to be >= 4 before looking for "Abrt" (vda.linux) +- Comment cannot start in the middle of the line. Comment has to start by Char # (first char in the line) (zprikryl) +- command mailx isn't run under root anymore. (zprikryl) +- GUI: added horizontal scrolling to report window (jmoskovc) +- GUI: added clickable link to "after report" status window (jmoskovc) +- added default values for abrt daemon (zprikryl) +- Plugins/CCpp: remove trailing \n from debuginfo-install's output (vda.linux) +- explain EnableGPGCheck option better (vda.linux) +- mailx: correct English (vda.linux) +- Bugzilla.conf: correct English (vda.linux) +- GUI: nicer after report message (jmoskovc) +- BZ plugin: removed /xmlrpc.cgi from config, made the report message more user friendly (jmoskovc) +- CCpp plugin: do not abort if debuginfos aren't found (vda.linux) +- abrt.spec: bump version to 0.0.7-2 (vda.linux) +- mailx removed dangerous parameter option (zprikryl) +- minimum timeout is 1 second (zprikryl) +- in case of plugin error, don't delete debug dumps (zprikryl) +- abrt-gui: fix crash when run by root (vda.linux) +- and lot more in git log ... + +* Thu Aug 20 2009 Jiri Moskovcak 0.0.7.2-1 +- new version +- fixed some bugs found during test day + +* Wed Aug 19 2009 Jiri Moskovcak 0.0.7.1-1 +- fixes to bugzilla plugin and gui to make the report message more user-friendly + +* Tue Aug 18 2009 Denys Vlasenko 0.0.7-2 +- removed dangerous parameter option +- minimum plugin activation period is 1 second +- in case of plugin error, don't delete debug dumps +- abrt-gui: fix crash when run by root +- simplify parsing of debuginfo-install output + +* Tue Aug 18 2009 Jiri Moskovcak 0.0.7-1 +- new version +- added status window to show user some info after reporting a bug + +* Mon Aug 17 2009 Denys Vlasenko 0.0.6-1 +- new version +- many fixes + +* Fri Jul 24 2009 Fedora Release Engineering - 0.0.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Jun 25 2009 Jiri Moskovcak 0.0.4-3 +- fixed dependencies in spec file + +* Tue Jun 16 2009 Daniel Novotny 0.0.4-2 +- added manual pages (also for plugins) + +* Mon Jun 15 2009 Jiri Moskovcak 0.0.4-1 +- new version +- added cli (only supports sockets) +- added python hook +- many fixes + +* Fri Apr 10 2009 Jiri Moskovcak 0.0.3-1 +- new version +- added bz plugin +- minor fix in reporter gui +- Configurable max size of debugdump storage rhbz#490889 +- Wrap lines in report to keep the window sane sized +- Fixed gui for new daemon API +- removed unneeded code +- removed dependency on args +- new guuid hash creating +- fixed local UUID +- fixed debuginfo-install checks +- renamed MW library +- Added notification thru libnotify +- fixed parsing settings of action plugins +- added support for action plugins +- kerneloops - plugin: fail gracefully. +- Added commlayer to make dbus optional +- a lot of kerneloops fixes +- new approach for getting debuginfos and backtraces +- fixed unlocking of a debugdump +- replaced language and application plugins by analyzer plugin +- more excetpion handling +- conf file isn't needed +- Plugin's configuration file is optional +- Add curl dependency +- Added column 'user' to the gui +- Gui: set the newest entry as active (ticket#23) +- Delete and Report button are no longer active if no entry is selected (ticket#41) +- Gui refreshes silently (ticket#36) +- Added error reporting over dbus to daemon, error handling in gui, about dialog + +* Wed Mar 11 2009 Jiri Moskovcak 0.0.2-1 +- added kerneloops addon to rpm (aarapov) +- added kerneloops addon and plugin (aarapov) +- Made Crash() private +- Applet requires gui, removed dbus-glib deps +- Closing stdout in daemon rhbz#489622 +- Changed applet behaviour according to rhbz#489624 +- Changed gui according to rhbz#489624, fixed dbus timeouts +- Increased timeout for async dbus calls to 60sec +- deps cleanup, signal AnalyzeComplete has the crashreport as an argument. +- Fixed empty package Description. +- Fixed problem with applet tooltip on x86_64 + +* Wed Mar 4 2009 Jiri Moskovcak 0.0.1-13 +- More renaming issues fixed.. +- Changed BR from gtkmm24 to gtk2 +- Fixed saving of user comment +- Added a progress bar, new Comment entry for user comments.. +- FILENAME_CMDLINE and FILENAME_RELEASE are optional +- new default path to DB +- Rename to abrt + +* Tue Mar 3 2009 Jiri Moskovcak 0.0.1-12 +- initial fedora release +- changed SOURCE url +- added desktop-file-utils to BR +- changed crash-catcher to %%{name} + +* Mon Mar 2 2009 Jiri Moskovcak 0.0.1-11 +- more spec file fixes according to review +- async dbus method calls, added exception handler +- avoid deadlocks (zprikryl) +- root is god (zprikryl) +- create bt only once (zprikryl) + +* Sat Feb 28 2009 Jiri Moskovcak 0.0.1-10 +- New gui +- Added new method DeleteDebugDump to daemon +- Removed gcc warnings from applet +- Rewritten CCpp hook and removed dealock in DebugDumps lib (zprikryl) +- fixed few gcc warnings +- DBusBackend improvements + +* Fri Feb 27 2009 Jiri Moskovcak 0.0.1-9 +- fixed few gcc warnings +- added scrolled window for long reports + +* Thu Feb 26 2009 Adam Williamson 0.0.1-8 +- fixes for all issues identified in review + +* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-7 +- Fixed cancel button behaviour in reporter +- disabled core file sending +- removed some debug messages + +* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-6 +- fixed DB path +- added new signals to handler +- gui should survive the dbus timeout + +* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-5 +- fixed catching debuinfo install exceptions +- some gui fixes +- added check for GPGP public key + +* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-4 +- changed from full bt to simple bt + +* Thu Feb 26 2009 Jiri Moskovcak 0.0.1-3 +- spec file cleanups +- changed default paths to crash DB and log DB +- fixed some memory leaks + +* Tue Feb 24 2009 Jiri Moskovcak 0.0.1-2 +- spec cleanup +- added new subpackage gui + +* Wed Feb 18 2009 Zdenek Prikryl 0.0.1-1 +- initial packing